293196b2ba
This patch adds the defconfig file needed to build u-boot, kernel and rootfs for the Rock 5B. In addition it adds a kernel config fragment file, which activates the needed ethernet driver support. It also adds a readme and post image scripts, needed to generate an sdcard.img file, which can be flashed on an SD card to boot the Radxa Rock 5B. Signed-off-by: Kilian Zinnecker <kilian.zinnecker@mail.de> [yann.morin.1998@free.fr: - drop custom version - fix shellcheck in post-image script ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
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"
|
|
}
|
|
}
|