f003675119
This patch adds support for the AVNET RZBoard V2L. The board support creates a bootable sd card image. The board is shipped with a u-boot inside its eMMC. The board support uses this u-boot and does not build and deploy a u-boot onto the sd card. Instead the sd card only contains a uEnv.txt, a kernel image and the rootfs. Signed-off-by: Kilian Zinnecker <kilian.zinnecker@mail.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
367 B
INI
30 lines
367 B
INI
# SD card image for RZBoard V2L
|
|
|
|
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"Image",
|
|
"rzboard.dtb",
|
|
"uEnv.txt"
|
|
}
|
|
}
|
|
size = 24M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
partition-table-type = "hybrid"
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = "0xC"
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext2"
|
|
}
|
|
}
|