aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.14/921-use_preinit_as_init.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2015-04-11 10:28:14 +0000
committerLuka Perkov <luka@openwrt.org>2015-04-11 10:28:14 +0000
commit4398ecd73dcf8554c0e495de082e4677440c1d5c (patch)
treee24faee648bd7fe02dcdb4a9f916f88324797735 /target/linux/generic/patches-3.14/921-use_preinit_as_init.patch
parentadb7aa14be1321e4ee57b2564edeb558d7eedcda (diff)
downloadmaster-187ad058-4398ecd73dcf8554c0e495de082e4677440c1d5c.tar.gz
master-187ad058-4398ecd73dcf8554c0e495de082e4677440c1d5c.tar.bz2
master-187ad058-4398ecd73dcf8554c0e495de082e4677440c1d5c.zip
generic: drop 3.14
Signed-off-by: Luka Perkov <luka@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45375 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.14/921-use_preinit_as_init.patch')
-rw-r--r--target/linux/generic/patches-3.14/921-use_preinit_as_init.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/target/linux/generic/patches-3.14/921-use_preinit_as_init.patch b/target/linux/generic/patches-3.14/921-use_preinit_as_init.patch
deleted file mode 100644
index df703a7587..0000000000
--- a/target/linux/generic/patches-3.14/921-use_preinit_as_init.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/init/main.c
-+++ b/init/main.c
-@@ -872,7 +872,8 @@ static int __ref kernel_init(void *unuse
- pr_err("Failed to execute %s (error %d). Attempting defaults...\n",
- execute_command, ret);
- }
-- if (!try_to_run_init_process("/sbin/init") ||
-+ if (!try_to_run_init_process("/etc/preinit") ||
-+ !try_to_run_init_process("/sbin/init") ||
- !try_to_run_init_process("/etc/init") ||
- !try_to_run_init_process("/bin/init") ||
- !try_to_run_init_process("/bin/sh"))