svn commit: r328600 - in stable/11/etc: . mtree

Kyle Evans kevans at FreeBSD.org
Tue Jan 30 19:21:00 UTC 2018


Author: kevans
Date: Tue Jan 30 19:20:59 2018
New Revision: 328600
URL: https://svnweb.freebsd.org/changeset/base/328600

Log:
  MFC r328287: Add /boot/overlays to runtime pkg, fix distrib-dirs METALOG
  
  /boot/overlays was recently added without belonging to a package. It's only
  used by bootloaders at the moment, so add it to the 'runtime' package to get
  added with ubldr and friends.
  
  Fix distrib-dirs METALOG generation while we're here. History elsewhere
  seems to indicate that bapt@ fixed this to pull in all attributes from
  mtrees while generating the METALOG. This fix got clobbered somewhere later,
  so restore it.

Modified:
  stable/11/etc/Makefile
  stable/11/etc/mtree/BSD.root.dist
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/etc/Makefile
==============================================================================
--- stable/11/etc/Makefile	Tue Jan 30 19:16:38 2018	(r328599)
+++ stable/11/etc/Makefile	Tue Jan 30 19:20:59 2018	(r328600)
@@ -388,10 +388,10 @@ distrib-dirs: ${MTREES:N/*} distrib-cleanup .PHONY
 		d=${DISTBASE}$$d; \
 		shift; \
 		test -d ${DESTDIR}/$$d || mkdir -p ${DESTDIR}/$$d; \
-		${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K uname,gname | " \
+		${ECHO} "${MTREE_CMD:N-W} -C -f $$m -K all | " \
 		    "sed s#^\.#.$$d# | ${METALOG.add}" ; \
 		${MTREE_FILTER} $$m | \
-		${MTREE_CMD:N-W} -C -K uname,gname | sed s#^\.#.$$d# | \
+		${MTREE_CMD:N-W} -C -K all | sed s#^\.#.$$d# | \
 		    ${METALOG.add} ; \
 	done; true
 .endif

Modified: stable/11/etc/mtree/BSD.root.dist
==============================================================================
--- stable/11/etc/mtree/BSD.root.dist	Tue Jan 30 19:16:38 2018	(r328599)
+++ stable/11/etc/mtree/BSD.root.dist	Tue Jan 30 19:20:59 2018	(r328600)
@@ -18,7 +18,7 @@
         ..
         modules
         ..
-        overlays
+        overlays              tags=package=runtime
         ..
         zfs
         ..


More information about the svn-src-all mailing list