aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files.old/etc/preinit
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-06-21 16:53:26 +0000
committerJohn Crispin <john@openwrt.org>2013-06-21 16:53:26 +0000
commitaa2fc1980009028e1437cc80e002f33cee9bb871 (patch)
tree41aabab6af4d25cd31cd10591c3c1c00a690bd0a /package/base-files/files.old/etc/preinit
parent740d7c103f0c17bd1ee96186184e4585cf587ec9 (diff)
downloadupstream-aa2fc1980009028e1437cc80e002f33cee9bb871.tar.gz
upstream-aa2fc1980009028e1437cc80e002f33cee9bb871.tar.bz2
upstream-aa2fc1980009028e1437cc80e002f33cee9bb871.zip
base-files: procd init is now the default, remove files.old
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36996
Diffstat (limited to 'package/base-files/files.old/etc/preinit')
-rwxr-xr-xpackage/base-files/files.old/etc/preinit43
1 files changed, 0 insertions, 43 deletions
diff --git a/package/base-files/files.old/etc/preinit b/package/base-files/files.old/etc/preinit
deleted file mode 100755
index b237c2e06e..0000000000
--- a/package/base-files/files.old/etc/preinit
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2006 OpenWrt.org
-# Copyright (C) 2010 Vertical Communications
-
-export PATH=/bin:/sbin:/usr/bin:/usr/sbin
-
-pi_ifname=
-pi_ip=192.168.1.1
-pi_broadcast=192.168.1.255
-pi_netmask=255.255.255.0
-
-fs_failsafe_ifname=
-fs_failsafe_ip=192.168.1.1
-fs_failsafe_broadcast=192.168.1.255
-fs_failsafe_netmask=255.255.255.0
-
-fs_failsafe_wait_timeout=2
-
-pi_suppress_stderr="y"
-pi_init_suppress_stderr="y"
-pi_init_path="/bin:/sbin:/usr/bin:/usr/sbin"
-pi_init_cmd="/sbin/init"
-
-. /lib/functions.sh
-
-boot_hook_init preinit_essential
-boot_hook_init preinit_main
-boot_hook_init failsafe
-boot_hook_init initramfs
-boot_hook_init preinit_mount_root
-
-for pi_source_file in /lib/preinit/*; do
- . $pi_source_file
-done
-
-boot_run_hook preinit_essential
-
-pi_mount_skip_next=false
-pi_jffs2_mount_success=false
-pi_failsafe_net_message=false
-
-boot_run_hook preinit_main
-