35 lines
456 B
INI
35 lines
456 B
INI
# SD card image for Radxa Rock 5b
|
|
|
|
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"image.itb",
|
|
"boot.scr"
|
|
}
|
|
}
|
|
size = 16M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
partition-table-type = "hybrid"
|
|
}
|
|
|
|
partition uboot {
|
|
in-partition-table = "false"
|
|
image = "u-boot-rockchip.bin"
|
|
offset = 32K
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = "0xC"
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext2"
|
|
}
|
|
}
|