python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / board / arm / juno / readme.txt
blobb292d9636da582617f1fa5bb2c2376041f98bdec
1 ARM Juno r1/r0
3 Intro
4 =====
6 These instructions apply to all models of the ARM Juno:
7   - Juno r0 (does not support PCIe)
8   - Juno r1 (supports PCIe)
9   - Juno r2 (Big Cluster with A72)
11 Buildroot will generate the kernel image, device tree blob, bootloader binaries
12 and a minimal root filesystem.
14 How to build it
15 ===============
17 Configure Buildroot
18 -------------------
20 Configuring Buildroot is pretty simple, just execute:
22   $ make arm_juno_defconfig
24 Build the rootfs, kernel and DTB
25 --------------------------------
27 Note: you will need to have access to the network, since Buildroot will
28 download the packages' sources.
30 You may now build your rootfs with:
32   $ make
34 (This may take a while)
36 Result of the build
37 -------------------
39 After building, you should obtain this tree:
41     output/images/
42     +-- rootfs.tar
43     +-- juno.dtb (if Juno r0 is used)
44     +-- juno-r1.dtb (if Juno r1 is used)
45     +-- juno-r2.dtb (if Juno r2 is used)
46     +-- Image
47     +-- bl1.bin
48     +-- bl2.bin
49     +-- bl2u.bin
50     +-- bl31.bin
51     +-- fip.bin
52     +-- scp-fw.bin
53     +-- u-boot.bin
55 Preparing your rootfs
56 ======================
58 Format your pen drive as a ext3 filesystem by executing:
60    $ mkfs.ext3 /dev/<your device>
62 Preparing your rootfs
63 ======================
65 Format your pen drive as a ext3 filesystem by executing:
67    $ mkfs.ext3 /dev/<your device>
69 Installing your rootfs
70 ======================
72 After mounting the pen drive please execute the following:
74    $ sudo tar -xvf output/images/rootfs.tar -C <pen drive mount path>
76 When completed make sure to unmount the device:
78    $ umount <pen drive mount path>
80 Insert the pen drive in one of the ARM Juno' USB type A connectors.
82 Configure *.dtb in the boot configuration for Juno r0
83 =====================================================
85 SITE1/HBI0262B/images.txt
86 .....
87 NOR3UPDATE: AUTO                 ;Image Update:NONE/AUTO/FORCE
88 NOR3ADDRESS: 0x00C00000          ;Image Flash Address
89 NOR3FILE: \SOFTWARE\juno.dtb     ;Image File Name
90 NOR3NAME: board.dtb              ;Specify Image name to preserve file extension
91 NOR3LOAD: 00000000               ;Image Load Address
92 NOR3ENTRY: 00000000              ;Image Entry Point
93 ......
95 Configure *.dtb in the boot configuration for Juno r1
96 =====================================================
98 SITE1/HBI0262C/images.txt
99 ......
100 NOR3UPDATE: AUTO                 ;Image Update:NONE/AUTO/FORCE
101 NOR3ADDRESS: 0x00C00000          ;Image Flash Address
102 NOR3FILE: \SOFTWARE\juno-r1.dtb  ;Image File Name
103 NOR3NAME: board.dtb              ;Specify target filename to preserve file extension
104 NOR3LOAD: 00000000               ;Image Load Address
105 NOR3ENTRY: 00000000              ;Image Entry Point
106 ......
108 Configure *.dtb in the boot configuration for Juno r2
109 =====================================================
111 SITE1/HBI0262D/images.txt
112 ......
113 NOR3UPDATE: AUTO                 ;Image Update:NONE/AUTO/FORCE
114 NOR3ADDRESS: 0x02000000          ;Image Flash Address
115 NOR3FILE: \SOFTWARE\juno-r2.dtb  ;Image File Name
116 NOR3NAME: board.dtb              ;Specify target filename to preserve file extension
117 NOR3LOAD: 00000000               ;Image Load Address
118 NOR3ENTRY: 00000000              ;Image Entry Point
119 ......
121 Installing kernel image and DTB
122 ===============================
124 1. Connect to the ARM Juno UART0 and execute USB_ON in the terminal
125 2. Connect a USB cable between your PC and ARM Juno USB type B connector
126    A mass storage device should appear in your desktop.
127 3. Open the software/ folder
128 4. Copy the 'Image' file to software/
129 5. Copy the 'juno-r1.dtb' (r1), 'juno.dtb' (r0) or juno-r2.dtb (r2) file to software/
130 6. Copy the bootloader binaries (bl1.bin and fip.bin) to software/
131 7. Press the red button in the front pannel of ARM Juno
133 At this time, the board will erase the Flash entry for each new item and
134 replace it with the lastest ones.