svn commit: r229800 - head/sys/conf

Adrian Chadd adrian at FreeBSD.org
Sun Jan 8 00:55:23 UTC 2012


Author: adrian
Date: Sun Jan  8 00:55:22 2012
New Revision: 229800
URL: http://svn.freebsd.org/changeset/base/229800

Log:
  Make these two files conditionally build on UFS_ACL, as it doesn't
  seem to be used elsewhere.
  
  Since UFS_ACL is enabled by default for GENERIC kernels, this shouldn't
  break anything - but please beat me to fix things if it does.
  
  This reduces the footprint of the kernel on small embedded systems
  (think <1MB flash for the compressed kernel image) just enough to
  actually fit.

Modified:
  head/sys/conf/files

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Sun Jan  8 00:42:07 2012	(r229799)
+++ head/sys/conf/files	Sun Jan  8 00:55:22 2012	(r229800)
@@ -2409,8 +2409,9 @@ kern/sched_ule.c		optional sched_ule
 kern/serdev_if.m		standard
 kern/stack_protector.c		standard \
 	compile-with "${NORMAL_C:N-fstack-protector*}"
-kern/subr_acl_nfs4.c		standard
-kern/subr_acl_posix1e.c		standard
+# XXX subr_acl_nfs4.c is also used by ZFS
+kern/subr_acl_nfs4.c		optional ufs_acl
+kern/subr_acl_posix1e.c		optional ufs_acl
 kern/subr_autoconf.c		standard
 kern/subr_blist.c		standard
 kern/subr_bus.c			standard


More information about the svn-src-head mailing list