genimage.cfg 492 B

12345678910111213141516171819202122232425262728293031323334
  1. # Image for eMMC or SDCard boot on the Microchip PolarFire SOC Icicle Board
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "mpfs_icicle.itb",
  7. }
  8. file boot.scr {
  9. image = "boot.scr"
  10. }
  11. }
  12. size = 60M
  13. }
  14. image sdcard.img {
  15. hdimage {
  16. partition-table-type = "gpt"
  17. }
  18. partition uboot {
  19. partition-type-uuid = 21686148-6449-6E6F-744E-656564454649
  20. image = "payload.bin"
  21. }
  22. partition kernel {
  23. bootable = "true"
  24. image = "boot.vfat"
  25. }
  26. partition root {
  27. image = "rootfs.ext4"
  28. }
  29. }