2016-09-26 10:02:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
|
|
|
|
BOOTPART=/dev/mmcblk0p1
|
|
|
|
|
|
|
|
move_config() {
|
|
|
|
if [ -b $BOOTPART ]; then
|
|
|
|
insmod nls_cp437
|
|
|
|
insmod nls_iso8859-1
|
|
|
|
insmod fat
|
|
|
|
insmod vfat
|
|
|
|
mkdir -p /boot
|
2018-01-24 23:04:56 +00:00
|
|
|
mount -o rw,noatime $BOOTPART /boot
|
2016-09-26 10:02:40 +00:00
|
|
|
[ -f /boot/sysupgrade.tgz ] && mv -f /boot/sysupgrade.tgz /
|
2018-01-24 23:04:56 +00:00
|
|
|
umount /boot
|
2016-09-26 10:02:40 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
boot_hook_add preinit_mount_root move_config
|