svn commit: r331212 - in head: etc/mtree stand/defaults
Kyle Evans
kevans at FreeBSD.org
Mon Mar 19 16:16:13 UTC 2018
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
More information about the svn-src-all
mailing list