From 9c579660b9d87ac4de598a1f55182d35204d6028 Mon Sep 17 00:00:00 2001 From: kevans Date: Tue, 3 Apr 2018 02:41:32 +0000 Subject: [PATCH] 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 --- stand/defaults/loader.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/defaults/loader.conf b/stand/defaults/loader.conf index a3b179b6817..5d12ae91215 100644 --- a/stand/defaults/loader.conf +++ b/stand/defaults/loader.conf @@ -75,7 +75,7 @@ acpi_video_load="NO" # Load the ACPI video extension driver #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 -- 2.45.0