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

move_config() {
	. /lib/upgrade/platform.sh

	if platform_export_bootpart; then
		mount -t ext4 -o rw,noatime "$BOOTPART" /mnt
		mv -f /mnt/sysupgrade.tgz /
		umount /mnt
	fi
}

boot_hook_add preinit_mount_root move_config