diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2019-09-05 08:40:29 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2019-09-05 08:43:24 +0200 |
commit | 5797fe84a3b508483f7d82e177157c1bf2f342d9 (patch) | |
tree | 521d770cc7a79b7892f70107c4285245fe939c65 /target/linux/ixp4xx/base-files/lib | |
parent | 1184e1f2b68573f72b25699dd413fa755bdc4aef (diff) | |
download | openwrt-5797fe84a3b508483f7d82e177157c1bf2f342d9.tar.gz openwrt-5797fe84a3b508483f7d82e177157c1bf2f342d9.tar.bz2 openwrt-5797fe84a3b508483f7d82e177157c1bf2f342d9.zip |
treewide: replace remaining (not working now) $SAVE_CONFIG uses
This var has been replaced by the $UPGRADE_OPT_UPGRADE_OPT_SAVE_CONFIG
Fixes: b534ba961100 ("base-files: pass "save_config" option to the "sysupgrade" method")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'target/linux/ixp4xx/base-files/lib')
-rw-r--r-- | target/linux/ixp4xx/base-files/lib/upgrade/platform.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ixp4xx/base-files/lib/upgrade/platform.sh b/target/linux/ixp4xx/base-files/lib/upgrade/platform.sh index 3ba591fb3c..6072591e11 100644 --- a/target/linux/ixp4xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ixp4xx/base-files/lib/upgrade/platform.sh @@ -68,7 +68,7 @@ platform_do_upgrade_combined() { [ ${erase_size:-0} -gt 0 ]; then local append="" - [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR" + [ -f "$CONF_TAR" -a "$UPGRADE_OPT_SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR" # write the kernel dd if="$1" bs=$CI_BLKSZ skip=1 count=$kern_blocks 2>/dev/null | \ |