genimage.cfg 577 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "kernel",
  5. "rk3399-rock-pi-4b.dtb",
  6. "extlinux"
  7. }
  8. }
  9. size = 32M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition loader1 {
  15. in-partition-table = "no"
  16. image = "idbloader.img"
  17. offset = 32K
  18. }
  19. partition loader2 {
  20. in-partition-table = "no"
  21. image = "u-boot.itb"
  22. offset = 8M
  23. }
  24. partition boot {
  25. partition-type = 0xC
  26. bootable = "true"
  27. image = "boot.vfat"
  28. offset = 16M
  29. }
  30. partition rootfs {
  31. partition-type = 0x83
  32. image = "rootfs.ext"
  33. }
  34. partition cfgfs {
  35. partition-type = 0x88
  36. image = "cfgfs.img"
  37. }
  38. }