genimage.cfg 333 B

12345678910111213141516171819202122232425262728
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "boot.bin",
  5. "u-boot.bin",
  6. "atf-uboot.ub",
  7. "system.dtb",
  8. "Image"
  9. }
  10. }
  11. size = 32M
  12. }
  13. image sdcard.img {
  14. hdimage {
  15. }
  16. partition boot {
  17. partition-type = 0xC
  18. bootable = "true"
  19. image = "boot.vfat"
  20. }
  21. partition rootfs {
  22. partition-type = 0x83
  23. image = "rootfs.ext4"
  24. }
  25. }