svn commit: r339308 - head/stand/defaults

Kyle Evans kevans at FreeBSD.org
Thu Oct 11 17:17:55 UTC 2018


Author: kevans
Date: Thu Oct 11 17:17:54 2018
New Revision: 339308
URL: https://svnweb.freebsd.org/changeset/base/339308

Log:
  Enable lualoader's kernel autodetection, disabled on install media
  
  As documented in loader.conf(5), kernels_autodetect="YES" will cause the
  Lua scripts to effectively scan /boot for directories with a "kernel" file
  inside, to be listed in the loader menu.
  
  Approved by:	re (kib)

Modified:
  head/stand/defaults/loader.conf

Modified: head/stand/defaults/loader.conf
==============================================================================
--- head/stand/defaults/loader.conf	Thu Oct 11 17:16:39 2018	(r339307)
+++ head/stand/defaults/loader.conf	Thu Oct 11 17:17:54 2018	(r339308)
@@ -92,6 +92,7 @@ efi_max_resolution="1x1"	# Set the max resolution for 
 				# 480p, 720p, 1080p, 2160p/4k, 5k, or specify
 				# WidthxHeight (e.g. 1920x1080)
 #kernels="kernel kernel.old"	# Kernels to display in the boot menu
+kernels_autodetect="YES"	# Auto-detect kernel directories in /boot
 #loader_logo="orbbw"		# Desired logo: orbbw, orb, fbsdbw, beastiebw, beastie, none
 #comconsole_speed="9600"	# Set the current serial console speed
 #console="vidconsole"		# A comma separated list of console(s)


More information about the svn-src-head mailing list