Lines Matching refs:image

26 1.  bootm		boot image at the current address, equivalent to 2,3,8
29 2. bootm <addr1> /* single image at <addr1> */
30 3. bootm <addr1> /* multi-image at <addr1> */
31 4. bootm <addr1> - /* multi-image at <addr1> */
32 5. bootm <addr1> <addr2> /* single image at <addr1> */
33 6. bootm <addr1> <addr2> <addr3> /* single image at <addr1> */
34 7. bootm <addr1> - <addr3> /* single image at <addr1> */
47 Ad. 1. This is equivalent to cases 2,3,8, depending on the type of image at
48 the current image address.
51 Ad. 2. Boot kernel image located at <addr1>.
54 Ad. 3. First and second components of the image at <addr1> are assumed to be a
56 with the ramdisk from the image.
67 component of the multi-image is irrelevant (it can be a dummy, 1-byte file).
70 Ad. 5. Boot kernel image located at <addr1> with initrd loaded with ramdisk
71 from the image at <addr2>.
74 Ad. 6. <addr1> is the address of a kernel image, <addr2> is the address of a
75 ramdisk image, and <addr3> is the address of a FDT binary blob. Kernel is
76 booted with initrd loaded with ramdisk from the image at <addr2>.
79 Ad. 7. <addr1> is the address of a kernel image and <addr3> is the address of
88 Ad. 9. Similar to case 2: boot kernel stored in <subimg1> from the image at
92 Ad. 10. Boot configuration <conf> from the image at <addr1>.
96 Ad. 11. Equivalent to case 5: boot kernel stored in <subimg1> from the image
97 at <addr1> with initrd loaded with ramdisk <subimg2> from the image at
101 Ad. 12. Equivalent to case 6: boot kernel stored in <subimg1> from the image
102 at <addr1> with initrd loaded with ramdisk <subimg2> from the image at
103 <addr2>, and pass FDT blob <subimg3> from the image at <addr3>.
110 Ad. 14. Equivalent to case 7: boot kernel stored in <subimg1> from the image
111 at <addr1>, without initrd, and pass FDT blob <subimg3> from the image at
126 - new uImage sub-image specification
127 <addr>:<sub-image unit_name>
168 Note on current image address
171 When bootm is called without arguments, the image at current image address is
172 booted. The current image address is the address set most recently by a load
182 can be omitted. If <addr3> is omitted, then it is assumed that image at
184 image at <addr1> should be used. If <addr1> is omitted, it is assumed that the
185 current image address is to be used. For example, consider the following