aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/base-files/lib/upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/mvebu/base-files/lib/upgrade')
-rw-r--r--target/linux/mvebu/base-files/lib/upgrade/linksys.sh2
-rw-r--r--target/linux/mvebu/base-files/lib/upgrade/uDPU.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/mvebu/base-files/lib/upgrade/linksys.sh b/target/linux/mvebu/base-files/lib/upgrade/linksys.sh
index 3f45d6cac5..857c550c73 100644
--- a/target/linux/mvebu/base-files/lib/upgrade/linksys.sh
+++ b/target/linux/mvebu/base-files/lib/upgrade/linksys.sh
@@ -93,6 +93,6 @@ platform_do_upgrade_linksys() {
}
platform_copy_config_linksys() {
- cp -f /tmp/sysupgrade.tgz /tmp/syscfg/sysupgrade.tgz
+ cp -f "$CONF_TAR" /tmp/syscfg/
sync
}
diff --git a/target/linux/mvebu/base-files/lib/upgrade/uDPU.sh b/target/linux/mvebu/base-files/lib/upgrade/uDPU.sh
index 48c3209a99..f87ff4f9ca 100644
--- a/target/linux/mvebu/base-files/lib/upgrade/uDPU.sh
+++ b/target/linux/mvebu/base-files/lib/upgrade/uDPU.sh
@@ -149,8 +149,8 @@ platform_do_upgrade_uDPU() {
platform_copy_config_uDPU() {
# Config is saved on the /misc partition and copied on the rootfs after the reboot
- if [ -f "/tmp/sysupgrade.tgz" ]; then
- cp -f /tmp/sysupgrade.tgz /misc
+ if [ -f "$CONF_TAR" ]; then
+ cp -f "$CONF_TAR" /misc
sync
fi
}