a7a19b1c19
Now that upstream supports this board add buildroot support for it, too. This supports: - latest upstream linux kernel. Since the support for this board and its SoC is still in active development, we want to follow the upstream kernel releases for now. - building an image which can be installed to eMMC, SD card or USB thumb drive. - upstream u-boot patches are pending, therefore no support for building a bootloader for now. Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Heiko Thiery <heiko.thiery@gmail.com> Tested-by: Heiko Thiery <heiko.thiery@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
8 lines
303 B
Bash
Executable File
8 lines
303 B
Bash
Executable File
#!/bin/sh
|
|
BOARD_DIR="$(dirname $0)"
|
|
PARTUUID="$($HOST_DIR/bin/uuidgen)"
|
|
|
|
install -d "$TARGET_DIR/boot/extlinux/"
|
|
sed "s/%PARTUUID%/$PARTUUID/g" "$BOARD_DIR/extlinux.conf" > "$TARGET_DIR/boot/extlinux/extlinux.conf"
|
|
sed "s/%PARTUUID%/$PARTUUID/g" "$BOARD_DIR/genimage.cfg" > "$BINARIES_DIR/genimage.cfg"
|