diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-02-13 17:58:26 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-02-19 14:22:38 +0100 |
commit | e9bdfe72927eb5e286ad1797d4afa81c82773f80 (patch) | |
tree | a5e5064d2406298ab5b48e658f2be5b47835cbb9 /target/avr32/Makefile | |
parent | 39492d1d2f90d66931802d76677f8d0d0091dbcf (diff) |
atmel-ngw100: fix sd card boot
Diffstat (limited to 'target/avr32/Makefile')
-rw-r--r-- | target/avr32/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/avr32/Makefile b/target/avr32/Makefile index 1f055993d..75ec3679a 100644 --- a/target/avr32/Makefile +++ b/target/avr32/Makefile @@ -11,6 +11,11 @@ KERNEL:=$(LINUX_DIR)/arch/avr32/boot/images/uImage ifeq ($(ADK_TARGET_FS),archive) targethelp: @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)" + @echo "Use following command to install it on SD card:" + @echo "sudo ./scripts/install.sh $(ADK_TARGET_SYSTEM) /dev/sdX $(FW_DIR)/$(ROOTFSTARBALL)" + @echo "U-Boot commands:" + @echo "set bootargs 'console=ttyS0 root=/dev/mmcblk0p1 ro rootwait'" + @echo "ext2load mmc 0:1 0x10300000 /boot/kernel; bootm 0x10300000" endif ifeq ($(ADK_TARGET_FS),nfsroot) targethelp: |