Code: Select all
Option "fbdev" "/dev/fb0"
Code: Select all
Option "fbdev" "/dev/fb1"
OK by doing the following I got it to work:
config.txt
Code: Select all
hdmi_force_hotplug=1
hdmi_ignore_edid=0xa5000080
config_hdmi_boost=4
hdmi_group=2
hdmi_mode=x
Code: Select all
Section "Device"
Identifier "Allwinner A10/A13 FBDEV"
Driver "fbturbo"
Option "fbdev" "/dev/fb0"
Option "SwapbuffersWait" "true"
EndSection
Section "Device"
Identifier "FBDEV 1"
Driver "fbturbo"
Option "fbdev" "/dev/fb1"
EndSection
Section "Screen"
Identifier "VGA"
Device "Allwinner A10/A13 FBDEV"
Monitor "Monitor name 0"
EndSection
Section "Screen"
Identifier "HDMI"
Device "FBDEV 1"
Monitor "Monitor name 1"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "VGA"
Screen 1 "HDMI" RightOf "VGA" ##the configuration of VGA(primary) to HDMI (Secondary)
EndSection