a480976d16
This initial support includes: Linux 5.1 Custom U-Boot Arm Trusted Firmware v2.0 Buildroot default packages Tested-by: Akash Gajjar <akash@openedev.com> Signed-off-by: Shyam Saini <shyam.saini@amarulasolutions.com> [Thomas: - Use the headers from the kernel, by using BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_1=y - Use the default ext2 rootfs size] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10 lines
358 B
Bash
Executable File
10 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
|
|
MKIMAGE=$HOST_DIR/bin/mkimage
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
$MKIMAGE -n rk3399 -T rksd -d $BINARIES_DIR/u-boot-tpl-dtb.bin $BINARIES_DIR/u-boot-tpl-dtb.img
|
|
cat $BINARIES_DIR/u-boot-tpl-dtb.img $BINARIES_DIR/u-boot-spl-dtb.bin > $BINARIES_DIR/u-boot-tpl-spl-dtb.img
|
|
|
|
install -m 0644 -D $BOARD_DIR/extlinux.conf $TARGET_DIR/boot/extlinux/extlinux.conf
|