genimage.cfg 459 B

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