summaryrefslogtreecommitdiff
path: root/target/linux/x86/base-files/lib/preinit/79_move_config
blob: 5ac81cb90d1c15782a9c4f271720cfa66d6d03a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# Copyright (C) 2012-2015 OpenWrt.org

move_config() {
	local partdev

	. /lib/upgrade/platform.sh

	if platform_export_bootdevice && platform_export_partdevice partdev 1; then
		mount -t ext4 -o rw,noatime "/dev/$partdev" /mnt
		mv -f /mnt/sysupgrade.tgz /
		umount /mnt
	fi
}

boot_hook_add preinit_mount_root move_config