LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 10-13-2009, 04:15 AM   #151
Yury_T
Member
 
Registered: Aug 2008
Distribution: Slackware
Posts: 63
Blog Entries: 10

Rep: Reputation: 16

Quote:
Originally Posted by rworkman View Post
From UPGRADE.TXT:
...
From CHANGES_AND_HINTS.TXT:
Guys, every OSS software package is known to make such kind of vanilla warnings. I remember reading something like that, but didn't even recognize the significance of this info (relegated to the separate file, too).

As Slackware is known for its healthy conservatism, to be really noticed, such thing as the capitally reworked X graphics drivers for one of the major vendors ought to be advertised in capitals, like WARNING UNSURE QUALITY INTEL DRIVERS - or better yet, that's new (2.8/2.9) variants that ought to "be there in /extra for me to try", not stable (2.6/2.7) variants.

My 2 cents.
 
Old 10-13-2009, 12:56 PM   #152
folkenfanel
Member
 
Registered: Sep 2004
Location: formerly Fanelia and Zaibach
Distribution: Slackware-current !
Posts: 342

Rep: Reputation: 59
Ladies and gentlemen, please check this out

http://intellinuxgraphics.org/2009Q3.html

Multiple fixes (need 2.6.32-rc1+ kernel) to make the driver stable for 8xx chipsets (The 2.8 driver series were extremely unstable with many of these chipsets)

BTW I just downloaded and compiled libdrm 2.4.14, Mesa 7.5.2 (not ready yet for 7.6), and xorg.server 1.6.4. The xorg server refused to run without the newer 2.9.0 driver so I compiled it. Now I'm running xorg-server 1.6.4, Mesa 7.5.2 (not yet 7.6, but it says it had fixes for Intel chipsets), and the Intel 2.9 driver. By the way I'm using the 2.6.30.5 kernel with KMS activated. It's stable. 745 fps on my i945.

I'm not willing to recompile my kernel yet or to build Mesa 7.6, but if what they say is true, it might work.
 
Old 10-14-2009, 02:50 AM   #153
johnny23
Member
 
Registered: Aug 2009
Location: Lapu-Lapu City, Philippines
Distribution: Slackware
Posts: 62

Rep: Reputation: 44
Quote:
Originally Posted by salemboot View Post
What do you mean?
Regarding kernel headers.

Taking Slack 12.2 as example:

/var/log/packages/kernel-headers-2.6.27.31_smp-x86-1

These are the headers describing the kernel's userspace API - i.e. any userspace libraries and apps that interface with the kernel use this.

These headers - the API - don't change with maintenance upgrades, i.e. all 2.6.27.xx kernels are good to go with this particular version of the headers.

The API may change in important ways with different major revisions of the kernel. In practice, of course, really significant changes tend to be avoided if at all possible. In practice, you could get away with running a 2.4 kernel header'ed system with a 2.6 kernel but the other way around would undoubtedly be a fail.

Probably Slack could package kernel-headers without the minor revision number since in theory that's redundant information.

We might reasonably expect, in practice, if you're up-rev'ing the kernel then the "old" kernel headers are likely to work. However, I presume you can see where I get the caveat that "something odd" could come out of mixing and matching kernel-headers with an API for whatever previous version and some later actual API. I imagine that some kind of important bug-fix might have been put in to stop a buffer overflow, for instance, that could cause grief with things compiled against inappropriate headers.

That's just one reason why it's not a great idea to dick around with Patrick's official Slackware distro unless you really know what you're doing or you don't particularly care about the results and you're fine with it randomly breaking. (A reason to stick with official Slack packages from slackware.org or Slackbuilds.)
 
Old 10-19-2009, 09:38 PM   #154
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,367

Rep: Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748
Intel 82865G works with 2.6.31.4 kernel

Just confirming what was reported here.
http://groups.google.com.au/group/al...23864714?hl=en

The Intel 82865G chipset works with the 2.6.31.4 kernel.
I have tested with the Intel 2.8.0 driver as well as the Intel 2.9.0 driver.
The boot time to KDE after startx is noticeably shorter with the 2.9.0 driver.
 
Old 10-20-2009, 03:44 PM   #155
agentdcooper
Member
 
Registered: Aug 2005
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
Thumbs up intel 82865G WORKS HERE - 2.6.32-rc5 kernel + zen patch + witek's xorg intel v2.9.0

I'm happy to report, I am up and running GREAT with intel 82865G video hardware + DRI enabled + composite effects in KDE4 on default slackware 13.0 x86 install -- on taking poncez advice, the difference from a default install is I've installed linux 2.6.32-rc5 kernel + zen kernel patch + using witek's xorg intel v2.9.0 video driver
  1. grab kernel 2.6.32-rc5 @ http://ftp.kernel.org/pub/linux/kern...32-rc5.tar.bz2
  2. grab zen kernel patch for 2.6.32-rc5 @ ftp://dodo1122.co.uk/pub/2.6.32-rc5-zen1.patch.lzma
  3. grab witek's xorg intel v2.9.0 video drive @ http://advamacs.com/pub/xf86-video-i...9.0-i486-1.tgz

    (( there are many ways of doing this, but what follows is how I did it, ymmv ))
Code:
cd /tmp
wget http://ftp.kernel.org/pub/linux/kern...32-rc5.tar.bz2
wget ftp://dodo1122.co.uk/pub/2.6.32-rc5-zen1.patch.lzma
wget http://advamacs.com/pub/xf86-video-i...9.0-i486-1.tgz
cd /usr/src
tar jxvf /tmp/linux-2.6.32-rc5.tar.bz2
rm linux
ln -s linux-2.6.32-rc5 linux
cd linux
lzma -d -c /tmp/2.6.32-rc5-zen1.patch.lzma | patch -p1
zcat /proc/config.gz > .config
vi Makefile
uncomment, and change the "INSTALL_PATH" section from /boot => "/boot/2632rc5" as example
mkdir /boot/2632rc5 [+] READ NOTE FROM BELOW [+] vi /etc/lilo.conf
image = /boot/2632rc5/vmlinuz root = /dev/hda1 label = Linux2632rc5 read-only
vi /boot/boot_message.txt
add the new "label" from /etc/lilo.conf, example :: Linux2632rc5 - Slackware64 13.0 - linux 2.6.32-rc5
make menuconfig make&&make install&&make modules&&make modules_install upgradepkg /tmp/xf86-video-intel-2.9.0-i486-1.tgz reboot
in make menuconfig I enabled some things of my own accord ;;
Code:
[+] CONFIG_MPENTIUM4=y
[+] CONFIG_CPU_BFS=y
[+] CONFIG_LOGO=y
[+] LOGO_LINUX_CLUT224=y
[+] LOGO_SLACKWARE_CLUT224=y
[+] NOTE :: when "lilo" got updated/ran (from the make&&make install... line), I recieved an error "Fatal: Bitmap table has space for only 3 images"...
google searches didnt bring up too much, but asking around on ##slackware @ freenode.net a guy named Camarade_Tux helped me out, and suggested I just remove the BMP-related lines in lilo.conf (I made sure only 2 bootup logos were enabled in linux kernel config), once I did that and ran "lilo" it went thru without error - this is the top part of my lilo.conf that I commented out + and the "message =" line I enabled ;;
Code:
# Start LILO global section
#bitmap = /boot/lilo2.bmp
#bitmap = /boot/slack.bmp
#bmp-colors = 15,0,;15,8,
#bmp-table = 500p,230p,1,3,,
#bmp-timer = 550p,445p,15,0,0
boot = /dev/hda
message = /boot/boot_message.txt
 ...... ..... .....
all is well here! now to put this implementation to the test with my dell insprion 1100 laptop with intel 845G! w00t

Last edited by agentdcooper; 10-22-2009 at 01:27 PM.
 
Old 10-22-2009, 12:35 PM   #156
johnny23
Member
 
Registered: Aug 2009
Location: Lapu-Lapu City, Philippines
Distribution: Slackware
Posts: 62

Rep: Reputation: 44
Maybe - in a stunning break from tradition - Slackware should rush out a Slack 13.1 that does play with the Intel driver. If there's any chance of that, I would test an RC on my 82865G HP-Compaq which is currently stuck at 12.2 (which does work very nicely and even runs things like Cinelerra).
 
Old 10-24-2009, 06:29 AM   #157
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
"Rush out" a Slackware release? Don't think it will happen...
 
Old 10-24-2009, 11:16 AM   #158
jedi_sith_fears
Member
 
Registered: Jan 2008
Location: Kolkata
Distribution: Debian GNU/Linux bookworm/sid
Posts: 136
Blog Entries: 1

Rep: Reputation: 29
Quote:
Originally Posted by folkenfanel View Post
http://intellinuxgraphics.org/2009Q3.html

Multiple fixes (need 2.6.32-rc1+ kernel) to make the driver stable for 8xx chipsets (The 2.8 driver series were extremely unstable with many of these chipsets)

BTW I just downloaded and compiled libdrm 2.4.14, Mesa 7.5.2 (not ready yet for 7.6), and xorg.server 1.6.4. The xorg server refused to run without the newer 2.9.0 driver so I compiled it. Now I'm running xorg-server 1.6.4, Mesa 7.5.2 (not yet 7.6, but it says it had fixes for Intel chipsets), and the Intel 2.9 driver. By the way I'm using the 2.6.30.5 kernel with KMS activated. It's stable. 745 fps on my i945.

I'm not willing to recompile my kernel yet or to build Mesa 7.6, but if what they say is true, it might work.

I am using mesa 7.6 with libdrm 2.4.14, and it works well.
 
Old 10-27-2009, 04:10 PM   #159
witek
Member
 
Registered: Oct 2008
Location: Poland, Łódź
Distribution: Lubuntu, Salix
Posts: 105

Rep: Reputation: 19
It looks that X11R7.5 has been released along with new intel driver 2.9.1
http://lists.freedesktop.org/archive...er/001187.html

If anybody is able to prepare the packages for testing it would be nice. I tried to build the intel driver alone but failed Building X server is outside my capabilities yet :-\

Last edited by witek; 10-27-2009 at 04:12 PM.
 
Old 10-28-2009, 04:03 AM   #160
agentdcooper
Member
 
Registered: Aug 2005
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
update of my results :: my poor dell inspiron 1100 which runs intel 845G video hardware is still a sitting duck running slackware 13.0 + KDE4 with any combo suggested in this thread. I've tried every version of xf86-video-intel-* drivers that came on slackware 13.0 x86 DVD, I've tried witek's 2.9.0 driver, upgraded to 2.6.32-rc5, tried zen patches 1 & 2 for 2.6.32-rc5, upgraded to libdrm 2.4.14 & mesa-7.6 ... nothing helps. reading witek's last post/link, it sure sounds like the fix for this intel 845G graphics chip is gonna be either xf86-video-intel-2.9.1 and/or X11R7.5 ... sigh. I haven't given up yet... I will continue to work on this until I get the latest slackware + KDE4 working on this laptop if it kills me! ha, until then dual-booting backtrack4 has been my solution (bt4 has KDE 3.5.x which works great).
 
Old 10-29-2009, 02:39 AM   #161
Yury_T
Member
 
Registered: Aug 2008
Distribution: Slackware
Posts: 63
Blog Entries: 10

Rep: Reputation: 16
Quote:
Originally Posted by agentdcooper View Post
update of my results :: my poor dell inspiron 1100 which runs intel 845G video hardware is still a sitting duck running slackware 13.0 + KDE4 with any
...
Did you try setting Option "Tiling" "false"? I sort of solved my problem (Latitude 100L with Intel 852) with switching to 2.9.1 driver AND this option setting.
 
Old 10-29-2009, 02:33 PM   #162
agentdcooper
Member
 
Registered: Aug 2005
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
Quote:
Originally Posted by Yury_T View Post
Did you try setting Option "Tiling" "false"? I sort of solved my problem (Latitude 100L with Intel 852) with switching to 2.9.1 driver AND this option setting.
I do not think I've tried that yet... I will give that a shot here in a few hours when I get back to my laptop. thanks for the suggestion! hey, u said u are running 2.9.1 driver, any chance u have a slackware package u could post for us to try/download? I'd love to try it but, I dont know howto go about recompiling X from scratch... any help would be much appreciated, I will report back with my results of = Option "Tiling" "false" as well.

peas out
 
Old 10-29-2009, 04:34 PM   #163
Yury_T
Member
 
Registered: Aug 2008
Distribution: Slackware
Posts: 63
Blog Entries: 10

Rep: Reputation: 16
Quote:
Originally Posted by agentdcooper View Post
I do not think I've tried that yet... I will give that a shot here in a few hours when I get back to my laptop. thanks for the suggestion! hey, u said u are running 2.9.1 driver, any chance u have a slackware package u could post for us to try/download? I'd love to try it but, I dont know howto go about recompiling X from scratch... any help would be much appreciated, I will report back with my results of = Option "Tiling" "false" as well.

peas out
No need to bother with a packages, in this case. You just download the source for new version from intellinuxgraphics.org (some 800K) and compile and install just that (make && make install ).
 
Old 10-30-2009, 10:39 AM   #164
folkenfanel
Member
 
Registered: Sep 2004
Location: formerly Fanelia and Zaibach
Distribution: Slackware-current !
Posts: 342

Rep: Reputation: 59
Wink Has anyone checked if the new xserver (just the xserver)

if it compiles on the normal Slackware building tree?

./x11.SlackBuild xserver xorg-server
 
Old 10-30-2009, 04:02 PM   #165
witek
Member
 
Registered: Oct 2008
Location: Poland, Łódź
Distribution: Lubuntu, Salix
Posts: 105

Rep: Reputation: 19
I did and system crashed

Quote:
Originally Posted by folkenfanel View Post
if it compiles on the normal Slackware building tree?

./x11.SlackBuild xserver xorg-server
I tried to compile it and compilation seemed to be successful, however when I started X the system hanged with black screen.

I thought about recompiling everything including libs, but when I looked into the complicated structure of directories and milions of files I quit as I had no idea how to download only upgraded files from X mirror.
 
  


Reply

Tags
driver, i810, intel, stability, video



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
Request For Testing - Intel Graphics Drivers in -current rworkman Slackware 24 07-25-2009 10:30 PM
Request: New shadow in current jong357 Slackware 3 12-10-2008 03:51 PM
Request for Testing: Suspend/Resume (pm-utils backend) rworkman Slackware 16 11-10-2008 11:04 AM
Request for slackware-current jong357 Slackware 6 04-15-2008 09:34 PM
Request for Testing - hal-0.5.11rc1 in -current rworkman Slackware 11 03-18-2008 01:23 PM

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

All times are GMT -5. The time now is 12:31 AM.

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