Hi,
I would like to get a VGA output from the Pandora. I have a USB VGA adapter (from StarTech.com), and was hoping to use this.
The driver it seems to need is sisusbvga, which is installed on the Pandora by default. When I connect up a monitor I get a black screen with a red border, which I believe shows the driver itself is talking to the adapter. With the adapter plugged in, lsusb returns:
Thanks.
Edit: OK - I didn't need any of that. I just needed to install xf86-video-sisusb from the Angstrom repository, and it configured itself!
I now have a working desktop on the VGA monitor, and just need to work out how to use it,
Cheers.
Edit[2]: I was wrong - the changes to /etc/xorg.conf above were needed as well as installing xf86-video-sisusb - I forgot that I hadn't removed them.
My external VGA is still limited to 800 x 600, but it's a good start ;-)
I would like to get a VGA output from the Pandora. I have a USB VGA adapter (from StarTech.com), and was hoping to use this.
The driver it seems to need is sisusbvga, which is installed on the Pandora by default. When I connect up a monitor I get a black screen with a red border, which I believe shows the driver itself is talking to the adapter. With the adapter plugged in, lsusb returns:
Code:
Bus 001 Device 002: ID 0711:0900 Magic Control Technology Corp. SVGA Adapter
Searching the web suggests I need to modify xorg.conf. I have added a screen to the serverlayout section:
[I have just noticed the lower case used in screen1, will try changing that]
Added a section for "Screen1":
And a monitor:
And finally a device:
However, as yet I get nothing out on the VGA (except for the black screen with a red border).
Any idea on what I need to do?
Code:
Section "ServerLayout"
Identifier "DefaultLayout"
Screen "Screen0"
Screen "screen1"
EndSection
[I have just noticed the lower case used in screen1, will try changing that]
Added a section for "Screen1":
Code:
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 16
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Code:
Section "Monitor"
Identifier "Monitor1"
EndSection
And finally a device:
Code:
Section "Device"
Identifier "Videocard1"
Driver "sisusb"
VendorName "sis"
BoardName "unknown sis card"
Option "SWCursor" "on"
Option "HWCursor" "off"
EndSection
However, as yet I get nothing out on the VGA (except for the black screen with a red border).
Any idea on what I need to do?
Edit: OK - I didn't need any of that. I just needed to install xf86-video-sisusb from the Angstrom repository, and it configured itself!
I now have a working desktop on the VGA monitor, and just need to work out how to use it,
Cheers.
Edit[2]: I was wrong - the changes to /etc/xorg.conf above were needed as well as installing xf86-video-sisusb - I forgot that I hadn't removed them.
My external VGA is still limited to 800 x 600, but it's a good start ;-)