svn commit: r331904 - head/stand/defaults

Kyle Evans kevans at FreeBSD.org
Tue Apr 3 02:41:33 UTC 2018


Author: kevans
Date: Tue Apr  3 02:41:32 2018
New Revision: 331904
URL: https://svnweb.freebsd.org/changeset/base/331904

Log:
  Default loader.conf: Drop efi_max_resolution to 1x1
  
  Effectively disabling the mode changing bits in the loader. No matter which
  way we go with it, it seems to be wrong- either the firmware doesn't change
  the resolution and reports the resolution we requested, or the firmware
  changes the resolution and doesn't report the resolution we requested. It
  some cases, it does the right thing, but the bad cases outweight those.
  
  Interested individuals can still set efi_max_resolution to 1080p or whatnot
  in loader.conf(5) to restore the new behavior, but the new behavior does not
  work out well for many cases.
  
  Discussed with: imp

Modified:
  head/stand/defaults/loader.conf

Modified: head/stand/defaults/loader.conf
==============================================================================
--- head/stand/defaults/loader.conf	Tue Apr  3 02:29:17 2018	(r331903)
+++ head/stand/defaults/loader.conf	Tue Apr  3 02:41:32 2018	(r331904)
@@ -75,7 +75,7 @@ acpi_video_load="NO"		# Load the ACPI video extension 
 #geom_eli_passphrase_prompt="NO" # Prompt for geli(8) passphrase to mount root
 bootenv_autolist="YES"		# Auto populate the list of ZFS Boot Environments
 #beastie_disable="NO"		# Turn the beastie boot menu on and off
-efi_max_resolution="1080p"	# Set the max resolution for EFI loader to use:
+efi_max_resolution="1x1"	# Set the max resolution for EFI loader to use:
 				# 480p, 720p, 1080p, 2160p/4k, 5k, or specify
 				# WidthxHeight (e.g. 1920x1080)
 #kernels="kernel kernel.old"	# Kernels to display in the boot menu


More information about the svn-src-head mailing list