This fortune brought to you by:
$FreeBSD: src/games/fortune/datfiles/freebsd-tips,v 1.14.2.11 2003/03/15 08:48:29 dougb Exp $
-$DragonFly: src/games/fortune/datfiles/dragonfly-tips,v 1.2 2006/07/02 13:04:35 swildner Exp $
+$DragonFly: src/games/fortune/datfiles/dragonfly-tips,v 1.3 2007/11/19 18:49:06 swildner Exp $
%
Having trouble using fetch through a firewall? Try setting the environment
variable FTP_PASSIVE_MODE to yes, and see fetch(3) for more details.
details.
%
If other operating systems have damaged your Master Boot Record, you can
-reinstall it either with /stand/sysinstall or with boot0cfg(8). See
-"man boot0cfg" for details.
+reinstall it with boot0cfg(8). See "man boot0cfg" for details.
%
Need to see the calendar for this month? Simply type "cal". To see the
whole year, type "cal -y".
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD: src/sys/boot/common/loader.8,v 1.57 2003/06/29 20:57:55 brueffer Exp $
-.\" $DragonFly: src/sys/boot/common/loader.8,v 1.15 2007/05/17 08:19:02 swildner Exp $
+.\" $DragonFly: src/sys/boot/common/loader.8,v 1.16 2007/11/19 18:49:06 swildner Exp $
.\"
.\" Note: The date here should be updated whenever a non-trivial
.\" change is made to the manual page.
process.
The first matching binary is used.
The default list is
-.Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall .
+.Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak .
.It Va interpret
Has the value
.Dq Li ok
# All arguments must be in double quotes.
#
# $FreeBSD: src/sys/boot/forth/loader.conf,v 1.72 2003/07/01 01:03:32 brueffer Exp $
-# $DragonFly: src/sys/boot/forth/loader-bootp.conf,v 1.16 2007/11/03 17:43:39 swildner Exp $
+# $DragonFly: src/sys/boot/forth/loader-bootp.conf,v 1.17 2007/11/19 18:49:06 swildner Exp $
##############################################################
### Basic configuration options ############################
#boot_single="" # Start system in single-user mode
#boot_userconfig="" # Run kernel's interactive device configuration program
#boot_verbose="" # Causes extra debugging information to be printed
-#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall"
+#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak"
# Sets the list of init candidates
#dumpdev="ad0s1b" # Set device for crash dumps
# All arguments must be in double quotes.
#
# $FreeBSD: src/sys/boot/forth/loader.conf,v 1.72 2003/07/01 01:03:32 brueffer Exp $
-# $DragonFly: src/sys/boot/forth/loader.conf,v 1.23 2007/11/03 17:43:39 swildner Exp $
+# $DragonFly: src/sys/boot/forth/loader.conf,v 1.24 2007/11/19 18:49:06 swildner Exp $
##############################################################
### Basic configuration options ############################
#boot_single="" # Start system in single-user mode
#boot_userconfig="" # Run kernel's interactive device configuration program
#boot_verbose="" # Causes extra debugging information to be printed
-#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall"
+#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak"
# Sets the list of init candidates
#dumpdev="ad0s1b" # Set device for crash dumps
# as much of the source tree as it can.
#
# $FreeBSD: src/sys/i386/conf/LINT,v 1.749.2.144 2003/06/04 17:56:59 sam Exp $
-# $DragonFly: src/sys/config/LINT,v 1.140 2007/11/10 19:02:04 swildner Exp $
+# $DragonFly: src/sys/config/LINT,v 1.141 2007/11/19 18:49:06 swildner Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
# Embedded system options:
#
# An embedded system might want to run something other than init.
-options INIT_PATH="/sbin/init:/stand/sysinstall"
+options INIT_PATH="/sbin/init:/sbin/oinit"
# Debug options
options BUS_DEBUG # enable newbus debugging
*
* @(#)init_main.c 8.9 (Berkeley) 1/21/94
* $FreeBSD: src/sys/kern/init_main.c,v 1.134.2.8 2003/06/06 20:21:32 tegge Exp $
- * $DragonFly: src/sys/kern/init_main.c,v 1.82 2007/08/15 03:15:06 dillon Exp $
+ * $DragonFly: src/sys/kern/init_main.c,v 1.83 2007/11/19 18:49:06 swildner Exp $
*/
#include "opt_init_path.h"
#ifdef INIT_PATH
__XSTRING(INIT_PATH);
#else
- "/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall";
+ "/sbin/init:/sbin/oinit:/sbin/init.bak";
#endif
SYSCTL_STRING(_kern, OID_AUTO, init_path, CTLFLAG_RD, init_path, 0, "");
* SUCH DAMAGE.
*
* $FreeBSD: src/sys/kern/kern_linker.c,v 1.41.2.3 2001/11/21 17:50:35 luigi Exp $
- * $DragonFly: src/sys/kern/kern_linker.c,v 1.38 2007/06/07 22:58:11 corecode Exp $
+ * $DragonFly: src/sys/kern/kern_linker.c,v 1.39 2007/11/19 18:49:06 swildner Exp $
*/
#include "opt_ddb.h"
* Format not recognized or otherwise unloadable.
* When loading a module that is statically built into
* the kernel EEXIST percolates back up as the return
- * value. Preserve this so that apps like sysinstall
- * can recognize this special case and not post bogus
- * dialog messages.
+ * value. Preserve this so that apps can recognize this
+ * special case.
*/
if (error != EEXIST)
error = ENOEXEC;