Re SIS Video Driver
anticapitalista wrote:...what happens if you boot to console and make the changes to etc/xorg.conf?
I didn't need to edit to edit that file, one was present in / etc/X11/xorg.conf containing the correct value.
I follwed verbatim the developer's instructions to compile the driver
========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"https://github.com/gununu/xf86-video-sis-stable"
linktext was:"https://github.com/gununu/xf86-video-sis-stable"
====================================
I expected to have to edit xorg.conf but found it was unnecessary.
My original post shows 2 xorg.conf files
post40203.html#p40203
The first was from a standard boot of antiX to GUI (X)
Live: no persistence
Boot params: quiet splash=off vga=788
Using: vesa
The second was from a standard boot of antiX to console (no X)
Live: no persistence
Boot params: quiet splash=off vga=788
Using: fbdev
then compiling the driver and switch to X via the startx command to use the sisimedia driver
Both are reproduced below for convenience. The only difference is the name of the driver in the Device section.
Using vesa
Code: Select all
cat / etc/X11/xorg.conf
#----------------------------------------------------------------------
# xorg.conf file
#
# Generated by make-xorg-conf sometime around Thu Mar 26 09:43:37 GMT 2015
#
# If you want to save customizations, delete the line above or this
# file will get automatically deleted on the next live boot.
#----------------------------------------------------------------------
Section"Monitor"
Identifier"Monitor0"
Option"DPMS""true"
HorizSync 30-75
VertRefresh 55-70
EndSection
Section"Device"
Identifier"Device0"
Driver "vesa" <------------NAME VALUE REFERRED TO
EndSection
Section"Screen"
Identifier"Screen0"
Monitor"Monitor0"
Device "Device0"
SubSection"Display"
Modes "1280x1024""1333x768""1024x768""800x600"
EndSubSection
EndSection
Using fbdev to sisimedia
Code: Select all
cat / etc/X11/xorg.conf
#----------------------------------------------------------------------
# xorg.conf file
#
# Generated by make-xorg-conf sometime around Thu Mar 26 08:53:16 GMT 2015
#
# If you want to save customizations, delete the line above or this
# file will get automatically deleted on the next live boot.
#----------------------------------------------------------------------
Section"Monitor"
Identifier"Monitor0"
Option"DPMS""true"
HorizSync 30-75
VertRefresh 55-70
EndSection
Section"Device"
Identifier"Device0"
Driver "sisimedia" <------------NAME VALUE REFERRED TO
EndSection
Section"Screen"
Identifier"Screen0"
Monitor"Monitor0"
Device "Device0"
SubSection"Display"
Modes "1280x1024""1333x768""1024x768""800x600"
EndSubSection
EndSection