genimage.cfg 482 B

1234567891011121314151617181920212223242526272829303132333435
  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. "am335x-boneblack-wireless.dtb",
  14. }
  15. }
  16. size = 16M
  17. }
  18. image sdcard.img {
  19. hdimage {
  20. }
  21. partition u-boot {
  22. partition-type = 0xC
  23. bootable = "true"
  24. image = "boot.vfat"
  25. }
  26. partition rootfs {
  27. partition-type = 0x83
  28. image = "rootfs.ext4"
  29. size = 512M
  30. }
  31. }