u-boot-imx23.bd 255 B

123456789101112131415161718
  1. options {
  2. driveTag = 0x00;
  3. flags = 0x01;
  4. }
  5. sources {
  6. u_boot_spl="spl/u-boot-spl.bin";
  7. u_boot="u-boot.bin";
  8. }
  9. section (0) {
  10. load u_boot_spl > 0x0000;
  11. load ivt (entry = 0x0014) > 0x8000;
  12. call 0x8000;
  13. load u_boot > 0x40000100;
  14. call 0x40000100;
  15. }