diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-22 20:08:35 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-22 20:08:35 +0100 |
commit | 488a2ab4bcb764ee9f4c50cbe31627b6e0c7d881 (patch) | |
tree | 814403e417bf4f6aa9b2a693a9403d925d98e3dd /target/foxg20/Makefile | |
parent | 9bc792f14aed0da0aa2e35cde15438fd8a817755 (diff) |
optimize kernel config for foxg20
- boot from microsd now works
- finetune adkinstall
Diffstat (limited to 'target/foxg20/Makefile')
-rw-r--r-- | target/foxg20/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/target/foxg20/Makefile b/target/foxg20/Makefile index 804236f9b..e4349d7c1 100644 --- a/target/foxg20/Makefile +++ b/target/foxg20/Makefile @@ -7,10 +7,12 @@ include $(TOPDIR)/mk/modules.mk include $(TOPDIR)/mk/kernel-build.mk include $(TOPDIR)/mk/image.mk +LOADADDR:= 0x20008000 + kernel-install: gzip -v9 < $(LINUX_DIR)/arch/arm/boot/Image > ${BUILD_DIR}/Image.gz mkimage -A arm -O linux -T kernel -C gzip \ - -a 0x20008000 -e 0x20008000 -d ${BUILD_DIR}/Image.gz \ + -a ${LOADADDR} -e ${LOADADDR} -d ${BUILD_DIR}/Image.gz \ -n foxg20 $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel ifeq ($(FS),nfsroot) @@ -26,6 +28,9 @@ imageinstall: $(BIN_DIR)/$(ROOTFSUSERTARBALL) @echo @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel' @echo "The RootFS tarball is: $(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 @echo "Boot the board via network and use adkinstall." @echo "If you just want to update, use adkupdate." @echo 'Login as user root with password linux123 via ssh or console.' |