genimage.cfg 368 B

1234567891011121314151617181920212223242526272829
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "MLO",
  5. "u-boot.img",
  6. "zImage",
  7. "am5729-beagleboneai.dtb",
  8. "uEnv.txt"
  9. }
  10. }
  11. size = 16M
  12. }
  13. image sdcard.img {
  14. hdimage {
  15. }
  16. partition u-boot {
  17. partition-type = 0xC
  18. bootable = "true"
  19. image = "boot.vfat"
  20. }
  21. partition rootfs {
  22. partition-type = 0x83
  23. image = "rootfs.ext4"
  24. size = 512M
  25. }
  26. }