aboutsummaryrefslogtreecommitdiff
path: root/stand
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2018-01-18 04:58:54 +0000
committerKyle Evans <kevans@FreeBSD.org>2018-01-18 04:58:54 +0000
commitdb180ae55c99fa3330e57ad1b76c9d4b30584e25 (patch)
treececfacf173b6f0d437754aeef88bd55ffb46f166 /stand
parent6780e684d49034610f82bea5d3bfb04d42e91628 (diff)
downloadsrc-db180ae55c99fa3330e57ad1b76c9d4b30584e25.tar.gz
src-db180ae55c99fa3330e57ad1b76c9d4b30584e25.zip
stand: Add /boot/overlays to allow separation of overlays from base FDT
This matches directory structure used commonly in Linux-land, and it's cleaner than mixing overlays into the existing module paths. Overlays are still mixed in by specifying fdt_overlays in loader.conf(5). Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D13922
Notes
Notes: svn path=/head/; revision=328107
Diffstat (limited to 'stand')
-rw-r--r--stand/arm/loader/loader.conf2
-rw-r--r--stand/forth/loader.conf2
-rw-r--r--stand/mips/uboot/loader.conf2
3 files changed, 3 insertions, 3 deletions
diff --git a/stand/arm/loader/loader.conf b/stand/arm/loader/loader.conf
index 4154ab7bcc9f..dd2a23a971dc 100644
--- a/stand/arm/loader/loader.conf
+++ b/stand/arm/loader/loader.conf
@@ -7,7 +7,7 @@ autoboot_delay=10
bootfile="kernel" # Kernel name (possibly absolute path)
kernel="kernel" # /boot sub-directory containing kernel and modules
loader_conf_files="/boot/loader.conf /boot/loader.conf.local"
-module_path="/boot/kernel;/boot/modules;/boot/dtb"
+module_path="/boot/kernel;/boot/modules;/boot/dtb;/boot/overlays"
nextboot_conf="/boot/nextboot.conf"
nextboot_enable="NO"
verbose_loading="NO"
diff --git a/stand/forth/loader.conf b/stand/forth/loader.conf
index 8fe533fd2deb..bc0022b7867c 100644
--- a/stand/forth/loader.conf
+++ b/stand/forth/loader.conf
@@ -97,7 +97,7 @@ bootenv_autolist="YES" # Auto populate the list of ZFS Boot Environments
#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" # Set the module search path
+module_path="/boot/modules;/boot/dtb;/boot/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
diff --git a/stand/mips/uboot/loader.conf b/stand/mips/uboot/loader.conf
index 4154ab7bcc9f..dd2a23a971dc 100644
--- a/stand/mips/uboot/loader.conf
+++ b/stand/mips/uboot/loader.conf
@@ -7,7 +7,7 @@ autoboot_delay=10
bootfile="kernel" # Kernel name (possibly absolute path)
kernel="kernel" # /boot sub-directory containing kernel and modules
loader_conf_files="/boot/loader.conf /boot/loader.conf.local"
-module_path="/boot/kernel;/boot/modules;/boot/dtb"
+module_path="/boot/kernel;/boot/modules;/boot/dtb;/boot/overlays"
nextboot_conf="/boot/nextboot.conf"
nextboot_enable="NO"
verbose_loading="NO"