summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/fw/rom.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/fw/rom.sh b/include/fw/rom.sh
index e3393927..b5c79997 100644
--- a/include/fw/rom.sh
+++ b/include/fw/rom.sh
@@ -105,7 +105,8 @@ cook_coreboot_smmstore()
CONFIG_USE_UEFI_VARIABLE_STORE=y" # replace option backend
for ecfgval in $ecfg; do
- printf "%s\n" "$ecfgval" >> "$srcdir/$cfgname"
+ printf "%s\n" "$ecfgval" >> "$srcdir/$cfgname" || \
+ err "can't cook config '$srcdir/$cfgname'"; :
done
}