* Use GRUB bootloader for all UEFI platforms * Introduce and use file_env command * Compress squashfs for aarch64 as well
31 lines
801 B
Bash
Executable File
31 lines
801 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
MACHINE_ID=$(cat /etc/machine-id)
|
|
|
|
###
|
|
# u-boot
|
|
if [ -e /usr/sbin/fw_setenv ]; then
|
|
|
|
# machine-id
|
|
if [ "$(fw_printenv -n MACHINE_ID)" != "${MACHINE_ID}" ]; then
|
|
echo "[INFO] set machine-id to ${MACHINE_ID}"
|
|
fw_setenv MACHINE_ID "${MACHINE_ID}"
|
|
else
|
|
echo "[INFO] machine-id is okay"
|
|
fi
|
|
|
|
###
|
|
# GRUB
|
|
elif [ -e /usr/bin/grub-editenv ]; then
|
|
GRUBENV_FILE="$(grep '^grubenv=' < /etc/rauc/system.conf | cut -d= -f2)"
|
|
# machine-id
|
|
if [ "$(/usr/bin/grub-editenv "$GRUBENV_FILE" list | grep '^MACHINE_ID=' | cut -d= -f2)" != "${MACHINE_ID}" ]; then
|
|
echo "[INFO] set machine-id to ${MACHINE_ID}"
|
|
/usr/bin/grub-editenv "$GRUBENV_FILE" set "MACHINE_ID=${MACHINE_ID}"
|
|
else
|
|
echo "[INFO] machine-id is okay"
|
|
fi
|
|
|
|
fi
|