aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/tegra/base-files/lib/preinit/79_move_config
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/tegra/base-files/lib/preinit/79_move_config')
-rw-r--r--target/linux/tegra/base-files/lib/preinit/79_move_config22
1 files changed, 22 insertions, 0 deletions
diff --git a/target/linux/tegra/base-files/lib/preinit/79_move_config b/target/linux/tegra/base-files/lib/preinit/79_move_config
new file mode 100644
index 0000000000..2a451a5efd
--- /dev/null
+++ b/target/linux/tegra/base-files/lib/preinit/79_move_config
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+move_config() {
+ local partdev
+
+ . /lib/upgrade/common.sh
+
+ if export_bootdevice && export_partdevice partdev 1; then
+ mkdir -p /boot
+ if mount -o ro,noatime "/dev/$partdev" /boot; then
+ if [ -f /boot/sysupgrade.tgz ]; then
+ mount /boot -o remount,rw,noatime
+ mv -f /boot/sysupgrade.tgz /
+ fi
+ umount /boot
+ rm -fR /boot
+ fi
+ fi
+}
+
+boot_hook_add preinit_mount_root move_config
+