diff options
author | Marius Strobl <marius@FreeBSD.org> | 2014-12-29 20:33:34 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2014-12-29 20:33:34 +0000 |
commit | c3d3eeb3bb6605a8683a6941a19cbfd3d0b7c6bd (patch) | |
tree | 85187efd6c8a8426fdbeaeeda092700db6e114a2 | |
parent | 3a6f20c19a046f3f6b1d87f9a0d2ee646e6339e6 (diff) |
Notes
-rw-r--r-- | sys/i386/conf/PAE | 73 | ||||
-rw-r--r-- | sys/i386/conf/XEN | 2 |
2 files changed, 8 insertions, 67 deletions
diff --git a/sys/i386/conf/PAE b/sys/i386/conf/PAE index 36ed3d56a5931..d8078cd0cf70d 100644 --- a/sys/i386/conf/PAE +++ b/sys/i386/conf/PAE @@ -10,73 +10,14 @@ ident PAE-GENERIC # To make a PAE kernel, the next option is needed options PAE # Physical Address Extensions Kernel -# The following modules don't build with PAE enabled. -makeoptions WITHOUT_MODULES="ctl dpt hptmv ida malo mwl" - -# What follows is a list of drivers that are normally in GENERIC, but either -# don't work or are untested with PAE. Be very careful before enabling any -# of these drivers. Drivers which use DMA and don't handle 64 bit physical -# address properly may cause data corruption when used in a machine with more -# than 4 gigabytes of memory. - -nodevice ahb -nodevice sym -nodevice trm - -nodevice adv -nodevice adw -nodevice aha -nodevice aic -nodevice bt - -nodevice ncv -nodevice nsp -nodevice stg - -nodevice asr +# The following drivers don't build with PAE enabled. +makeoptions WITHOUT_MODULES="ctl dpt hptmv ida" nodevice dpt -nodevice mly nodevice hptmv -nodevice hptnr -nodevice hptrr - nodevice ida -nodevice mlx -nodevice pst - -nodevice agp - -nodevice txp -nodevice vx - -nodevice pcn -nodevice sf -nodevice sis -nodevice ste -nodevice tl -nodevice tx -nodevice vr -nodevice wb -nodevice cs -nodevice ed -nodevice ex -nodevice ep -nodevice fe -nodevice ie -nodevice sn -nodevice xe - -nodevice an -nodevice ath # Atheros pci/cardbus NICs -nodevice ath_pci -nodevice ath_hal -nodevice ath_rate_sample # SampleRate tx rate control for ath -nodevice ipw -nodevice iwi -nodevice iwn -nodevice malo -nodevice mwl -nodevice ral -nodevice wi -nodevice wpi +# The following drivers don't work with PAE enabled. +makeoptions WITHOUT_MODULES+="asr ncr pst" +nodevice asr +nodevice ncr +nodevice pst diff --git a/sys/i386/conf/XEN b/sys/i386/conf/XEN index 108224cd5570b..510e7e30744ac 100644 --- a/sys/i386/conf/XEN +++ b/sys/i386/conf/XEN @@ -9,7 +9,7 @@ ident XEN makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols # The following modules don't build with PAE and XEN enabled. -makeoptions WITHOUT_MODULES="ctl dpt drm drm2 hptmv ida malo mwl" +makeoptions WITHOUT_MODULES="ctl dpt drm drm2 hptmv ida" options SCHED_ULE # ULE scheduler options PREEMPTION # Enable kernel thread preemption |