GENERIC revision 1.32 1 1.32 lukem # $NetBSD: GENERIC,v 1.32 2002/09/18 02:44:01 lukem Exp $
2 1.1 nisimura #
3 1.24 gmcgarry # GENERIC machine description file
4 1.24 gmcgarry #
5 1.24 gmcgarry # This machine description file is used to generate the default NetBSD
6 1.24 gmcgarry # kernel. The generic kernel does not include all options, subsystems
7 1.24 gmcgarry # and device drivers, but should be useful for most applications.
8 1.1 nisimura #
9 1.24 gmcgarry # The machine description file can be customised for your specific
10 1.24 gmcgarry # machine to reduce the kernel size and improve its performance.
11 1.24 gmcgarry #
12 1.24 gmcgarry # For further information on compiling NetBSD kernels, see the config(8)
13 1.24 gmcgarry # man page.
14 1.24 gmcgarry #
15 1.24 gmcgarry # For further information on hardware support for this architecture, see
16 1.24 gmcgarry # the intro(4) man page. For further information about kernel options
17 1.24 gmcgarry # for this architecture, see the options(4) man page. For an explanation
18 1.24 gmcgarry # of each device driver in this file see the section 4 man page for the
19 1.24 gmcgarry # device.
20 1.24 gmcgarry
21 1.1 nisimura include "arch/luna68k/conf/std.luna68k"
22 1.3 hubertf
23 1.30 atatat options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.30 atatat
25 1.32 lukem #ident "GENERIC-$Revision: 1.32 $"
26 1.1 nisimura
27 1.1 nisimura maxusers 8
28 1.1 nisimura
29 1.22 lukem options M68030
30 1.22 lukem #options M68040
31 1.1 nisimura #options FPSP # on m68040 to emulate some missing FP instructions
32 1.1 nisimura
33 1.1 nisimura # Needs to be set per system. i.e change these as you see fit
34 1.1 nisimura
35 1.1 nisimura # Standard system options
36 1.1 nisimura options NTP # NTP phase/frequency locked loop
37 1.1 nisimura options KTRACE
38 1.1 nisimura #options SYSVMSG # System V message queues
39 1.1 nisimura #options SYSVSEM # System V semaphores
40 1.22 lukem #options SEMMNI=10 # number of semaphore identifiers
41 1.22 lukem #options SEMMNS=60 # number of semaphores in system
42 1.22 lukem #options SEMUME=10 # max number of undo entries per process
43 1.22 lukem #options SEMMNU=30 # number of undo structures in system
44 1.1 nisimura #options SYSVSHM # System V shared memory
45 1.1 nisimura #optoins SHMMAXPGS=1024 # 1024 pages is the default
46 1.1 nisimura #options LKM # loadable kernel modules
47 1.1 nisimura #options UCONSOLE # users can redirect console (unsafe)
48 1.32 lukem options USERCONF # userconf(4) support
49 1.27 jdolecek #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
50 1.1 nisimura
51 1.1 nisimura # Debugging options
52 1.1 nisimura options DDB
53 1.1 nisimura #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
54 1.22 lukem #options SYMTAB_SPACE=72000 # place DDB symbols in data segment
55 1.2 nisimura #options DEBUG # extra kernel debugging support
56 1.2 nisimura #options DIAGNOSTIC # extra kernel sanity checking
57 1.2 nisimura #options SCSIVERBOSE # Verbose SCSI errors
58 1.2 nisimura #options SCSIDEBUG
59 1.1 nisimura #makeoptions DEBUG="-g" # compile full symbol table
60 1.1 nisimura
61 1.17 wiz # Compatibility options
62 1.1 nisimura options COMPAT_43 # and 4.3BSD and ...
63 1.1 nisimura options COMPAT_12 # NetBSD 1.2 binary compatibility
64 1.1 nisimura options COMPAT_13 # NetBSD 1.3 binary compatibility
65 1.1 nisimura options COMPAT_14 # NetBSD 1.4 binary compatibility
66 1.19 abs #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
67 1.25 chs options COMPAT_AOUT_M68K # support for NetBSD a.out executables
68 1.25 chs options EXEC_AOUT # support for a.out executables
69 1.1 nisimura
70 1.1 nisimura # Filesystem options
71 1.1 nisimura file-system FFS # ufs file system
72 1.1 nisimura #file-system LFS # log-structured file system
73 1.1 nisimura file-system NFS # nfs client support
74 1.1 nisimura file-system MFS
75 1.1 nisimura #file-system CD9660 # ISO 9660 + Rock Ridge file system
76 1.1 nisimura #file-system MSDOSFS # MS-DOS FAT file system
77 1.1 nisimura file-system KERNFS # /kern
78 1.1 nisimura file-system PROCFS # /proc
79 1.1 nisimura #file-system FDESC # /dev/fd/*
80 1.1 nisimura file-system NULLFS # loopback file system
81 1.1 nisimura #file-system PORTAL # portal filesystem (still experimental)
82 1.1 nisimura #file-system UMAPFS # NULLFS + uid and gid remapping
83 1.1 nisimura #file-system UNION # union file system
84 1.1 nisimura #file-system CODA # Coda File System; also needs vcode (below)
85 1.1 nisimura
86 1.1 nisimura #options NFSSERVER # nfs server support
87 1.1 nisimura #options QUOTA # ffs quotas
88 1.1 nisimura #options FFS_EI # ffs endian independant support
89 1.22 lukem options SOFTDEP # ffs soft updates support
90 1.1 nisimura
91 1.1 nisimura # Networking options
92 1.1 nisimura options INET # IP prototol stack support
93 1.1 nisimura #options INET6 # IPV6
94 1.1 nisimura #options IPSEC # IP security
95 1.28 wiz #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
96 1.1 nisimura #options IPSEC_DEBUG # debug for IP security
97 1.22 lukem #options GATEWAY # IP packet forwarding
98 1.1 nisimura #options MROUTING # IP multicast routing
99 1.1 nisimura #options NS # XNS
100 1.1 nisimura #options NSIP # XNS tunneling over IP
101 1.1 nisimura #options ISO,TPIP # OSI
102 1.1 nisimura #options EON # OSI tunneling over IP
103 1.1 nisimura #options CCITT,LLC,HDLC # X.25
104 1.1 nisimura #options NETATALK # AppleTalk networking protocols
105 1.1 nisimura #options PPP_BSDCOMP # BSD-Compress compression support for PPP
106 1.1 nisimura #options PPP_DEFLATE # Deflate compression support for PPP
107 1.1 nisimura #options PPP_FILTER # Active filter support for PPP (requires bpf)
108 1.1 nisimura #options PFIL_HOOKS # pfil(9) packet filter hooks
109 1.1 nisimura #options IPFILTER_LOG # ipmon(8) log support
110 1.1 nisimura options NFS_BOOT_DHCP # superset of BOOTP
111 1.19 abs #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
112 1.1 nisimura
113 1.1 nisimura # WS console uses SUN or VT100 terminal emulation
114 1.1 nisimura options WSEMUL_VT100
115 1.1 nisimura
116 1.12 nisimura config netbsd root on ? type ?
117 1.1 nisimura
118 1.1 nisimura mainbus0 at root
119 1.1 nisimura
120 1.1 nisimura clock0 at mainbus0
121 1.1 nisimura
122 1.1 nisimura # uPD7201 SIO
123 1.1 nisimura sio0 at mainbus0
124 1.1 nisimura siotty0 at sio0 # ttya
125 1.1 nisimura ws0 at sio0 # port for keyboard and mouse
126 1.1 nisimura # AM7990 LANCE
127 1.1 nisimura le0 at mainbus0
128 1.1 nisimura # MB89532 SPC
129 1.1 nisimura spc0 at mainbus0
130 1.1 nisimura #spc1 at mainbus0 # 2nd SCSI on LUNA-II
131 1.1 nisimura # framebuffer
132 1.1 nisimura fb0 at mainbus0 # 16 or 256 pseudo color
133 1.1 nisimura
134 1.1 nisimura # Workstation Console attachments
135 1.1 nisimura wsdisplay* at fb?
136 1.1 nisimura wskbd* at ws? console ?
137 1.13 nisimura wsmouse* at ws?
138 1.1 nisimura
139 1.1 nisimura # SCSI bus support
140 1.1 nisimura scsibus* at spc?
141 1.1 nisimura
142 1.1 nisimura # SCSI devices
143 1.1 nisimura sd* at scsibus? target ? lun ? # SCSI disks
144 1.1 nisimura st* at scsibus? target ? lun ? # SCSI tapes
145 1.1 nisimura #cd* at scsibus? target ? lun ? # SCSI CD-ROMs
146 1.1 nisimura #ch* at scsibus? target ? lun ? # SCSI changer devices
147 1.1 nisimura #ss* at scsibus? target ? lun ? # SCSI scanners
148 1.1 nisimura #uk* at scsibus? target ? lun ? # unknown SCSI devices
149 1.1 nisimura
150 1.1 nisimura pseudo-device bpfilter 2 # Berkeley Packet Filter
151 1.1 nisimura #pseudo-device ccd 2 # concatenated and striped disks
152 1.1 nisimura #pseudo-device gre 2 # generic L3 over IP tunnel
153 1.1 nisimura #pseudo-device ipfilter 1 # ip filter
154 1.1 nisimura pseudo-device loop 1 # loopback interface; required
155 1.1 nisimura pseudo-device md 1 # memory disk device
156 1.1 nisimura #pseudo-device ppp 1 # PPP interfaces
157 1.26 martin #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
158 1.10 jdolecek pseudo-device pty # pseudo-terminals
159 1.1 nisimura #pseudo-device raid 2 # RAIDframe disk driver
160 1.1 nisimura #pseudo-device sl 1 # SLIP interfaces
161 1.1 nisimura #pseudo-device tun 2 # Network "tunnel" device
162 1.14 bouyer pseudo-device vlan # IEEE 802.1q encapsulation
163 1.23 atatat pseudo-device bridge # simple inter-network bridging
164 1.1 nisimura #pseudo-device vnd 2 # disk-like interface to files
165 1.11 itojun pseudo-device rnd # /dev/random and in-kernel generator
166 1.31 lukem pseudo-device clockctl # user control of clock subsystem
167