genimage.cfg 640 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 = "actduino_bubble_gum_sdboot_linux.dtb"
  11. }
  12. }
  13. size = 10M
  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. partition rootfs {
  34. partition-type = 0x83
  35. image = "rootfs.ext4"
  36. size = 512M
  37. }
  38. }