genimage.cfg 448 B

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