You can never specify screen resolution in wtware config for pi 4. display= option only works for x86. WTware on Pi ignores display=.
The best way to set screen resolution is to use good digital display and direct digital cable. hdmi-hdmi or hdmi-dvi. Not Display Port adapter. Not ancient 15-pin VGA. With good display and direct digital cable, Pi sets resolution automagically and you may not think about it.
On Raspberry, wtware always lets Raspberry firmware to set resolution. With the newer update, "vc4-kms-v3d" raspberry driver is used. Google "vc4-kms-v3d". It's from raspberry world, wtware makes no changes.
To set resolution with "vc4-kms-v3d", cmdline.txt file is used. Note cmdline.txt is single line file!
By default, cmdline.txt in wtware for SD boot is:
To set resolution:
Code: Select all
video=HDMI-A-1:1280x1024-32@60 console=tty1 quiet wtboot=mmc
For two displays:
Code: Select all
video=HDMI-A-1:1280x1024-32@60 video=HDMI-A-2:1920x1080-32@60 console=tty1 quiet wtboot=mmc
You can never specify screen resolution in wtware config for pi 4. display= option only works for x86. WTware on Pi ignores display=.
The best way to set screen resolution is to use good digital display and direct digital cable. hdmi-hdmi or hdmi-dvi. Not Display Port adapter. Not ancient 15-pin VGA. With good display and direct digital cable, Pi sets resolution automagically and you may not think about it.
On Raspberry, wtware always lets Raspberry firmware to set resolution. With the newer update, "vc4-kms-v3d" raspberry driver is used. Google "vc4-kms-v3d". It's from raspberry world, wtware makes no changes.
To set resolution with "vc4-kms-v3d", cmdline.txt file is used. Note cmdline.txt is single line file!
By default, cmdline.txt in wtware for SD boot is:
[code]console=tty1 quiet wtboot=mmc[/code]
To set resolution:
[code]video=HDMI-A-1:1280x1024-32@60 console=tty1 quiet wtboot=mmc[/code]
For two displays:
[code]video=HDMI-A-1:1280x1024-32@60 video=HDMI-A-2:1920x1080-32@60 console=tty1 quiet wtboot=mmc[/code]