2
1

genimage.cfg 803 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "boot.ini",
  5. "zImage",
  6. "exynos5422-odroidxu4.dtb"
  7. }
  8. }
  9. size = 32M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition bl1 {
  15. in-partition-table = "no"
  16. image = "bl1.bin.hardkernel"
  17. offset = 512
  18. size = 15K
  19. }
  20. partition bl2 {
  21. in-partition-table = "no"
  22. image = "bl2.bin.hardkernel.720k_uboot"
  23. offset = 15872 # 15KB + 512B
  24. size = 16K
  25. }
  26. partition u-boot {
  27. in-partition-table = "no"
  28. image = "u-boot-dtb.bin"
  29. offset = 32256 # 31KB + 512B
  30. size = 720K
  31. }
  32. partition tzsw {
  33. in-partition-table = "no"
  34. image = "tzsw.bin.hardkernel"
  35. offset = 769536 # 751KB + 512B
  36. size = 256K
  37. }
  38. partition vfat {
  39. partition-type = 0xC
  40. image = "boot.vfat"
  41. offset = 2M
  42. }
  43. partition rootfs {
  44. partition-type = 0x83
  45. image = "rootfs.ext4"
  46. }
  47. }