aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/arm/loader/loader.conf
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2017-11-13 20:39:43 +0000
committerWarner Losh <imp@FreeBSD.org>2017-11-13 20:39:43 +0000
commitd6be6d496cdc2a1d3e5af8826c63110ef90b1d3f (patch)
tree044437ba319082d433ac85990494b140704bc466 /sys/boot/arm/loader/loader.conf
parent7202739f7b928bd1c6ec5c999783a671cbf5f374 (diff)
downloadsrc-d6be6d496cdc2a1d3e5af8826c63110ef90b1d3f.tar.gz
src-d6be6d496cdc2a1d3e5af8826c63110ef90b1d3f.zip
Add loader.conf to the list of files that are MD.
loader.conf is also different between machines. On arm it's a minimal one that's not quite compatible with the default one. On arm it's minimal for speed, which is good, but there's also extra things in it relative to the default on which break loading FDT which is bad. This doesn't address that issue, but instead ensures the minimal one for arm is used. A similar issue for mips exists, but since we can have a beri variant of /boot/loader and a uboot variant, I'm leaving that mess alone for the moment. Sponsored by: Netflix
Notes
Notes: svn path=/head/; revision=325775
Diffstat (limited to 'sys/boot/arm/loader/loader.conf')
-rw-r--r--sys/boot/arm/loader/loader.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/boot/arm/loader/loader.conf b/sys/boot/arm/loader/loader.conf
new file mode 100644
index 000000000000..4154ab7bcc9f
--- /dev/null
+++ b/sys/boot/arm/loader/loader.conf
@@ -0,0 +1,13 @@
+# This is defaults/loader.conf for ARM, containing defaults for loader(8).
+# Do not modify the contents of this file, instead put your customizations
+# into /boot/loader.conf or /boot/loader.conf.local
+# $FreeBSD$
+
+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"
+nextboot_conf="/boot/nextboot.conf"
+nextboot_enable="NO"
+verbose_loading="NO"