blob: bd5166a0f31342f073e9007869e4d732787cc568 [file] [log] [blame]
Gustavo Zacarias8dd797a2015-12-31 10:28:08 -03001image boot.vfat {
2 vfat {
3 files = {
4 "bcm2708-rpi-b.dtb",
5 "bcm2708-rpi-b-plus.dtb",
Gustavo Zacarias1dbc3c32016-01-07 17:07:06 -03006 "bcm2708-rpi-cm.dtb",
Gustavo Zacarias8dd797a2015-12-31 10:28:08 -03007 "rpi-firmware/bootcode.bin",
8 "rpi-firmware/cmdline.txt",
9 "rpi-firmware/config.txt",
10 "rpi-firmware/fixup.dat",
11 "rpi-firmware/start.elf",
Baruch Siach5a09c192017-01-26 07:36:05 +020012 "zImage"
Gustavo Zacarias8dd797a2015-12-31 10:28:08 -030013 }
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}