From 4346220e27d65aa9a7bd40f6a3f03d7c971bff50 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 8 Aug 2018 15:09:08 +0000 Subject: [PATCH] os: fix bootstate link --- buildroot-external/scripts/rauc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot-external/scripts/rauc.sh b/buildroot-external/scripts/rauc.sh index effde7a4c..6327c22c5 100755 --- a/buildroot-external/scripts/rauc.sh +++ b/buildroot-external/scripts/rauc.sh @@ -77,7 +77,7 @@ function install_rauc_certs() { function install_bootloader_config() { if [ "${BOOTLOADER}" == "uboot" ]; then - echo -e "/dev/disk/by-partlabel/hassos-bootstatei\t0x00\t${BOOT_ENV_SIZE}" > ${TARGET_DIR}/etc/fw_env.config + echo -e "/dev/disk/by-partlabel/hassos-bootstate\t0x00\t${BOOT_ENV_SIZE}" > ${TARGET_DIR}/etc/fw_env.config else cp ${BR2_EXTERNAL_HASSOS_PATH}/misc/barebox-state-efi.dtb ${TARGET_DIR}/etc/barebox-state.dtb fi