2021-06-29 12:06:31 +02:00
|
|
|
#!/bin/sh
|
2022-01-17 09:06:16 +01:00
|
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
PARTUUID="$($HOST_DIR/bin/uuidgen)"
|
2021-06-29 12:06:31 +02:00
|
|
|
|
2022-01-17 09:06:16 +01:00
|
|
|
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"
|