2016-05-23 15:33:49 +02:00
|
|
|
# Minimal SD card image for the Roseapple Pi
|
|
|
|
#
|
|
|
|
image boot.vfat {
|
|
|
|
vfat {
|
|
|
|
files = {
|
|
|
|
"uEnv.txt",
|
|
|
|
"uImage"
|
|
|
|
}
|
|
|
|
file kernel.dtb {
|
2020-08-28 13:30:51 +02:00
|
|
|
image = "owl-s500-roseapplepi.dtb"
|
2016-05-23 15:33:49 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-28 13:30:51 +02:00
|
|
|
size = 128M
|
2016-05-23 15:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
image sdcard.img {
|
|
|
|
hdimage {
|
|
|
|
}
|
|
|
|
|
|
|
|
partition s500-bootloader {
|
|
|
|
in-partition-table = "no"
|
|
|
|
image = "s500-bootloader.bin"
|
|
|
|
offset = 0x200200
|
|
|
|
}
|
|
|
|
|
|
|
|
partition u-boot {
|
|
|
|
in-partition-table = "no"
|
|
|
|
image = "u-boot-dtb.img"
|
|
|
|
offset = 0x300000
|
|
|
|
}
|
|
|
|
|
|
|
|
partition boot {
|
|
|
|
partition-type = 0xC
|
|
|
|
bootable = "true"
|
|
|
|
image = "boot.vfat"
|
|
|
|
}
|
|
|
|
}
|