From: Daniel Golle <daniel@makrotopia.org>
Date: Sun, 7 Mar 2021 18:15:50 +0000 (+0000)
Subject: mediatek: remove no longer needed sysupgrade hack
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=7e7218d1331d0b557b0e9a513aef5de584b6b1d2;p=openwrt%2Fstaging%2Fblogic.git

mediatek: remove no longer needed sysupgrade hack

Keeping configuration is now handled in fstools like for other types
of flash as well.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
---

diff --git a/target/linux/mediatek/mt7622/base-files/lib/preinit/79_move_config b/target/linux/mediatek/mt7622/base-files/lib/preinit/79_move_config
deleted file mode 100644
index 8a30b844977b..000000000000
--- a/target/linux/mediatek/mt7622/base-files/lib/preinit/79_move_config
+++ /dev/null
@@ -1,18 +0,0 @@
-. /lib/upgrade/common.sh
-
-RECOVERY_PART=/dev/mmcblk0p6
-
-move_config() {
-	if [ -b $RECOVERY_PART ]; then
-		insmod nls_cp437
-		insmod nls_iso8859-1
-		insmod fat
-		insmod vfat
-		mkdir -p /recovery
-		mount -o rw,noatime $RECOVERY_PART /recovery
-		[ -f "/recovery/$BACKUP_FILE" ] && mv -f "/recovery/$BACKUP_FILE" /
-		umount /recovery
-	fi
-}
-
-boot_hook_add preinit_mount_root move_config