genimage.cfg 300 B

123456789101112131415161718192021222324252627
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "kernel",
  5. "stm32f746-disco.dtb",
  6. "extlinux"
  7. }
  8. }
  9. size = 16M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition boot {
  15. partition-type = 0xC
  16. image = "boot.vfat"
  17. }
  18. partition rootfs {
  19. partition-type = 0x83
  20. image = "rootfs.ext"
  21. size = 32M
  22. }
  23. }