genimage.cfg 502 B

1234567891011121314151617181920212223242526272829
  1. # Minimal SD card image for the MX6 Cubox/Hummingboard
  2. #
  3. # U-Boot SPL and u-boot.img are flashed in the first 1MB raw partition.
  4. # A single root filesystem partition is used (Ext4 in this case).
  5. #
  6. image sdcard.img {
  7. hdimage {
  8. }
  9. partition spl {
  10. in-partition-table = "no"
  11. image = "SPL"
  12. offset = 1K
  13. }
  14. partition u-boot {
  15. in-partition-table = "no"
  16. image = "u-boot.img"
  17. offset = 69K
  18. }
  19. partition rootfs {
  20. partition-type = 0x83
  21. image = "rootfs.ext4"
  22. offset = 1M
  23. size = 512M
  24. }
  25. }