summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan.rossi@xilinx.com>2014-05-21 15:08:52 +1000
committerNathan Rossi <nathan.rossi@xilinx.com>2014-05-21 15:08:52 +1000
commit07a23482e5526c7037738a6665dcaadbe08ac064 (patch)
treed48d98861675fccba76d382cdea564d7d6ec4133
parent94b49db670a2a76a129ae9af787ae34ffefba008 (diff)
downloadmeta-xilinx-07a23482e5526c7037738a6665dcaadbe08ac064.tar.gz
BOOT.tftp: Update
* Updated use of "tftp" command for zynq, now use "tftpboot" (2014.01 change) * Swap kernel and rootfs addresses so that relatively large rootfs images will be loaded without overlapping existing contents * Swap to use cpio.gz.u-boot, this format does not limit rootfs size and allows the loading of large rootfs images despite pre-configured kernel limitations Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r--docs/BOOT.tftp14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/BOOT.tftp b/docs/BOOT.tftp
index 3c6b98cf..17d7e3a4 100644
--- a/docs/BOOT.tftp
+++ b/docs/BOOT.tftp
@@ -21,15 +21,15 @@ And then boot Linux using the 'bootm' command. (Note the load addresses will
21be dependant on machine used) 21be dependant on machine used)
22 22
23For MicroBlaze (kc705-trd-microblazeel): 23For MicroBlaze (kc705-trd-microblazeel):
24 U-Boot> tftp 0x86000000 linux.bin.ub 24 U-Boot> tftp 0x85000000 linux.bin.ub
25 U-Boot> tftp 0x85000000 core-image-minimal-<machine name>.ext2.gz.u-boot 25 U-Boot> tftp 0x86000000 core-image-minimal-<machine name>.cpio.gz.u-boot
26 U-Boot> tftp 0x84000000 linux.bin.ub-<machine name>.dtb 26 U-Boot> tftp 0x84000000 linux.bin.ub-<machine name>.dtb
27 U-Boot> bootm 0x86000000 0x85000000 0x84000000 27 U-Boot> bootm 0x85000000 0x86000000 0x84000000
28 28
29For Zynq: 29For Zynq:
30 U-Boot> tftp 0x3000000 uImage 30 U-Boot> tftpboot 0x2000000 uImage
31 U-Boot> tftp 0x2000000 core-image-minimal-<machine name>.ext2.gz.u-boot 31 U-Boot> tftpboot 0x3000000 core-image-minimal-<machine name>.cpio.gz.u-boot
32 U-Boot> tftp 0x2A00000 uImage-<machine name>.dtb 32 U-Boot> tftpboot 0x2A00000 uImage-<machine name>.dtb
33 U-Boot> bootm 0x3000000 0x2000000 0x2A00000 33 U-Boot> bootm 0x2000000 0x3000000 0x2A00000
34 34
35U-Boot will prepare the Kernel for boot and then it will being to initialize. 35U-Boot will prepare the Kernel for boot and then it will being to initialize.