svn commit: r276714 - head/sys/i386/conf

Marius Strobl marius at FreeBSD.org
Mon Jan 5 19:15:36 UTC 2015


Author: marius
Date: Mon Jan  5 19:15:35 2015
New Revision: 276714
URL: https://svnweb.freebsd.org/changeset/base/276714

Log:
  Exclude drivers which build but don't actually work with PAE enabled,
  missed in r276377

Modified:
  head/sys/i386/conf/XEN

Modified: head/sys/i386/conf/XEN
==============================================================================
--- head/sys/i386/conf/XEN	Mon Jan  5 18:15:16 2015	(r276713)
+++ head/sys/i386/conf/XEN	Mon Jan  5 19:15:35 2015	(r276714)
@@ -8,9 +8,12 @@ ident		XEN
 
 makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
 
-# The following modules don't build with PAE and XEN enabled.
+# The following drivers don't build with PAE or XEN enabled.
 makeoptions	WITHOUT_MODULES="ctl dpt drm drm2 hptmv ida"
 
+# The following drivers don't work with PAE enabled.
+makeoptions	WITHOUT_MODULES+="ncr pst"
+
 options 	SCHED_ULE		# ULE scheduler
 options 	PREEMPTION		# Enable kernel thread preemption
 


More information about the svn-src-all mailing list