Lines Matching refs:bootm
6 With the introduction of the new uImage format, bootm command (and other
9 bootm has to operate. This note attempts to first summarize bootm usage
13 bootm usage scenarios
16 Below is a summary of bootm usage scenarios, focused on booting a PowerPC
18 of supported bootm usages.
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> */
37 8. bootm <addr1>
38 9. bootm [<addr1>]:<subimg1>
39 10. bootm [<addr1>]#<conf>[#<extra-conf[#...]]
40 11. bootm [<addr1>]:<subimg1> [<addr2>]:<subimg2>
41 12. bootm [<addr1>]:<subimg1> [<addr2>]:<subimg2> [<addr3>]:<subimg3>
42 13. bootm [<addr1>]:<subimg1> [<addr2>]:<subimg2> <addr3>
43 14. bootm [<addr1>]:<subimg1> - [<addr3>]:<subimg3>
44 15. bootm [<addr1>]:<subimg1> - <addr3>
123 New uImage support introduces two new forms for bootm arguments, with the
142 bootm 200000:kernel@1
145 bootm 200000#cfg@1
149 bootm 200000#cfg@1#cfg@2
153 bootm 200000:kernel@1 800000:ramdisk@2
157 bootm 200000:kernel@1 800000:ramdisk@1 800000:fdt@1
161 bootm 200000:kernel@2 200000:ramdisk@2 600000
165 bootm 200000:kernel@2 - 200000:fdt@1
171 When bootm is called without arguments, the image at current image address is
177 bootm
179 bootm 200000
189 bootm :kernel@1
191 bootm 200000:kernel@1
194 bootm 400000:kernel@1 :ramdisk@1
196 bootm 400000:kernel@1 400000:ramdisk@1
199 bootm :kernel@1 400000:ramdisk@1 :fdt@1
201 bootm 200000:kernel@1 400000:ramdisk@1 400000:fdt@1