genimage.cfg 543 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Minimal SD card image for the Roseapple Pi
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "uEnv.txt",
  7. "uImage"
  8. }
  9. file kernel.dtb {
  10. image = "owl-s500-roseapplepi.dtb"
  11. }
  12. }
  13. size = 128M
  14. }
  15. image sdcard.img {
  16. hdimage {
  17. }
  18. partition s500-bootloader {
  19. in-partition-table = "no"
  20. image = "s500-bootloader.bin"
  21. offset = 0x200200
  22. }
  23. partition u-boot {
  24. in-partition-table = "no"
  25. image = "u-boot-dtb.img"
  26. offset = 0x300000
  27. }
  28. partition boot {
  29. partition-type = 0xC
  30. bootable = "true"
  31. image = "boot.vfat"
  32. }
  33. }