mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
24 lines
454 B
Plaintext
24 lines
454 B
Plaintext
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
. /lib/upgrade/common.sh
|
|
|
|
move_config() {
|
|
local partdev
|
|
|
|
export_bootdevice && export_partdevice partdev 1 || {
|
|
partdev=mmcblk0p1
|
|
}
|
|
|
|
if [ -b "/dev/$partdev" ]; then
|
|
insmod nls_cp437
|
|
insmod nls_iso8859-1
|
|
insmod fat
|
|
insmod vfat
|
|
mkdir -p /boot
|
|
mount -t vfat -o rw,noatime /dev/$partdev /boot
|
|
[ -f "/boot/$BACKUP_FILE" ] && mv -f "/boot/$BACKUP_FILE" /
|
|
fi
|
|
}
|
|
|
|
boot_hook_add preinit_mount_root move_config
|