b8738b645ed74ecfe7593c5337a83e251b9570a4
[openwrt/staging/jow.git] / target / linux / brcm2708 / base-files / lib / preinit / 79_move_config
1 #!/bin/sh
2 # Copyright (C) 2015 OpenWrt.org
3
4 . /lib/upgrade/common.sh
5
6 BOOTPART=/dev/mmcblk0p1
7
8 move_config() {
9 if [ -b $BOOTPART ]; then
10 insmod nls_cp437
11 insmod nls_iso8859-1
12 insmod fat
13 insmod vfat
14 mkdir -p /boot
15 mount -t vfat -o rw,noatime $BOOTPART /boot
16 [ -f "/boot/$BACKUP_FILE" ] && mv -f "/boot/$BACKUP_FILE" /
17 fi
18 }
19
20 boot_hook_add preinit_mount_root move_config