mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Add a new defconfig for the imx93-evk board that uses upstream components, such as: - Linux Kernel: Upstream version 6.12.16 - U-boot: Upstream version 2025.01 - ATF: Upstream version 2.12 Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
8 lines
313 B
Bash
Executable File
8 lines
313 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.in" > "$TARGET_DIR/boot/extlinux/extlinux.conf"
|
|
sed "s/%PARTUUID%/$PARTUUID/g" "$BOARD_DIR/genimage.cfg.in" > "$BINARIES_DIR/genimage.cfg"
|