genimage.cfg.template_no_boot_part_spl 652 B

123456789101112131415161718192021222324252627282930
  1. # Minimal SD card image for the Freescale boards Template for SPL Boot
  2. #
  3. # We mimic the .sdcard Freescale's image format:
  4. # * the SD card must have 1 kB free space at the beginning,
  5. # * SPL is at the offset expected by ROM,
  6. # * U-Boot is at the offset expected by SPL,
  7. # * The first partition is expected to be an ext2 and have a /boot directory.
  8. #
  9. image sdcard.img {
  10. hdimage {
  11. }
  12. partition spl {
  13. in-partition-table = "no"
  14. image = "SPL"
  15. offset = 1024
  16. }
  17. partition u-boot {
  18. in-partition-table = "no"
  19. image = "%UBOOTBIN%"
  20. offset = 69K
  21. }
  22. partition rootfs {
  23. partition-type = 0x83
  24. image = "rootfs.ext2"
  25. }
  26. }