mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44511 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
465 B
Diff
13 lines
465 B
Diff
--- a/init/main.c
|
|
+++ b/init/main.c
|
|
@@ -956,7 +956,8 @@ static int __ref kernel_init(void *unuse
|
|
panic("Requested init %s failed (error %d).",
|
|
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"))
|