genimage.cfg 429 B

12345678910111213141516171819202122232425262728293031
  1. # Minimal microSD card image for Grinn's chiliBoard
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "MLO",
  7. "u-boot.img",
  8. "am335x-chiliboard.dtb",
  9. "zImage"
  10. }
  11. }
  12. size = 16M
  13. }
  14. image sdcard.img {
  15. hdimage {
  16. }
  17. partition u-boot {
  18. partition-type = 0xC
  19. bootable = "true"
  20. image = "boot.vfat"
  21. offset = 1M
  22. }
  23. partition rootfs {
  24. partition-type = 0x83
  25. image = "rootfs.ext4"
  26. }
  27. }