You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
465 B
13 lines
465 B
9 years ago
|
--- a/init/main.c
|
||
|
+++ b/init/main.c
|
||
|
@@ -964,7 +964,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"))
|