diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-23 22:28:04 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-23 22:28:04 +0100 |
commit | 86d7ffda38b870dc96035feb4788ae1589aab11c (patch) | |
tree | f059bcc2b8a26525e791c12e3ea4f28d0bd77822 /target/foxg20/Makefile | |
parent | 488a2ab4bcb764ee9f4c50cbe31627b6e0c7d881 (diff) |
optimize foxg20 target
- make cfgfs work, a small busybox fdisk patch needed
- make adkinstall and adkupdate work
Diffstat (limited to 'target/foxg20/Makefile')
-rw-r--r-- | target/foxg20/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/target/foxg20/Makefile b/target/foxg20/Makefile index e4349d7c1..5e5e05316 100644 --- a/target/foxg20/Makefile +++ b/target/foxg20/Makefile @@ -10,13 +10,17 @@ include $(TOPDIR)/mk/image.mk LOADADDR:= 0x20008000 kernel-install: - gzip -v9 < $(LINUX_DIR)/arch/arm/boot/Image > ${BUILD_DIR}/Image.gz + gzip -9 < $(LINUX_DIR)/arch/arm/boot/Image > ${BUILD_DIR}/Image.gz mkimage -A arm -O linux -T kernel -C gzip \ -a ${LOADADDR} -e ${LOADADDR} -d ${BUILD_DIR}/Image.gz \ - -n foxg20 $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel + -n foxg20 $(TARGET_DIR)/boot/uImage $(MAKE_TRACE) + @cp $(TARGET_DIR)/boot/uImage \ + $(BUILD_DIR)/${ADK_TARGET}-${FS}-kernel ifeq ($(FS),nfsroot) imageinstall: ${BIN_DIR}/${ROOTFSUSERTARBALL} + @cp $(BUILD_DIR)/${ADK_TARGET}-${FS}-kernel \ + $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel @echo @echo 'Type dhcp via u-boot prompt to load kernel' @echo 'After that type bootm to load the kernel' @@ -24,10 +28,10 @@ imageinstall: ${BIN_DIR}/${ROOTFSUSERTARBALL} endif ifeq ($(FS),ext2-block) -imageinstall: $(BIN_DIR)/$(ROOTFSUSERTARBALL) +imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) @echo - @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel' - @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSUSERTARBALL)" + @echo "The RootFS tarball is:" + @echo "$(BIN_DIR)/$(ROOTFSUSERTARBALL)" @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 uimage; bootm 0x22000000'" @echo |