genimage.cfg 367 B

1234567891011121314151617181920212223242526272829
  1. # SD card image for RZBoard V2L
  2. image boot.vfat {
  3. vfat {
  4. files = {
  5. "Image",
  6. "rzboard.dtb",
  7. "uEnv.txt"
  8. }
  9. }
  10. size = 24M
  11. }
  12. image sdcard.img {
  13. hdimage {
  14. partition-table-type = "hybrid"
  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.ext2"
  24. }
  25. }