Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Mar 2018 16:16:12 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r331212 - in head: etc/mtree stand/defaults
Message-ID:  <201803191616.w2JGGCid083460@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Mon Mar 19 16:16:12 2018
New Revision: 331212
URL: https://svnweb.freebsd.org/changeset/base/331212

Log:
  Move /boot/overlays to /boot/dtb/overlays
  
  The former is fairly vague; these are FDT overlays to be applied to the
  running system, so /boot/dtb is a sensible location to put it without
  cluttering up /boot/dtb even further if desired.

Modified:
  head/etc/mtree/BSD.root.dist
  head/stand/defaults/loader.conf

Modified: head/etc/mtree/BSD.root.dist
==============================================================================
--- head/etc/mtree/BSD.root.dist	Mon Mar 19 15:48:31 2018	(r331211)
+++ head/etc/mtree/BSD.root.dist	Mon Mar 19 16:16:12 2018	(r331212)
@@ -11,6 +11,8 @@
         defaults
         ..
         dtb
+            overlays              tags=package=runtime
+            ..
         ..
         firmware
         ..
@@ -19,8 +21,6 @@
         kernel
         ..
         modules
-        ..
-        overlays              tags=package=runtime
         ..
         zfs
         ..

Modified: head/stand/defaults/loader.conf
==============================================================================
--- head/stand/defaults/loader.conf	Mon Mar 19 15:48:31 2018	(r331211)
+++ head/stand/defaults/loader.conf	Mon Mar 19 16:16:12 2018	(r331212)
@@ -80,7 +80,7 @@ bootenv_autolist="YES"		# Auto populate the list of ZF
 #comconsole_speed="9600"	# Set the current serial console speed
 #console="vidconsole"		# A comma separated list of console(s)
 #currdev="disk1s1a"		# Set the current device
-module_path="/boot/modules;/boot/dtb;/boot/overlays"	# Set the module search path
+module_path="/boot/modules;/boot/dtb;/boot/dtb/overlays"	# Set the module search path
 #prompt="\\${interpret}"	# Set the command prompt
 #root_disk_unit="0"		# Force the root disk unit number
 #rootdev="disk1s1a"		# Set the root filesystem



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803191616.w2JGGCid083460>