genimage.cfg 499 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "Image",
  5. "meson-gxbb-odroidc2.dtb",
  6. "boot.scr"
  7. }
  8. }
  9. size = 64M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition bl1 {
  15. in-partition-table = "no"
  16. image = "bl1.bin.hardkernel"
  17. offset = 0
  18. }
  19. partition u-boot {
  20. in-partition-table = "no"
  21. image = "uboot-odc2.img"
  22. offset = 49664
  23. }
  24. partition boot {
  25. partition-type = 0xC
  26. bootable = "true"
  27. image = "boot.vfat"
  28. }
  29. partition rootfs {
  30. partition-type = 0x83
  31. image = "rootfs.ext4"
  32. }
  33. }