79_move_config 301 B

12345678910111213141516
  1. # Copyright (C) 2014 OpenWrt.org
  2. move_config() {
  3. . /lib/functions.sh
  4. . /lib/upgrade/common.sh
  5. case "$(board_name)" in
  6. erlite)
  7. mount -t vfat /dev/sda1 /mnt
  8. [ -f "/mnt/$BACKUP_FILE" ] && mv -f "/mnt/$BACKUP_FILE" /
  9. umount /mnt
  10. ;;
  11. esac
  12. }
  13. boot_hook_add preinit_mount_root move_config