genimage-raspberrypi0w.cfg 521 B

12345678910111213141516171819202122232425262728293031
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "bcm2708-rpi-zero-w.dtb",
  5. "rpi-firmware/bootcode.bin",
  6. "rpi-firmware/cmdline.txt",
  7. "rpi-firmware/config.txt",
  8. "rpi-firmware/fixup.dat",
  9. "rpi-firmware/start.elf",
  10. "rpi-firmware/overlays",
  11. "zImage"
  12. }
  13. }
  14. size = 32M
  15. }
  16. image sdcard.img {
  17. hdimage {
  18. }
  19. partition boot {
  20. partition-type = 0xC
  21. bootable = "true"
  22. image = "boot.vfat"
  23. }
  24. partition rootfs {
  25. partition-type = 0x83
  26. image = "rootfs.ext4"
  27. }
  28. }