Random Resolution Change

Code:
root@Bender:~ # uname -a
FreeBSD Bender 13.0-RELEASE FreeBSD 13.0-RELEASE #0 releng/13.0-n244733-ea31abc261f: Fri Apr  9 04:24:09 UTC 2021     root@releng1.nyi.freebsd.org:/usr/obj/usr/src/amd64.amd64/sys/GENERIC  amd64

Recently installed FreeBSD 13. All went well and was running at 1920x1080. I just booted the machine after adding a 10 TB HDD and the resolution is 640x480
Any idea how to fix this?
 
UEFI or CSM boot? Set anything in /boot/loader.conf?

Code:
hw.vga.textmode="0"
efi_max_resolution="1024x768"
vbe_max_resolution="1024x768"
Code:
           efi_max_resolution

           vbe_max_resolution
                     Specify the maximum desired resolution for the EFI or VBE
                     framebuffer console.  The following values are accepted:

                     Value           Resolution
                     480p            640x480
                     720p            1280x720
                     1080p           1920x1080
                     2160p           3840x2160
                     4k              3840x2160
                     5k              5120x2880
                     WidthxHeight    WidthxHeight
From loader.conf(5).
 
Back
Top