aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/x86_64/base-files/lib/preinit/79_move_config
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-03-29 04:32:01 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-03-29 04:32:01 +0000
commit795063e4bd943a6f8b10d4ed11ddce8aad604771 (patch)
treebd27c2604891a5f0871e47c5a5027278ce4b9029 /target/linux/x86_64/base-files/lib/preinit/79_move_config
parenta12f75fc15f858afc69fcf64d8bc8fc526bc7fdc (diff)
downloadupstream-795063e4bd943a6f8b10d4ed11ddce8aad604771.tar.gz
upstream-795063e4bd943a6f8b10d4ed11ddce8aad604771.tar.bz2
upstream-795063e4bd943a6f8b10d4ed11ddce8aad604771.zip
x86: make x86_64 a subtarget instead of a standalone target
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45115 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86_64/base-files/lib/preinit/79_move_config')
-rw-r--r--target/linux/x86_64/base-files/lib/preinit/79_move_config15
1 files changed, 0 insertions, 15 deletions
diff --git a/target/linux/x86_64/base-files/lib/preinit/79_move_config b/target/linux/x86_64/base-files/lib/preinit/79_move_config
deleted file mode 100644
index cdcf683a22..0000000000
--- a/target/linux/x86_64/base-files/lib/preinit/79_move_config
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2012-2014 OpenWrt.org
-
-move_config() {
- . /lib/upgrade/platform.sh
-
- if platform_export_bootpart; then
- mount -t ext4 -o rw,noatime "$BOOTPART" /mnt
- mv -f /mnt/sysupgrade.tgz /
- umount /mnt
- fi
-}
-
-boot_hook_add preinit_mount_root move_config
-