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>
8 lines
233 B
Bash
Executable File
8 lines
233 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
gzip -fk "${BINARIES_DIR}/Image"
|
|
cp board/radxa/rock5b/rock5b.its "${BINARIES_DIR}"
|
|
(cd "${BINARIES_DIR}" && mkimage -f rock5b.its image.itb)
|
|
support/scripts/genimage.sh -c board/radxa/rock5b/genimage.cfg
|