blob: e0e6b2191e0ef21c2e1280caf07ef890081f8533 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#
# LKM - verification kernel for LKMs. This is not intended to be run
# on any real hardware, only to make it possible to test-link LKMs.
#
# $Id: LKM,v 1.1 1998/03/12 20:00:21 eivind Exp $
#
##
# Things the kernel don't seem to be able to do without
##
machine "i386"
cpu "I386_CPU"
ident LKM
maxusers 2
config kernel root on wd0
# Need either FFS or NFS
options FFS
# The kernel fail to compile without ISA - it is complaining about the
# missing NPX...
controller isa0
# npx is mandated by config(8)
device npx0 at isa? port "IO_NPX" irq 13
##
# Requirements for various LKMs
##
#
# Options required for the ATAPI LKM
#
controller wdc0 at isa? port "IO_WD1" bio irq 14
options ATAPI
#
# Options required for if_ppp LKM
#
options INET
options PPP_DEFLATE #PPP zlib/deflate/gzip support
# Cascaded requirement from "INET"
pseudo-device loop #Network loopback device
#
# Options required for linux LKM
#
options "COMPAT_43"
#
# Options required for pcic LKM
#
controller card0
# Cascading requirement from card0 - any device that have a DATA_SET of
# pccarddrv_set
device sio0 at isa? port "IO_COM1" tty irq 4
#
# For the screensavers
#
device sc0 at isa? port "IO_KBD" tty irq 1
#
# For umapfs
#
options NULLFS
|