897cd717a5
work in progress and has never booted a real machine. Initial development and testing was done using SimOS (see http://simos.stanford.edu for details). On the SimOS simulator, this port successfully reaches single-user mode and has been tested with loads as high as one copy of /bin/ls :-). Obtained from: partly from NetBSD/alpha
85 lines
2.3 KiB
Plaintext
85 lines
2.3 KiB
Plaintext
#
|
|
# GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks
|
|
#
|
|
# For more information read the handbook part System Administration ->
|
|
# Configuring the FreeBSD Kernel -> The Configuration File.
|
|
# The handbook is available in /usr/share/doc/handbook or online as
|
|
# latest version from the FreeBSD World Wide Web server
|
|
# <URL:http://www.FreeBSD.ORG/>
|
|
#
|
|
# An exhaustive list of options and more detailed explanations of the
|
|
# device lines is present in the ./LINT configuration file. If you are
|
|
# in doubt as to the purpose or necessity of a line, check first in LINT.
|
|
#
|
|
# $Id: GENERIC,v 1.107 1998/02/16 23:57:03 msmith Exp $
|
|
|
|
machine "alpha"
|
|
cpu "EV5"
|
|
ident GENERIC
|
|
maxusers 10
|
|
|
|
options __FreeBSD__=3 #XXX hack city
|
|
|
|
options "DEC_KN8AE"
|
|
options SIMOS
|
|
#options MATH_EMULATE #Support for x87 emulation
|
|
options INET #InterNETworking
|
|
options FFS #Berkeley Fast Filesystem
|
|
options NFS #Network Filesystem
|
|
options MSDOSFS #MSDOS Filesystem
|
|
options "CD9660" #ISO 9660 Filesystem
|
|
options "CD9660_ROOT" #CD-ROM usable as root device
|
|
options FFS_ROOT #FFS usable as root device [keep this!]
|
|
options NFS_ROOT #NFS usable as root device
|
|
options PROCFS #Process filesystem
|
|
options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!]
|
|
options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
|
|
options UCONSOLE #Allow users to grab the console
|
|
options FAILSAFE #Be conservative
|
|
|
|
config kernel root on sd0
|
|
|
|
controller pci0
|
|
controller tlsb0
|
|
controller gbus0
|
|
controller kft0
|
|
controller dwlpx0
|
|
|
|
controller simos0
|
|
|
|
controller scbus0
|
|
|
|
device sd0
|
|
|
|
device od0 #See LINT for possible `od' options.
|
|
|
|
device st0
|
|
|
|
device cd0 #Only need one of these, the code dynamically grows
|
|
|
|
# Order is important here due to intrusive probes, do *not* alphabetize
|
|
# this list of network interfaces until the probes have been fixed.
|
|
# Right now it appears that the ie0 must be probed before ep0. See
|
|
# revision 1.20 of this file.
|
|
#device de0
|
|
|
|
pseudo-device loop
|
|
pseudo-device ether
|
|
pseudo-device sl 1
|
|
pseudo-device ppp 1
|
|
pseudo-device tun 1
|
|
pseudo-device pty 16
|
|
pseudo-device gzip # Exec gzipped a.out's
|
|
|
|
# KTRACE enables the system-call tracing facility ktrace(2).
|
|
# This adds 4 KB bloat to your kernel, and slightly increases
|
|
# the costs of each syscall.
|
|
options KTRACE #kernel tracing
|
|
|
|
# This provides support for System V shared memory.
|
|
#
|
|
options SYSVSHM
|
|
|
|
options DDB
|
|
|