// STMP378x ROM command script to load and run U-Boot
power_prep="./power_prep/power_prep";
sdram_prep="./boot_prep/boot_prep";
//----------------------------------------------------------
// Power Supply initialization
//----------------------------------------------------------
load ivt (entry = power_prep:_start) > 0x8000;
//----------------------------------------------------------
//----------------------------------------------------------
load ivt (entry = sdram_prep:_start) > 0x8000;
//----------------------------------------------------------
// Load and call u_boot - ELF ARM image
//----------------------------------------------------------
load ivt (entry = barebox:start) > 0x8000;