diff options
Diffstat (limited to 'target/foxg20/Makefile')
-rw-r--r-- | target/foxg20/Makefile | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/target/foxg20/Makefile b/target/foxg20/Makefile deleted file mode 100644 index de8724da7..000000000 --- a/target/foxg20/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# This file is part of the OpenADK project. OpenADK is copyrighted -# material, please see the LICENCE file in the top-level directory. - -include $(TOPDIR)/rules.mk -include $(TOPDIR)/mk/kernel.mk -include $(TOPDIR)/mk/modules.mk -include $(TOPDIR)/mk/kernel-build.mk -include $(TOPDIR)/mk/image.mk - -$(TOOLS_BUILD_DIR): - @mkdir -p $(TOOLS_BUILD_DIR) - -tools-compile: $(TOOLS_BUILD_DIR) - $(MAKE) -C ../tools/uboot-mkimage - -KERNEL:=$(BUILD_DIR)/${ADK_TARGET}-${FS}-kernel -LOADADDR:= 0x20008000 - -kernel-install: tools-compile - @gzip -9 < $(LINUX_DIR)/arch/arm/boot/Image > ${BUILD_DIR}/Image.gz - PATH='${TARGET_PATH}' mkimage -A arm -O linux -T kernel -C gzip \ - -a ${LOADADDR} -e ${LOADADDR} -d ${BUILD_DIR}/Image.gz \ - -n foxg20 $(TARGET_DIR)/boot/vmlinuz-adk $(MAKE_TRACE) - @cp $(TARGET_DIR)/boot/vmlinuz-adk \ - $(BUILD_DIR)/${ADK_TARGET}-${FS}-kernel - -ifeq ($(FS),nfsroot) -imageinstall: kernel-install ${BIN_DIR}/${ROOTFSUSERTARBALL} - @cp $(BUILD_DIR)/${ADK_TARGET}-${FS}-kernel \ - $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel - @echo 'Type dhcp via u-boot prompt to load kernel' - @echo 'After that type bootm to load the kernel' -endif -ifeq ($(FS),ext2-block) -imageinstall: kernel-install $(BIN_DIR)/$(ROOTFSTARBALL) - @echo "The RootFS tarball is:" - @echo "$(BIN_DIR)/$(ROOTFSTARBALL)" - @echo 'Before booting from MicroSD card you need to set following u-boot environment variables:' - @echo "setenv bootcmd 'mmc init; sleep 1; fatload mmc 0 0x22000000 vmlinuz-adk; bootm 0x22000000'" - @echo - @echo "Boot the board via network and use adkinstall." - @echo "If you just want to update, use adkupdate." -endif |