genimage.cfg 800 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "Image",
  5. "rk3399-nanopc-t4.dtb",
  6. "extlinux"
  7. }
  8. }
  9. size = 64M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. gpt = true
  14. }
  15. partition loader1 {
  16. image = "idbloader.img"
  17. offset = 32K
  18. }
  19. partition loader2 {
  20. image = "u-boot.itb"
  21. offset = 8M
  22. }
  23. partition boot {
  24. partition-type = 0xC
  25. bootable = "true"
  26. image = "boot.vfat"
  27. offset = 16M
  28. }
  29. partition rootfs {
  30. partition-type = 0x83
  31. image = "rootfs.ext4"
  32. }
  33. }