79_move_config 273 B

123456789101112131415
  1. #!/bin/sh
  2. # Copyright (C) 2012-2014 OpenWrt.org
  3. move_config() {
  4. . /lib/upgrade/platform.sh
  5. if platform_export_bootpart; then
  6. mount -t ext4 -o rw,noatime "$BOOTPART" /mnt
  7. mv -f /mnt/sysupgrade.tgz /
  8. umount /mnt
  9. fi
  10. }
  11. boot_hook_add preinit_mount_root move_config