Lines Matching +full:bat +full:- +full:present
8 --------
17 behind the scenes, but needs to be present in the $PATH nevertheless. It is
18 important that the dtc used has support for binary includes -- refer to
31 needed by U-Boot to handle the uImage properly. The uImage file is then
35 - mkimage
36 - dtc (with support for binary includes)
37 - image source file (*.its)
38 - image data file(s)
44 + ---------------> image file --------------------> bootm
48 ---------
53 U-Boot proper binary to be automatically used up by it.
54 Aside from U-Boot proper and one device tree blob the SPL can load multiple,
60 If a platform specific image source file (.its) is shipped with the U-Boot
62 In this case it will be automatically used by U-Boot's Makefile to generate
69 Example 1 -- old-style (non-FDT) kernel booting
70 -----------------------------------------------
73 development host is to be booted old-style (non-FDT) by U-Boot on an embedded
75 contains a gzip-compressed PPC Linux kernel (the only data file in this case).
83 $ mkimage -f kernel.its kernel.itb
84 DTC: dts->dtb on file "kernel.its"
86 $ mkimage -l kernel.itb
102 Default Configuration: 'config-1'
103 Configuration 0 (config-1)
109 inspected and booted (note that first three U-Boot commands below are shown
110 for completeness -- they are part of the standard booting procedure and not
132 Created: 2008-03-11 16:26:15 UTC
147 Default Configuration: 'config-1'
148 Configuration 0 (config-1)
154 Using 'config-1' configuration
171 Memory BAT mapping: BAT2=256Mb, BAT3=0Mb, residual: 0Mb
177 Kernel command line: root=/dev/nfs rw nfsroot=192.168.1.1:/opt/eldk-4.1/ppc_6xx ip=192.168.160.5:19…
181 Example 2 -- new-style (FDT) kernel booting
182 -------------------------------------------
185 new-style, i.e., with a FDT blob. In this case there are two prerequisite data
188 (note again, that both prerequisite data files are assumed to be present in
189 the current working directory -- image source file kernel_fdt.its can be
193 $ mkimage -f kernel_fdt.its kernel_fdt.itb
194 DTC: dts->dtb on file "kernel_fdt.its"
196 $ mkimage -l kernel_fdt.itb
212 Image 1 (fdt-1)
222 Default Configuration: 'conf-1'
223 Configuration 0 (conf-1)
226 FDT: fdt-1
247 Created: 2008-03-11 15:29:22 UTC
262 Image 1 (fdt-1)
273 Default Configuration: 'conf-1'
274 Configuration 0 (conf-1)
277 FDT: fdt-1
280 Using 'conf-1' configuration
298 Using 'conf-1' configuration
299 Trying 'fdt-1' FDT blob subimage
314 [ 0.000000] Linux version 2.6.24-rc6-gaebecdfc (m8@hekate) (gcc version 4.0.0 (DENX ELDK 4.1 4.0…
317 Example 3 -- advanced booting
318 -----------------------------