2017-01-30 19:36:16 +01:00
|
|
|
# Minimal microSD card image for Grinn's chiliBoard
|
|
|
|
#
|
|
|
|
|
|
|
|
image boot.vfat {
|
2021-11-07 03:07:49 +01:00
|
|
|
vfat {
|
|
|
|
files = {
|
|
|
|
"MLO",
|
|
|
|
"u-boot.img",
|
|
|
|
"am335x-chiliboard.dtb",
|
|
|
|
"zImage"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size = 16M
|
2017-01-30 19:36:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
image sdcard.img {
|
2021-11-07 03:07:49 +01:00
|
|
|
hdimage {
|
|
|
|
}
|
2017-01-30 19:36:16 +01:00
|
|
|
|
2021-11-07 03:07:49 +01:00
|
|
|
partition u-boot {
|
|
|
|
partition-type = 0xC
|
|
|
|
bootable = "true"
|
|
|
|
image = "boot.vfat"
|
|
|
|
offset = 1M
|
|
|
|
}
|
2017-01-30 19:36:16 +01:00
|
|
|
|
2021-11-07 03:07:49 +01:00
|
|
|
partition rootfs {
|
|
|
|
partition-type = 0x83
|
|
|
|
image = "rootfs.ext4"
|
|
|
|
}
|
2017-01-30 19:36:16 +01:00
|
|
|
}
|