summaryrefslogtreecommitdiff
path: root/target/foxg20/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'target/foxg20/Makefile')
-rw-r--r--target/foxg20/Makefile21
1 files changed, 15 insertions, 6 deletions
diff --git a/target/foxg20/Makefile b/target/foxg20/Makefile
index 804236f9b..5e5e05316 100644
--- a/target/foxg20/Makefile
+++ b/target/foxg20/Makefile
@@ -7,14 +7,20 @@ 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
+ gzip -9 < $(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 \
- -n foxg20 $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
+ -a ${LOADADDR} -e ${LOADADDR} -d ${BUILD_DIR}/Image.gz \
+ -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'
@@ -22,10 +28,13 @@ imageinstall: ${BIN_DIR}/${ROOTFSUSERTARBALL}
endif
ifeq ($(FS),ext2-block)
-imageinstall: $(BIN_DIR)/$(ROOTFSUSERTARBALL)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @echo
+ @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
- @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
- @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSUSERTARBALL)"
@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.'