genimage.cfg 649 B

1234567891011121314151617181920212223242526272829303132
  1. # Minimal SD card image for the Wandboard
  2. #
  3. # The SD card must have at least 1 MB free at the beginning.
  4. # U-Boot and its environment are dumped as is.
  5. # A single root filesystem partition is required (Ext4 in this case).
  6. #
  7. # For details about the layout, see:
  8. # http://wiki.wandboard.org/index.php/Boot-process
  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 = "u-boot.img"
  20. offset = 70656
  21. }
  22. partition rootfs {
  23. partition-type = 0x83
  24. image = "rootfs.ext4"
  25. offset = 1M
  26. size = 512M
  27. }
  28. }