mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39348 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
483 B
Diff
13 lines
483 B
Diff
--- a/init/main.c
|
|
+++ b/init/main.c
|
|
@@ -871,7 +871,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"))
|