diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2009-05-14 10:20:53 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2009-05-14 10:20:53 +0000 |
commit | a9c958c2de59e0747b5dcf82f5fd5b1aaf956c3b (patch) | |
tree | da0c6a06eb4d50def39e6a0fb3bdd3ac813b74fe /target/linux/generic-2.6/patches-2.6.23 | |
parent | b0d4d23bc644dde146070ce692872884dc28a799 (diff) | |
download | upstream-a9c958c2de59e0747b5dcf82f5fd5b1aaf956c3b.tar.gz upstream-a9c958c2de59e0747b5dcf82f5fd5b1aaf956c3b.tar.bz2 upstream-a9c958c2de59e0747b5dcf82f5fd5b1aaf956c3b.zip |
make kernels use /etc/preinit by default
SVN-Revision: 15840
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.23')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.23/999-use_preinit_as_init.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.23/999-use_preinit_as_init.patch b/target/linux/generic-2.6/patches-2.6.23/999-use_preinit_as_init.patch new file mode 100644 index 0000000000..afb8adeb44 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.23/999-use_preinit_as_init.patch @@ -0,0 +1,14 @@ +--- a/init/main.c ++++ b/init/main.c +@@ -802,10 +802,7 @@ static int noinline init_post(void) + printk(KERN_WARNING "Failed to execute %s. Attempting " + "defaults...\n", execute_command); + } +- run_init_process("/sbin/init"); +- run_init_process("/etc/init"); +- run_init_process("/bin/init"); +- run_init_process("/bin/sh"); ++ run_init_process("/etc/preinit"); + + panic("No init found. Try passing init= option to kernel."); + } |