2014-12-05 08:58:25 +00:00
|
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
|
|
|
|
|
|
move_config() {
|
2017-07-09 11:00:36 +00:00
|
|
|
. /lib/functions.sh
|
2019-09-04 14:57:39 +00:00
|
|
|
. /lib/upgrade/common.sh
|
2017-07-09 11:00:36 +00:00
|
|
|
|
|
|
|
case "$(board_name)" in
|
2014-12-05 08:58:25 +00:00
|
|
|
erlite)
|
|
|
|
mount -t vfat /dev/sda1 /mnt
|
2019-09-04 14:57:39 +00:00
|
|
|
[ -f "/mnt/$BACKUP_FILE" ] && mv -f "/mnt/$BACKUP_FILE" /
|
2014-12-05 08:58:25 +00:00
|
|
|
umount /mnt
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
boot_hook_add preinit_mount_root move_config
|