summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorSipke Vriend <sipke.vriend@xilinx.com>2013-08-20 08:16:48 +1000
committerSipke Vriend <sipke.vriend@xilinx.com>2013-08-20 08:16:48 +1000
commitb8b83bb1e60741e496b6daaa188a4b6252f06ecb (patch)
treeb1ea3b6fa7f405b3a2fc94204ff939bdae54c9b6 /docs
parentba5bfbd1bc3cfa2811121f3356985e6aa8a20d43 (diff)
downloadmeta-xilinx-b8b83bb1e60741e496b6daaa188a4b6252f06ecb.tar.gz
docs: Correct and add some documentation
README: correct example machine name and add images docs:BOOT.sdcard: Provide information on using second SD card partition for large file sizes. Signed-off-by: Sipke Vriend <sipke.vriend@xilinx.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/BOOT.sdcard36
1 files changed, 30 insertions, 6 deletions
diff --git a/docs/BOOT.sdcard b/docs/BOOT.sdcard
index 5afaff47..ebaf9709 100644
--- a/docs/BOOT.sdcard
+++ b/docs/BOOT.sdcard
@@ -4,14 +4,38 @@ SD Card Boot (Zynq Only)
4 4
5Note: This boot flow requires access to Xilinx tools (for BOOT.BIN generation). 5Note: This boot flow requires access to Xilinx tools (for BOOT.BIN generation).
6 6
7Copy the following to the SD card (ensure to rename the files where appropriate): 7Creating boot file
8------------------
9Using the Xilinx tools, package 'zynq_fsbl_0.elf' and 'u-boot.elf' into a
10'BOOT.BIN' (See http://www.wiki.xilinx.com/Prepare+Boot+Image for details).
11
12Boot using a ramdisk
13--------------------
14Use an SD card with partition one in FAT16 format.
15Copy the following to the SD card partition one (ensure to rename the files
16where appropriate):
17 Boot file: BOOT.BIN
8 Kernel: uImage 18 Kernel: uImage
9 RootFS: uramdisk.image.gz (core-image-minimal-<machine name>.ext2.gz.u-boot) 19 RootFS: uramdisk.image.gz (core-image-minimal-<machine name>.ext2.gz.u-boot)
10 DTB: devicetree.dtb (uImage-<machine name>.dtb) 20 DTB: devicetree.dtb (uImage-<machine name>-ram.dtb)
11
12Using the Xilinx tools, package 'zynq_fsbl_0.elf' and 'u-boot.elf' into a
13'BOOT.BIN' (See http://www.wiki.xilinx.com/Prepare+Boot+Image for details). Once
14created copy 'BOOT.BIN' onto the SD Card.
15 21
16Insert SD Card, connect UART to Terminal program and boot board (Ensure the 22Insert SD Card, connect UART to Terminal program and boot board (Ensure the
17board is configured for SD Boot). 23board is configured for SD Boot).
24
25Boot using SD card partition
26----------------------------
27Use an SD card with partition one in FAT16 format and partition two in EXT2 format.
28Copy the following to the SD card partition one (ensure to rename the files where
29appropriate):
30 Boot file: BOOT.BIN
31 Kernel: uImage
32 DTB: devicetree.dtb (uImage-<machine name>-mmcblk0p2.dtb)
33Extract the following to the SD card partion two
34 RootFS: core-image-minimal-<machine name>.tar.gz
35
36Insert SD Card, connect UART to Terminal program and boot board.
37The loading of 'ramdisk' will fail as it is not present. Perform a manual
38boot by typing
39bootm 0x3000000 - 0x2A00000
40Refer to u-boot documention to see how to modify and save these settings,
41so the following boot will correctly locate the rootfs in partition two.