genimage.cfg 773 B

12345678910111213141516171819202122232425262728293031323334353637
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "zImage",
  5. "imx51-ts4800.dtb"
  6. }
  7. }
  8. size = 8M
  9. }
  10. image sdcard.img {
  11. hdimage {
  12. }
  13. partition mbrboot {
  14. in-partition-table = "no"
  15. image = "mbrboot.bin"
  16. offset = 0
  17. }
  18. partition uboot {
  19. partition-type = 0xda
  20. image = "u-boot.bin"
  21. size = 256k
  22. }
  23. partition kernel {
  24. partition-type = 0xC
  25. image = "boot.vfat"
  26. }
  27. partition rootfs {
  28. partition-type = 0x83
  29. image = "rootfs.ext4"
  30. size = 256M
  31. }
  32. }