svn commit: r195706 - in stable/7/sys: . amd64/conf contrib/pf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf sun4v/conf

Ed Schouten ed at FreeBSD.org
Wed Jul 15 08:32:21 UTC 2009


Author: ed
Date: Wed Jul 15 08:32:19 2009
New Revision: 195706
URL: http://svn.freebsd.org/changeset/base/195706

Log:
  MFC r195295:
  
    Enable POSIX semaphores on all non-embedded architectures by default.
  
    More applications (including Firefox) seem to depend on this nowadays,
    so not having this enabled by default is a bad idea.
  
    Proposed by:  miwi
    Patch by:     Florian Smeets <flo kasimir com>
    Approved by:  re (kib)

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/amd64/conf/GENERIC
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/i386/conf/GENERIC
  stable/7/sys/ia64/conf/GENERIC
  stable/7/sys/pc98/conf/GENERIC
  stable/7/sys/powerpc/conf/GENERIC
  stable/7/sys/sparc64/conf/GENERIC
  stable/7/sys/sun4v/conf/GENERIC

Modified: stable/7/sys/amd64/conf/GENERIC
==============================================================================
--- stable/7/sys/amd64/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/amd64/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -58,6 +58,7 @@ options 	STACK			# stack(9) support
 options 	SYSVSHM			# SYSV-style shared memory
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
 options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
 options 	ADAPTIVE_GIANT		# Giant mutex is adaptive.

Modified: stable/7/sys/i386/conf/GENERIC
==============================================================================
--- stable/7/sys/i386/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/i386/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -59,6 +59,7 @@ options 	STACK			# stack(9) support
 options 	SYSVSHM			# SYSV-style shared memory
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
 options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
 options 	ADAPTIVE_GIANT		# Giant mutex is adaptive.

Modified: stable/7/sys/ia64/conf/GENERIC
==============================================================================
--- stable/7/sys/ia64/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/ia64/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -55,6 +55,7 @@ options 	STACK		# stack(9) support
 options 	SYSVMSG		# SYSV-style message queues
 options 	SYSVSEM		# SYSV-style semaphores
 options 	SYSVSHM		# SYSV-style shared memory
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	UFS_ACL		# Support for access control lists
 options 	UFS_DIRHASH	# Hash-based directory lookup scheme
 options 	_KPOSIX_PRIORITY_SCHEDULING	# Posix P1003_1B RT extensions

Modified: stable/7/sys/pc98/conf/GENERIC
==============================================================================
--- stable/7/sys/pc98/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/pc98/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -62,6 +62,7 @@ options 	STACK			# stack(9) support
 options 	SYSVSHM			# SYSV-style shared memory
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
 options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
 options 	AUDIT			# Security event auditing

Modified: stable/7/sys/powerpc/conf/GENERIC
==============================================================================
--- stable/7/sys/powerpc/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/powerpc/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -60,6 +60,7 @@ options 	STACK			#stack(9) support
 options 	SYSVSHM			#SYSV-style shared memory
 options 	SYSVMSG			#SYSV-style message queues
 options 	SYSVSEM			#SYSV-style semaphores
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
 options 	AUDIT			# Security event auditing
 

Modified: stable/7/sys/sparc64/conf/GENERIC
==============================================================================
--- stable/7/sys/sparc64/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/sparc64/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -61,6 +61,7 @@ options 	STACK			# stack(9) support
 options 	SYSVSHM			# SYSV-style shared memory
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
 options 	ADAPTIVE_GIANT		# Giant mutex is adaptive.
 options 	AUDIT			# Security event auditing

Modified: stable/7/sys/sun4v/conf/GENERIC
==============================================================================
--- stable/7/sys/sun4v/conf/GENERIC	Wed Jul 15 00:56:15 2009	(r195705)
+++ stable/7/sys/sun4v/conf/GENERIC	Wed Jul 15 08:32:19 2009	(r195706)
@@ -60,6 +60,7 @@ options 	STACK			# stack(9) support
 options 	SYSVSHM			# SYSV-style shared memory
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores
+options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
 options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
 options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
 					# output.  Adds ~128k to driver.


More information about the svn-src-all mailing list