summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/boot/forth/loader.conf2
-rw-r--r--sys/kern/init_main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/forth/loader.conf b/sys/boot/forth/loader.conf
index c8abe58..2a93fc8 100644
--- a/sys/boot/forth/loader.conf
+++ b/sys/boot/forth/loader.conf
@@ -81,7 +81,7 @@ module_path="/boot/modules" # Set the module search path
#boot_serial="" # -h: Use serial console
#boot_single="" # -s: Start system in single-user mode
#boot_verbose="" # -v: Causes extra debugging information to be printed
-#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init:/stand/sysinstall"
+#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init"
# Sets the list of init candidates
#init_shell="/bin/sh" # The shell binary used by init(8).
#init_script="" # Initial script to run by init(8) before chrooting.
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 2c094f8..61bf595 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -641,7 +641,7 @@ static char init_path[MAXPATHLEN] =
#ifdef INIT_PATH
__XSTRING(INIT_PATH);
#else
- "/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init:/stand/sysinstall";
+ "/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init";
#endif
SYSCTL_STRING(_kern, OID_AUTO, init_path, CTLFLAG_RD, init_path, 0,
"Path used to search the init process");
OpenPOWER on IntegriCloud