1 // STMP378x ROM command script to load and run U-Boot
4 power_prep="./power_prep/power_prep";
5 sdram_prep="./boot_prep/boot_prep";
11 //----------------------------------------------------------
12 // Power Supply initialization
13 //----------------------------------------------------------
16 load ivt (entry = power_prep:_start) > 0x8000;
19 //----------------------------------------------------------
20 // SDRAM initialization
21 //----------------------------------------------------------
24 load ivt (entry = sdram_prep:_start) > 0x8000;
26 //----------------------------------------------------------
27 // Load and call u_boot - ELF ARM image
28 //----------------------------------------------------------
31 load ivt (entry = barebox:start) > 0x8000;