xref: /OK3568_Linux_fs/buildroot/board/raspberrypi/genimage-raspberrypi0w.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image 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
15	size = 32M
16}
17
18image sdcard.img {
19	hdimage {
20	}
21
22	partition boot {
23		partition-type = 0xC
24		bootable = "true"
25		image = "boot.vfat"
26	}
27
28	partition rootfs {
29		partition-type = 0x83
30		image = "rootfs.ext4"
31	}
32}
33