genimage.cfg 532 B

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