LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-10-2014, 10:07 PM   #1
unclejed613
Member
 
Registered: Mar 2009
Posts: 352

Rep: Reputation: 32
SIS video driver??????


i've followed a bunch of previous threads here, and at my wits end.... i cannot find source for an SIS driver that will build on a new install of slack 14.1, and many of the links to source for it (even from july of this year) are defunct i will NEVER buy another MB with an SIS chipset again.... but i want to get this one doing something other than console mode if it's even humanly possible.... arrghhhh
 
Old 11-10-2014, 10:16 PM   #2
jtsn
Member
 
Registered: Sep 2011
Posts: 922

Rep: Reputation: 480Reputation: 480Reputation: 480Reputation: 480Reputation: 480
You are talking about xf86-video-sis-0.10.7? What's wrong with it?
 
Old 11-10-2014, 10:37 PM   #3
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Unfortunately the SiS driver is poorly maintained upstream, and support for it in LibMesa was dropped a while back as well. There are patches from upstream you can get to patch the driver to make it work with the latest xorg-server versions, but support for these chipsets isn't what it used to be, though that in part being that barely any motherboards any more actually use video graphics other than Nvidia, AMD, and Intel.
 
Old 11-11-2014, 12:00 AM   #4
fsalk
LQ Newbie
 
Registered: Jan 2014
Location: Split, Croatia
Distribution: Slackware
Posts: 20

Rep: Reputation: Disabled
please copy this into your xorg.conf and you'll have resolution 1280x768_0 Hz. without this xorg.conf, you should have 1024x768_60 Hz

Code:
Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "Screen0" 0 0
EndSection

Section "Files"
   ModulePath   "/usr/lib/xorg/modules"
   FontPath     "/usr/share/fonts/X11/misc"
   FontPath     "/usr/share/fonts/X11/cyrillic"
   FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
   FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
   FontPath     "/usr/share/fonts/X11/Type1"
   FontPath     "/usr/share/fonts/X11/100dpi"
   FontPath     "/usr/share/fonts/X11/75dpi"
   FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
   Load  "extmod"
#   Load  "dri2"
   Load  "dbe"
#   Load  "glx"
   Load  "record"
#   Load  "dri"
   Load  "synaptics"
EndSection

Section "Monitor"
   Identifier   "Monitor0"
   VendorName   "Monitor Vendor"
   ModelName    "Monitor Model"
   HorizSync    30-107
   VertRefresh  50-185
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        Option     "ShadowFB" "false"             # [<bool>]
        #Option     "DefaultRefresh"        # [<bool>]
        #Option     "ModeSetClearScreen"    # [<bool>]
   Identifier  "Card0"
   Driver      "vesa"
   VendorName  "Silicon Integrated Systems [SiS]"
   BoardName   "771/671 PCIE VGA Display Adapter"
   BusID       "PCI:1:0:0"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   DefaultDepth 24
   SubSection "Display"
      Viewport   0 0
      Depth      24
      Modes     "1280x800"
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     16
      Modes	"1024x768"
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     24
      Modes	"1024x768"
   EndSubSection
EndSection
 
Old 11-11-2014, 12:29 AM   #5
unclejed613
Member
 
Registered: Mar 2009
Posts: 352

Original Poster
Rep: Reputation: 32
i'll try it tomorrow.... but i'm beginning to think SIS means "Satan In Silicon".........
 
Old 11-11-2014, 12:34 AM   #6
jtsn
Member
 
Registered: Sep 2011
Posts: 922

Rep: Reputation: 480Reputation: 480Reputation: 480Reputation: 480Reputation: 480
This xorg.conf uses the "vesa" driver.
 
Old 11-11-2014, 05:04 AM   #7
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Slackware's xf86-video-sis-0.10.7 driver should contain several patches from upstream. The question is probably which exact SiS chip you have.

Can you post the output of lspci?
 
Old 11-11-2014, 06:10 AM   #8
fsalk
LQ Newbie
 
Registered: Jan 2014
Location: Split, Croatia
Distribution: Slackware
Posts: 20

Rep: Reputation: Disabled
@jtsn - i know that this xorg.conf uses "vesa" driver why i use vesa instead of sis? because sis doesn't work
 
Old 11-11-2014, 06:25 AM   #9
jtsn
Member
 
Registered: Sep 2011
Posts: 922

Rep: Reputation: 480Reputation: 480Reputation: 480Reputation: 480Reputation: 480
Quote:
Originally Posted by fsalk View Post
@jtsn - i know that this xorg.conf uses "vesa" driver why i use vesa instead of sis? because sis doesn't work
But you don't need a complete xorg.conf:
Code:
removepkg xf86-video-sis
should be enough, if it doesn't work. Xorg will chose another driver (like "vesa") automatically. And even if that doesn't work, just put
Code:
Section "Device"
  Identifier "whatever"
  Driver     "vesa"
EndSection
into /etc/x11/xorg.conf.d/forcevesa.conf. And let X choose reasonable defaults for everything else.

General recommendation: Don't upgrade, stay with old working software on old hardware. Virtualize Slackware 14.1 if needed.

Last edited by jtsn; 11-11-2014 at 06:30 AM.
 
Old 11-11-2014, 06:28 AM   #10
fsalk
LQ Newbie
 
Registered: Jan 2014
Location: Split, Croatia
Distribution: Slackware
Posts: 20

Rep: Reputation: Disabled
of course, but in that case i'll have resolution 1024x768, and this way i have 1280x768
 
Old 11-11-2014, 06:30 AM   #11
jtsn
Member
 
Registered: Sep 2011
Posts: 922

Rep: Reputation: 480Reputation: 480Reputation: 480Reputation: 480Reputation: 480
Quote:
Originally Posted by fsalk View Post
of course, but in that case i'll have resolution 1024x768, and this way i have 1280x768
Is xrandr not working?
 
Old 11-11-2014, 06:42 AM   #12
fsalk
LQ Newbie
 
Registered: Jan 2014
Location: Split, Croatia
Distribution: Slackware
Posts: 20

Rep: Reputation: Disabled
no. i tried all possibilities and vesa seems the easiest solution
 
Old 11-11-2014, 06:42 AM   #13
jtsn
Member
 
Registered: Sep 2011
Posts: 922

Rep: Reputation: 480Reputation: 480Reputation: 480Reputation: 480Reputation: 480
Quote:
Originally Posted by fsalk View Post
no. i tried all possibilities and vesa seems the easiest solution
So xrandr isn't working with the VESA driver?
 
Old 11-11-2014, 06:45 AM   #14
fsalk
LQ Newbie
 
Registered: Jan 2014
Location: Split, Croatia
Distribution: Slackware
Posts: 20

Rep: Reputation: Disabled
i couldn't get 1280x768 with xrandr, so i gave up and i'm using this xorg.conf...
 
Old 11-11-2014, 09:45 AM   #15
bobzilla
Member
 
Registered: Nov 2005
Location: Serbia
Distribution: Slackware
Posts: 231

Rep: Reputation: Disabled
I did a conversion of Arch sis-imedia driver PKGBUILD for a friend on our forums some time ago. It worked for Xorg X server 1.12 (slack 14.0). Later we tried the later version with the new patches for 1.14 (Slack 14.1) but it seemed to be broken (he tried it on Arch too and it was broken). Haven't looked at it since and he didn't "bother" me with it in the meantime.

If you use 14.0, I can give you the links to the working package (and the SlackBuild). No 3D acceleration whatsoever, but 2D stuff work much better (ie: higher resolutions work too). If you use 14.1, sorry can't help.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] After upgrade from Slackware 14.0 to 14.1: Xserver crashes with SiS video driver slacksam Slackware 4 02-28-2014 03:14 AM
Is a Driver for Video SIS 6326?? marcosp86 Linux - Hardware 6 10-01-2012 04:40 AM
upgraded to 8.10 from 8.04 now sis video is poor on acer laptop. 8.04 video is great dcardinale Linux - Newbie 2 11-20-2008 09:21 PM
SIS driver : out of video memory Phlange Linux - Software 1 06-25-2003 07:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration