LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-18-2006, 10:17 AM   #16
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57

Quote:
Originally Posted by scuzzman
This is just an idea, but in this code segment the "DRI" section is commented out. Have you tried removing the hash marks (#) from those lines and checking it?
Yes you're right

HAPPY BIRTHDAY!!
 
Old 01-18-2006, 10:18 AM   #17
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57
Quote:
Originally Posted by ken.mr47
nope . still no dri -_-

redo post #11 in this thread
 
Old 01-18-2006, 10:19 AM   #18
ken.mr47
LQ Newbie
 
Registered: Jul 2005
Distribution: Slackware 10.2
Posts: 14

Original Poster
Rep: Reputation: 0
hmm seems like no errors in log.

(II) I810(0): VESA VBE OEM: Intel(r)915G/915GV/910GL Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)915G/915GV/910GL Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Integrated Graphics Chipset: Intel(R) 915G

no idea y DRI is still off -.-

Last edited by ken.mr47; 01-18-2006 at 10:23 AM.
 
Old 01-18-2006, 10:22 AM   #19
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57
I think your really need the BusID line !!
Section "Device"
Identifier "** Intel i810 (generic) [i810]"
<HERE>
Driver "i810"
VideoRam 65536

This has to be the result of lspci


Also to be sure Direct Rendering is activated in your kernel you need to have a line "drm" in lsmod



edit:
1)and are there any line beginning with drmOpenDevice in the log?
2)Maybe add this to the modules section
Load "int10"

Last edited by nx5000; 01-18-2006 at 10:31 AM.
 
Old 01-18-2006, 10:29 AM   #20
ken.mr47
LQ Newbie
 
Registered: Jul 2005
Distribution: Slackware 10.2
Posts: 14

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by nx5000
I think your really need the BusID line !!
Section "Device"
Identifier "** Intel i810 (generic) [i810]"
<HERE>
Driver "i810"
VideoRam 65536

This has to be the result of lspci


Also to be sure Direct Rendering is activated in your kernel you need to have a line "drm" in lsmod
Hmm BUSID ? don't see any difference . oh and lsmod does not have the drm line. how do i activate it?
 
Old 01-18-2006, 10:35 AM   #21
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57
Quote:
Originally Posted by ken.mr47
Hmm BUSID ? don't see any difference . oh and lsmod does not have the drm line. how do i activate it?
Well it should be automaticly loaded by i915 and Xorg. You can always try modprobe drm after stoping X, then restart X but I highly doubt it helps.

ok the busid is only if you have several lines showing in lspci | grep ..

did you try the int10?
you have to look in detail in the log file maybe

getting me mad
 
Old 01-18-2006, 10:39 AM   #22
ken.mr47
LQ Newbie
 
Registered: Jul 2005
Distribution: Slackware 10.2
Posts: 14

Original Poster
Rep: Reputation: 0
root@Slack:~# modprobe drm
modprobe: Can't locate module drm
<-- OWNED LOL

lscpi listing
00:00.0 Host bridge: Intel Corporation 915G/P/GV/GL/PL/910GL Processor to I/O Controller (rev 0e)
00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL Express Chipset Family Graphics Controller (rev 0e)
00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 04)
00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 04)
00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 04)
00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 04)
00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 04)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d4)
00:1e.2 Multimedia audio controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 04)
00:1f.0 ISA bridge: Intel Corporation 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge (rev 04)
00:1f.2 IDE interface: Intel Corporation 82801FB/FW (ICH6/ICH6W) SATA Controller (rev 04)
00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 04)
01:05.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
 
Old 01-18-2006, 10:45 AM   #23
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57
Mmmmhh you're only chance would be that it is compiled in the kernel.
I don't know how to check this.
Code:
zcat /proc/config.gz | grep DRM
this assumes you have /proc/config.gz
hum hum
i think its time to recompile your kernel

Or maybe I'm missing something (wait for someone that will help you).

If you recompile I advice:
put DRM as a module
put i915 as a module (it is already the case)

If you have a /boot/configxxx then copy this file in /usr/src/linux, then
make oldconfig
this will keep all the same settings, then
make menuconfig, add the support for DRM.
recompile
pray
boot

Have to leave, bye
good luck
 
  


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
dri on mach64, slackware 10.1, laptop Brotherswing Linux - Hardware 7 02-23-2005 03:14 PM
DRI Module freezes X on Slackware 9.1 njbrain Linux - Hardware 4 01-23-2004 08:01 PM
Radeon 9600 Pro + GLX + DRI Slackware 9 wh1t3d3m0n Linux - Hardware 0 09-01-2003 02:09 PM
DRI, with r128 and slackware 9 boney Slackware 0 05-23-2003 12:39 PM
DRI that comes with slackware 9 wr3ck3d Slackware 0 03-30-2003 08:10 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:38 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