treewide: when copying a backup file always specify dest name

$CONF_TAR shouldn't be assumed to always point to the sysupgrade.tgz.
This change makes code more generic and allows refactoring $CONF_TAR.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
Rafał Miłecki
2019-09-04 16:57:40 +02:00
parent bf39047872
commit 62dbe361a1
13 changed files with 13 additions and 13 deletions

View File

@@ -39,7 +39,7 @@ platform_copy_config() {
if export_partdevice partdev 1; then
mount -t ext4 -o rw,noatime "/dev/$partdev" /mnt
cp -af "$CONF_TAR" /mnt/
cp -af "$CONF_TAR" "/mnt/$BACKUP_FILE"
umount /mnt
fi
}