u-boot-imx28.bd 254 B

1234567891011121314
  1. sources {
  2. u_boot_spl="spl/u-boot-spl.bin";
  3. u_boot="u-boot.bin";
  4. }
  5. section (0) {
  6. load u_boot_spl > 0x0000;
  7. load ivt (entry = 0x0014) > 0x8000;
  8. hab call 0x8000;
  9. load u_boot > 0x40000100;
  10. load ivt (entry = 0x40000100) > 0x8000;
  11. hab call 0x8000;
  12. }