Add new Skeleton.

This commit is contained in:
2016-11-16 22:04:31 +01:00
parent 05de7d6c04
commit 317c040ea8
46 changed files with 16694 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
image boot.vfat {
vfat {
files = {
"bcm2708-rpi-b-plus.dtb",
"bcm2708-rpi-b.dtb",
"bcm2708-rpi-cm.dtb",
"boot.scr",
"rpi-firmware/bootcode.bin",
"config.txt",
"dev.scr",
"rpi-firmware/fixup.dat",
"pi_QuartetIII.dtb",
"rootfs.cpio.uboot",
"rpi-firmware/start.elf",
"u-boot.bin",
"uboot.env",
"update.scr",
"zImage"
}
}
size = 30M
}
image data.vfat {
vfat {
files = {
"rpi-firmware/config.txt"
}
}
size = 10M
}
image sdcard.img {
hdimage {
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
partition data {
partition-type = 0xC
image = "data.vfat"
}
}