I'm stumped with a problem and would appreciate any pointers for troubleshooting.
I got my RPI to start booting in 3440x1440 with the following /boot/msdos/config.txt:
Unfortunately, once the kernel starts to boot, I get the following printout on screen and the system then hangs (transcribed):
Removing
makes the system boot, but I'm stuck on a 1920 times something resolution; switching to 3440x1440 after initialization does not work.
I even tried adding
instead; this appears to also switch into 3440x1400 upon display initialization. However, boot still gets stuck after above message.
I tried adding
to /boot/loader.conf but with no effect.
Not sure, whether this is relevant - firmware was updated recently, as I'm booting from USB SSD (this wouldn't work otherwise). Running on FreeBSD 13.0 p5.
I got my RPI to start booting in 3440x1440 with the following /boot/msdos/config.txt:
Code:
[all]
arm_64bit=1
dtparam=audio=on,i2c_arm=on,spi=on
dtoverlay=mmc
dtoverlay=disable-bt
device_tree_address=0x4000
kernel=u-boot.bin
[pi4]
max_framebuffer_width=3440
max_framebuffer_height=1440
hdmi_force_hotplug=1
hdmi_group=2
hdmi_mode=87
hdmi_cvt=3440 1440 30 7 0 0 0
framebuffer_width=3440
framebuffer_height=1440
Unfortunately, once the kernel starts to boot, I get the following printout on screen and the system then hangs (transcribed):
Code:
Booting [/boot/kernel/kernel].
Using DTB provided by EFI at 0x7ef0000.
EFI framebuffer information:
addr, size 0x3d7de000, 0x12e5800
Dimensions 3440 x1440
stride 3440
masks 0x00ff0000, 0x0000ff00, 0x000000ff, 0xff000000
Removing
Code:
max_framebuffer_width=3440
max_framebuffer_height=1440
I even tried adding
Code:
hdmi_enable_4kp60=1
I tried adding
Code:
efi_max_resolution=3440x1440
screen.width=3440
screen.height=1440
Not sure, whether this is relevant - firmware was updated recently, as I'm booting from USB SSD (this wouldn't work otherwise). Running on FreeBSD 13.0 p5.