summaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/base-files/lib/preinit/81_linksys_syscfg
blob: fdd0d1e6692d6e12197ae1e9575c33cb165631e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Copyright (C) 2014 OpenWrt.org
#

preinit_mount_syscfg() {

	. /lib/functions.sh
	. /lib/mvebu.sh

	case $(mvebu_board_name) in
	armada-xp-mamba)
		needs_recovery=0
		ubiattach -m 8 || needs_recovery=1
		if [ $needs_recovery -eq 1 ]
		then
			echo "ubifs syscfg partition is damaged, reformatting"
			ubidetach -m 8
			ubiformat -y -O 2048 -q /dev/mtd8
			ubiattach -m 8
			ubimkvol /dev/ubi1 -n 0 -N syscfg -t dynamic --maxavsize
		fi
		mkdir /tmp/syscfg
		mount -t ubifs ubi1:syscfg /tmp/syscfg
		[ -f /tmp/syscfg/sysupgrade.tgz ] && {
		echo "- config restore -"
		cd /
		mv /tmp/syscfg/sysupgrade.tgz /tmp
		tar xzf /tmp/sysupgrade.tgz
		rm -f /tmp/sysupgrade.tgz
		sync
		}
		;;
	esac
}

boot_hook_add preinit_main preinit_mount_syscfg