blob: d8078cd0cf70d697464685e1347a0eaa9e0381c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# PAE -- Generic kernel configuration file for FreeBSD/i386 PAE
#
# $FreeBSD$
include GENERIC
ident PAE-GENERIC
# To make a PAE kernel, the next option is needed
options PAE # Physical Address Extensions Kernel
# The following drivers don't build with PAE enabled.
makeoptions WITHOUT_MODULES="ctl dpt hptmv ida"
nodevice dpt
nodevice hptmv
nodevice ida
# The following drivers don't work with PAE enabled.
makeoptions WITHOUT_MODULES+="asr ncr pst"
nodevice asr
nodevice ncr
nodevice pst
|