diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-20 15:08:29 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 47519b4428c6faecd6e51b2809095f53bd3a0b81 (patch) | |
| tree | b41a99d0fe008cfb497eac4d05b7fd343ffce32c /resources/genimage-raspberrypi0.cfg | |
| parent | c81898d6a760e2057f0933c9da6160702a4d0f61 (diff) | |
Infrastructure more or less set up!
It remains to tweak ct1986.c and add a .login file to autorun stuff!
Diffstat (limited to 'resources/genimage-raspberrypi0.cfg')
| -rw-r--r-- | resources/genimage-raspberrypi0.cfg | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/resources/genimage-raspberrypi0.cfg b/resources/genimage-raspberrypi0.cfg new file mode 100644 index 0000000..f45deb2 --- /dev/null +++ b/resources/genimage-raspberrypi0.cfg @@ -0,0 +1,31 @@ +image boot.vfat { + vfat { + file "overlays/hd44780-lcd.dtbo" { image = "rpi-firmware/overlays/hd44780-lcd.dtbo" } + files = { + "bcm2708-rpi-zero.dtb", + "rpi-firmware/bootcode.bin", + "rpi-firmware/cmdline.txt", + "rpi-firmware/config.txt", + "rpi-firmware/fixup.dat", + "rpi-firmware/start.elf", + "zImage" + } + } + size = 32M +} + +image sdcard.img { + hdimage { + } + + partition boot { + partition-type = 0xC + bootable = "true" + image = "boot.vfat" + } + + partition rootfs { + partition-type = 0x83 + image = "rootfs.ext4" + } +} |
