genimage_linux41.cfg 432 B

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