듀얼스크린에서 듀얼모니터로 전환

듀얼스크린에서 듀얼모니터로 전환

2개의 물리적 디스플레이가 연결된 Raspberry Pi와 유사한 이름 없는 SBC가 있습니다(하나는 HDMI를 통해, 하나는 SPI를 통해). 다음은 2개의 별도 X 화면(:0.0 및 :0.1)을 제공하는 xorg 구성입니다.

### HDMI

Section "Device"
    Identifier  "device0"
    Driver      "fbdev"
    Option      "fbdev" "/dev/fb0"
EndSection

Section "Monitor"
    Identifier  "monitor0"
    Option      "Rotate" "normal"
    Modeline    "1920x1080_60.00"       172.80  1920  2040   2248  2576   1080   1081   1084  1118   -HSync +Vsync
EndSection

Section "Screen"
    Identifier  "screen0"
    Device      "device0"
    Monitor     "monitor0"
    DefaultDepth 24
    SubSection "Display"
        Depth 24
        Modes "1920x1080_60.00"
    EndSubSection
EndSection

### SPI

Section "Device"
    Identifier  "device1"
    Driver      "fbdev"
    Option      "fbdev" "/dev/fb1"
    Option      "SwapbuffersWait" "true"
EndSection

Section "Monitor"
    Identifier  "monitor1"
    Option      "Primary" "False"
EndSection

Section "Screen"
    Identifier "screen1"
    Monitor "monitor1"
    Device "device1"
    Subsection "Display"
        Depth 16
        Modes "320x240"
    EndSubSection
EndSection

### Layouts

Section "ServerLayout"
    Identifier "multihead"
    Screen  0 "screen0"
    Screen  1 "screen1" rightof "screen0"
EndSection

Section "ServerFlags"
    Option "DefaultServerLayout" "multihead"
EndSection

별도의 화면 대신 0과 :1이라는 2개의 별도 디스플레이를 구현하려면 (가능한 경우) 어떤 변경이 필요합니까? 화면 대신 디스플레이로 구성된 ServerLayout을 만드는 것이 가능합니까?

관련 정보