OpenGL

Conversations générales au sujet de Sabayon Linux

Moderator: Moderators

OpenGL

Postby Lancelot » Mon Dec 11, 2006 12:56

bonjour,

SL ne veut pas de l'opengl avec ma carte Geforce 4 ti 4200.
Que faire ? J'ai déjà réinstallé les drivers avec Kuroo mais toujours rien...

Merci
Lancelot
Baby Hen
 
Posts: 8
Joined: Sun Dec 10, 2006 19:44

Postby turquoise » Mon Dec 11, 2006 17:48

C'est probablement ton fichier xorg.conf qui a besoin d'être modifié.

Poste-le ici et je te dirai quoi modifier (et comment si tu ne le sais pas).
Ma philosophie d'apprentissage : essayer, et si ça casse, essayer de réparer.
My learning philosophy: try it, and if it breaks, try to fix it.
Image
turquoise
Old Dear Hen
 
Posts: 719
Joined: Wed Nov 15, 2006 1:14
Location: Abitibi-Témiscamingue!

Postby Lancelot » Mon Dec 11, 2006 19:45

voici mon xorg.conf

Section "Files"


#FontPath "/usr/share/fonts/local/"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/75dpi/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/corefonts"

EndSection

# **********************************************************************
# Module section -- this is an optional section which is used to specify
# which run-time loadable modules to load when the X server starts up.
# **********************************************************************

Section "Module"

Load "dbe"
Load "i2c"
Load "glx"
Load "ddc"
Load "type1"
Load "freetype"
Load "extmod"
Load "synaptics"
Load "vbe"
# Load "dri"

EndSection


# **********************************************************************
# Server flags section. This contains various server-wide Options.
# **********************************************************************

Section "ServerFlags"

Option "AllowMouseOpenFail" "true"
#Option "AIGLX" "true"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"
Identifier "Mouse3"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
Option "SHMConfig" "on"
# Do you keep moving the mouse while typing? Try this trick.
#synclient TouchpadOff=1 disable your synaptics touchpad
#synclient TouchpadOff=0 enable your synaptics touchpad
EndSection


Section "InputDevice"

Identifier "Keyboard1"
Driver "kbd"

Option "AutoRepeat" "500 5"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr-latin1"
Option "XkbRules" "xorg"

EndSection


Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "mouse"

Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"

EndSection

Section "InputDevice"
Identifier "Mouse2"
Driver "mouse"
Option "Protocol" "ImPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
EndSection


# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

Identifier "Generic Monitor"
#Option "DPMS"

VertRefresh 43 - 60
HorizSync 28 - 80

EndSection

# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
Identifier "VESA"
Driver "nvidia" # do not remove vesa
#Option "XAANoOffscreenPixmaps"
#Option "BusType" "PCI"
#Option "ColorTiling" "on"
#Option "EnablePageFlip" "on"
EndSection


# **********************************************************************
# Screen sections.
# **********************************************************************

Section "Screen"

# The Identifier, Device and Monitor lines must be present

Identifier "Screen 1"
Device "VESA"
Monitor "Generic Monitor"
#Option "AddARGBGLXVisuals" "true"

# The favoured Depth and/or Bpp may be specified here

DefaultDepth 24

SubSection "Display"
Depth 8
ViewPort 0 0
#Modes "1024x768" "800x600" "640x480"
EndSubsection

SubSection "Display"
Depth 16
ViewPort 0 0
#Modes "1024x768" "800x600" "640x480"
EndSubsection

SubSection "Display"
Depth 24
ViewPort 0 0
#Modes "1024x768" "800x600" "640x480"
EndSubsection


EndSection


Section "ServerLayout"
# The Identifier line must be present

Identifier "Main Layout"
Screen 0 "Screen 1"
InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse2" "SendCoreEvents"
InputDevice "Mouse3" "SendCoreEvents"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "Keyboard1" "CoreKeyboard"

EndSection

Section "DRI"
Mode 0666
EndSection

Section "Extensions"
#Option "Composite" "Enable"
EndSection

Merci :)
Lancelot
Baby Hen
 
Posts: 8
Joined: Sun Dec 10, 2006 19:44

Postby turquoise » Mon Dec 11, 2006 20:18

Voici les changements (en jaune) à apporter à ton xorg.conf. Une fois que ce sera fait, tape
Code: Select all
eselect opengl set nvidia
dans un terminal et redémarre ton ordinateur pour que les changements à xorg.conf soient pris en compte. Ensuite, tape beryl-manager dans un terminal pour voir si ça fonctionne et on verra ce qu'il faut faire à partir de là si ça ne fonctionne pas.

Lancelot wrote:# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
Identifier "VESA"
Driver "nvidia" # do not remove vesa
Option "XAANoOffscreenPixmaps"
#Option "BusType" "PCI"
#Option "ColorTiling" "on"
#Option "EnablePageFlip" "on"
EndSection


# **********************************************************************
# Screen sections.
# **********************************************************************

Section "Screen"

# The Identifier, Device and Monitor lines must be present

Identifier "Screen 1"
Device "VESA"
Monitor "Generic Monitor"
Option "AddARGBGLXVisuals" "true"

# The favoured Depth and/or Bpp may be specified here

DefaultDepth 24

SubSection "Display"
Depth 8
ViewPort 0 0
#Modes "1024x768" "800x600" "640x480"
EndSubsection

SubSection "Display"
Depth 16
ViewPort 0 0
#Modes "1024x768" "800x600" "640x480"
EndSubsection

SubSection "Display"
Depth 24
ViewPort 0 0
#Modes "1024x768" "800x600" "640x480"
EndSubsection


EndSection


Section "ServerLayout"
# The Identifier line must be present

Identifier "Main Layout"
Screen 0 "Screen 1"
InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse2" "SendCoreEvents"
InputDevice "Mouse3" "SendCoreEvents"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "Keyboard1" "CoreKeyboard"

EndSection

Section "DRI"
Mode 0666
EndSection

Section "Extensions"
Option "Composite" "Enable"
EndSection
Ma philosophie d'apprentissage : essayer, et si ça casse, essayer de réparer.
My learning philosophy: try it, and if it breaks, try to fix it.
Image
turquoise
Old Dear Hen
 
Posts: 719
Joined: Wed Nov 15, 2006 1:14
Location: Abitibi-Témiscamingue!

Postby Lancelot » Tue Dec 12, 2006 23:17

Salut,

Les changements dans xorg.conf n'ont rien chang :cry:
Lorsque je vais dans le centre d'informations KDE dans la rubrique OpenGL, ca plante...
Lancelot
Baby Hen
 
Posts: 8
Joined: Sun Dec 10, 2006 19:44

Postby Lancelot » Tue Dec 12, 2006 23:31

Voici en +, le nvidia-installer.log o figure l'erreur d'install du pilote :

nvidia-installer log file '/var/log/nvidia-installer.log'
creation time: Tue Dec 12 23:26:17 2006

option status:
license pre-accepted : false
update : false
force update : false
expert : false
uninstall : false
driver info : false
precompiled interfaces : true
no ncurses color : false
query latest version : false
OpenGL header files : true
no questions : false
silent : false
no recursion : false
no backup : false
kernel module only : false
sanity : false
add this kernel : false
no runlevel check : false
no network : false
no ABI note : false
no RPMs : false
no kernel module : false
force SELinux : default
no X server check : false
force tls : (not specified)
X install prefix : (not specified)
X library install path : (not specified)
X module install path : (not specified)
OpenGL install prefix : (not specified)
OpenGL install libdir : (not specified)
utility install prefix : (not specified)
utility install libdir : (not specified)
doc install prefix : (not specified)
kernel name : (not specified)
kernel include path : (not specified)
kernel source path : (not specified)
kernel output path : (not specified)
kernel install path : (not specified)
proc mount point : /proc
ui : (not specified)
tmpdir : /tmp
ftp mirror : ftp://download.nvidia.com
RPM file list : (not specified)

Using: nvidia-installer ncurses user interface
-> License accepted.
-> No precompiled kernel interface was found to match your kernel; would you li
ke the installer to attempt to download a kernel interface for your kernel f
rom the NVIDIA ftp site (ftp://download.nvidia.com)? (Answer: Yes)
-> No matching precompiled kernel interface was found on the NVIDIA ftp site;
this means that the installer will need to compile a kernel interface for
your kernel.
-> Performing CC sanity check with CC="cc".
-> Performing CC version check with CC="cc".
-> Kernel source path: '/lib/modules/2.6.18-gentoo-r4/source'
-> Kernel output path: '/lib/modules/2.6.18-gentoo-r4/build'
-> Performing rivafb check.
-> Performing nvidiafb check.
-> Cleaning kernel module build directory.
executing: 'cd ./usr/src/nv; make clean'...
rm -f -f nv.o nv-vm.o os-agp.o os-interface.o os-registry.o nv-i2c.o nv.o nv
-vm.o os-agp.o os-interface.o os-registry.o nv-i2c.o nvidia.mod.o
rm -f -f build-in.o nv-linux.o *.d .*.{cmd,flags}
rm -f -f nvidia.{o,ko,mod.{o,c}} nv_compiler.h *~
rm -f -f stprof stprof.o symtab.h Modules.symvers
rm -f -rf .tmp_versions
-> Building kernel module:
executing: 'cd ./usr/src/nv; make module SYSSRC=/lib/modules/2.6.18-gentoo-r
4/source SYSOUT=/lib/modules/2.6.18-gentoo-r4/build'...

NVIDIA: calling KBUILD...
make CC=cc KBUILD_OUTPUT=/lib/modules/2.6.18-gentoo-r4/build KBUILD_VERBOSE=
1 -C /lib/modules/2.6.18-gentoo-r4/source SUBDIRS=/tmp/selfgz13276/NVIDIA-Li
nux-x86-1.0-9631-pkg1/usr/src/nv modules
make -C /lib/modules/2.6.18-gentoo-r4/build \
KBUILD_SRC=/usr/src/linux-2.6.18-gentoo-r4 \
KBUILD_EXTMOD="/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv"
-f /usr/src/linux-2.6.18-gentoo-r4/Makefile modules
test -e include/linux/autoconf.h -a -e include/config/auto.conf || ( \
echo; \
echo " ERROR: Kernel configuration is invalid."; \
echo " include/linux/autoconf.h or include/config/auto.conf are mis
sing."; \
echo " Run 'make oldconfig && make prepare' on kernel src to fix it
."; \
echo; \
/bin/false)
mkdir -p /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.tmp_ver
sions
rm -f /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.tmp_versio
ns/*

WARNING: Symbol version dump /usr/src/linux-2.6.18-gentoo-r4/Module.symver
s
is missing; modules will have no dependencies and modversions.

make -f /usr/src/linux-2.6.18-gentoo-r4/scripts/Makefile.build obj=/tmp/self
gz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv
echo \#define NV_COMPILER \"`cc -v 2>&1 | tail -n 1`\" > /tmp/selfgz13276/NV
IDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv_compiler.h
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.nv.
o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/include -D__KER
NEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/include -includ
e include/linux/autoconf.h -I/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg
1/usr/src/nv -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-al
iasing -fno-common -Os -pipe -msoft-float -mpreferred-stack-boundary=2 -marc
h=i586 -mregparm=3 -ffreestanding -I/usr/src/linux-2.6.18-gentoo-r4/include/
asm-i386/mach-default -Iinclude/asm-i386/mach-default -fomit-frame-pointer -
fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -I/tmp/
selfgz13276
/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv -Wall -Wimplicit -Wreturn-type -W
switch -Wformat -Wchar-subscripts -Wparentheses -Wpointer-arith -Wno-multich
ar -Werror -O -fno-common -msoft-float -MD -Wsign-compare -Wno-cast-qual -Wn
o-error -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNVRM -DNV_MAJOR_VERSIO
N=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL=9631 -UDEBUG -U_DEBUG -DNDEBUG -DNV
_SIGNAL_STRUCT_RLIM -DNV_MULTIPLE_BRIDGE_AGPGART_PRESENT -DNV_PCI_GET_CLASS_
PRESENT -DNV_SYSCTL_MAX_MAP_COUNT_PRESENT -DNV_PM_MESSAGE_T_PRESENT -DNV_IRQ
_HANDLER_WITH_PTREGS_PRESENT -DNV_PCI_CHOOSE_STATE_PRESENT -DNV_VM_INSERT_PA
GE_PRESENT -DNV_OLD_MM_KGDB_BREAKPOINT_PRESENT -DNV_REMAP_PFN_RANGE_PRESENT
-DNV_CHANGE_PAGE_ATTR_PRESENT -DNV_VMAP_4_PRESENT -DMODULE -D"KBUILD_STR(s)=
#s" -D"KBUILD_BASENAME=KBUILD_STR(nv)" -D"KBUILD_MODNAME=KBUILD_STR(nvidia)
" -c -o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv.o /tmp
/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv.c
In file included from include/linux/list.h:8,
from include/linux/lockdep.h:12,
from include/linux/spinlock_types.h:12,
from include/linux/spinlock.h:78,
from include/linux/capability.h:45,
from include/linux/sched.h:44,
from include/linux/module.h:9,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:51,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv.c:14:
include/linux/prefetch.h: In function ‘prefetch_range’:
include/linux/prefetch.h:62: attention : pointer of type ‘void *’ used i
n arithmetic
In file included from include/linux/dmapool.h:14,
from include/linux/pci.h:564,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:77,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv.c:14:
include/asm/io.h: In function ‘check_signature’:
include/asm/io.h:245: attention : type d'argument erroné pour un incrément
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.nv-
vm.o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/include -D__
KERNEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/include -inc
lude include/linux/autoconf.h -I/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-
pkg1/usr/src/nv -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict
-aliasing -fno-common -Os -pipe -msoft-float -mpreferred-stack-boundary=2 -m
arch=i586 -mregparm=3 -ffreestanding -I/usr/src/linux-2.6.18-gentoo-r4/inclu
de/asm-i386/mach-default -Iinclude/asm-i386/mach-default -fomit-frame-pointe
r -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -I/t
mp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv -Wall -Wimplicit -W
return-type -Wswitch -Wformat -Wchar-subscripts -Wparentheses -Wpointer-arit
h -Wno-multichar -Werror -O -fno-common -msoft-float -MD -Wsign-compare -Wno
-cast-qual -Wno-error -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNVRM -DN
V_MAJOR_VER
SION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL=9631 -UDEBUG -U_DEBUG -DNDEBUG -
DNV_SIGNAL_STRUCT_RLIM -DNV_MULTIPLE_BRIDGE_AGPGART_PRESENT -DNV_PCI_GET_CLA
SS_PRESENT -DNV_SYSCTL_MAX_MAP_COUNT_PRESENT -DNV_PM_MESSAGE_T_PRESENT -DNV_
IRQ_HANDLER_WITH_PTREGS_PRESENT -DNV_PCI_CHOOSE_STATE_PRESENT -DNV_VM_INSERT
_PAGE_PRESENT -DNV_OLD_MM_KGDB_BREAKPOINT_PRESENT -DNV_REMAP_PFN_RANGE_PRESE
NT -DNV_CHANGE_PAGE_ATTR_PRESENT -DNV_VMAP_4_PRESENT -DMODULE -D"KBUILD_STR(
s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(nv_vm)" -D"KBUILD_MODNAME=KBUILD_STR(n
vidia)" -c -o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv-
vm.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv-vm.c
In file included from include/linux/list.h:8,
from include/linux/lockdep.h:12,
from include/linux/spinlock_types.h:12,
from include/linux/spinlock.h:78,
from include/linux/capability.h:45,
from include/linux/sched.h:44,
from include/linux/module.h:9,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:51,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-vm.c:14:
include/linux/prefetch.h: In function ‘prefetch_range’:
include/linux/prefetch.h:62: attention : pointer of type ‘void *’ used i
n arithmetic
In file included from include/linux/dmapool.h:14,
from include/linux/pci.h:564,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:77,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-vm.c:14:
include/asm/io.h: In function ‘check_signature’:
include/asm/io.h:245: attention : type d'argument erroné pour un incrément
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.os-
agp.o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/include -D_
_KERNEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/include -in
clude include/linux/autoconf.h -
I/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv -Wall -Wundef -W
strict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Os -pipe
-msoft-float -mpreferred-stack-boundary=2 -march=i586 -mregparm=3 -ffreestan
ding -I/usr/src/linux-2.6.18-gentoo-r4/include/asm-i386/mach-default -Iinclu
de/asm-i386/mach-default -fomit-frame-pointer -fno-stack-protector -Wdeclara
tion-after-statement -Wno-pointer-sign -I/tmp/selfgz13276/NVIDIA-Linux-x86-
1.0-9631-pkg1/usr/src/nv -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -W
char-subscripts -Wparentheses -Wpointer-arith -Wno-multichar -Werror -O -fno
-common -msoft-float -MD -Wsign-compare -Wno-cast-qual -Wno-error -D_LOOSE_K
ERNEL_NAMES -D__KERNEL__ -DMODULE -DNVRM -DNV_MAJOR_VERSION=1 -DNV_MINOR_VER
SION=0 -DNV_PATCHLEVEL=9631 -UDEBUG -U_DEBUG -DNDEBUG -DNV_SIGNAL_STRUCT_RLI
M -DNV_MULTIPLE_BRIDGE_AGPGART_PRESENT -DNV_PCI_GET_CLASS_PRESENT -DNV_SYSCT
L_MAX_MAP_COUNT_PRESENT -DNV_PM_MESSAGE_T_PRESENT -DNV_IRQ_HANDLER_WITH_PTRE
GS_PRESENT -DNV_PCI_CHOOSE_STATE_PRE
SENT -DNV_VM_INSERT_PAGE_PRESENT -DNV_OLD_MM_KGDB_BREAKPOINT_PRESENT -DNV_RE
MAP_PFN_RANGE_PRESENT -DNV_CHANGE_PAGE_ATTR_PRESENT -DNV_VMAP_4_PRESENT -DMO
DULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(os_agp)" -D"KBUILD_
MODNAME=KBUILD_STR(nvidia)" -c -o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631
-pkg1/usr/src/nv/os-agp.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/us
r/src/nv/os-agp.c
In file included from include/linux/list.h:8,
from include/linux/lockdep.h:12,
from include/linux/spinlock_types.h:12,
from include/linux/spinlock.h:78,
from include/linux/capability.h:45,
from include/linux/sched.h:44,
from include/linux/module.h:9,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:51,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/os-agp.c:24:
include/linux/prefetch.h: In function ‘prefetch_range’:
include/linux/prefetch.h:62: attention : pointer of type ‘void *’ used i
n arithmetic
In file included from include/linux/dmapool.h:14,
from include/linux/pci.h:564,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:77,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/os-agp.c:24:
include/asm/io.h: In function ‘check_signature’:
include/asm/io.h:245: attention : type d'argument erroné pour un incrément
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.os-
interface.o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/inclu
de -D__KERNEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/inclu
de -include include/linux/autoconf.h -I/tmp/selfgz13276/NVIDIA-Linux-x86-1.
0-9631-pkg1/usr/src/nv -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno
-strict-aliasing -fno-common -Os -pipe -msoft-float -mpreferred-stack-bounda
ry=2 -march=i586 -mregparm=3 -ffreestanding -I/usr/src/linux-2.6.18-gentoo-r
4/include
/asm-i386/mach-default -Iinclude/asm-i386/mach-default -fomit-frame-pointer
-fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -I/tmp
/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv -Wall -Wimplicit -Wre
turn-type -Wswitch -Wformat -Wchar-subscripts -Wparentheses -Wpointer-arith
-Wno-multichar -Werror -O -fno-common -msoft-float -MD -Wsign-compare -Wno-c
ast-qual -Wno-error -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNVRM -DNV_
MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL=9631 -UDEBUG -U_DEBUG -
DNDEBUG -DNV_SIGNAL_STRUCT_RLIM -DNV_MULTIPLE_BRIDGE_AGPGART_PRESENT -DNV_PC
I_GET_CLASS_PRESENT -DNV_SYSCTL_MAX_MAP_COUNT_PRESENT -DNV_PM_MESSAGE_T_PRES
ENT -DNV_IRQ_HANDLER_WITH_PTREGS_PRESENT -DNV_PCI_CHOOSE_STATE_PRESENT -DNV_
VM_INSERT_PAGE_PRESENT -DNV_OLD_MM_KGDB_BREAKPOINT_PRESENT -DNV_REMAP_PFN_RA
NGE_PRESENT -DNV_CHANGE_PAGE_ATTR_PRESENT -DNV_VMAP_4_PRESENT -DMODULE -D"KB
UILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(os_interface)" -D"KBUILD_MODN
AME=KBUILD_STR(nvidia)" -c -o /tmp/s
elfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-interface.o /tmp/sel
fgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-interface.c
In file included from include/linux/list.h:8,
from include/linux/lockdep.h:12,
from include/linux/spinlock_types.h:12,
from include/linux/spinlock.h:78,
from include/linux/capability.h:45,
from include/linux/sched.h:44,
from include/linux/module.h:9,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:51,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/os-interface.c:26:
include/linux/prefetch.h: In function ‘prefetch_range’:
include/linux/prefetch.h:62: attention : pointer of type ‘void *’ used i
n arithmetic
In file included from include/linux/dmapool.h:14,
from include/linux/pci.h:564,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:77,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/os-interface.c:26:
include/asm/io.h: In function ‘check_signature’:
include/asm/io.h:245: attention : type d'argument erroné pour un incrément
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.os-
registry.o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/includ
e -D__KERNEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/includ
e -include include/linux/autoconf.h -I/tmp/selfgz13276/NVIDIA-Linux-x86-1.0
-9631-pkg1/usr/src/nv -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-
strict-aliasing -fno-common -Os -pipe -msoft-float -mpreferred-stack-boundar
y=2 -march=i586 -mregparm=3 -ffreestanding -I/usr/src/linux-2.6.18-gentoo-r4
/include/asm-i386/mach-default -Iinclude/asm-i386/mach-default -fomit-frame-
pointer -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign
-I/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv -Wall -Wimplic
it -Wreturn-type -Wswitc
h -Wformat -Wchar-subscripts -Wparentheses -Wpointer-arith -Wno-multichar -W
error -O -fno-common -msoft-float -MD -Wsign-compare -Wno-cast-qual -Wno-err
or -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNVRM -DNV_MAJOR_VERSION=1 -
DNV_MINOR_VERSION=0 -DNV_PATCHLEVEL=9631 -UDEBUG -U_DEBUG -DNDEBUG -DNV_SIGN
AL_STRUCT_RLIM -DNV_MULTIPLE_BRIDGE_AGPGART_PRESENT -DNV_PCI_GET_CLASS_PRESE
NT -DNV_SYSCTL_MAX_MAP_COUNT_PRESENT -DNV_PM_MESSAGE_T_PRESENT -DNV_IRQ_HAND
LER_WITH_PTREGS_PRESENT -DNV_PCI_CHOOSE_STATE_PRESENT -DNV_VM_INSERT_PAGE_PR
ESENT -DNV_OLD_MM_KGDB_BREAKPOINT_PRESENT -DNV_REMAP_PFN_RANGE_PRESENT -DNV_
CHANGE_PAGE_ATTR_PRESENT -DNV_VMAP_4_PRESENT -DMODULE -D"KBUILD_STR(s)=#s" -
D"KBUILD_BASENAME=KBUILD_STR(os_registry)" -D"KBUILD_MODNAME=KBUILD_STR(nvi
dia)" -c -o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-re
gistry.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-regis
try.c
In file included from include/linux/list.h:8,
from include/linux/lockdep.h:12,
from include/linux/spinlock_types.h:12,
from include/linux/spinlock.h:78,
from include/linux/capability.h:45,
from include/linux/sched.h:44,
from include/linux/module.h:9,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:51,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/os-registry.c:14:
include/linux/prefetch.h: In function ‘prefetch_range’:
include/linux/prefetch.h:62: attention : pointer of type ‘void *’ used i
n arithmetic
In file included from include/linux/dmapool.h:14,
from include/linux/pci.h:564,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:77,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/os-registry.c:14:
include/asm/io.h: In function ‘check_signature’:
include/asm/io.h:245: attention : type d'argument erroné pour un incrément
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.nv-
i2c.o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/include -D_
_KERNEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/include -in
clude include/linux/autoconf.h -I/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631
-pkg1/usr/src/nv -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-stric
t-aliasing -fno-common -Os -pipe -msoft-float -mpreferred-stack-boundary=2 -
march=i586 -mregparm=3 -ffreestanding -I/usr/src/linux-2.6.18-gentoo-r4/incl
ude/asm-i386/mach-default -Iinclude/asm-i386/mach-default -fomit-frame-point
er -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -I/
tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv -Wall -Wimplicit -
Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wparentheses -Wpointer-ari
th -Wno-multichar -Werror -O -fno-common -msoft-float -MD -Wsign-compare -Wn
o-cast-qual -Wno-error -D_LOOSE_KERNEL_NAMES -D__KERNEL__ -DMODULE -DNVRM -D
NV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PA
TCHLEVEL=9631 -UDEBUG -U_DEBUG -DNDEBUG -DNV_SIGNAL_STRUCT_RLIM -DNV_MULTIPL
E_BRIDGE_AGPGART_PRESENT -DNV_PCI_GET_CLASS_PRESENT -DNV_SYSCTL_MAX_MAP_COUN
T_PRESENT -DNV_PM_MESSAGE_T_PRESENT -DNV_IRQ_HANDLER_WITH_PTREGS_PRESENT -DN
V_PCI_CHOOSE_STATE_PRESENT -DNV_VM_INSERT_PAGE_PRESENT -DNV_OLD_MM_KGDB_BREA
KPOINT_PRESENT -DNV_REMAP_PFN_RANGE_PRESENT -DNV_CHANGE_PAGE_ATTR_PRESENT -D
NV_VMAP_4_PRESENT -DMODULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_ST
R(nv_i2c)" -D"KBUILD_MODNAME=KBUILD_STR(nvidia)" -c -o /tmp/selfgz13276/NVI
DIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv-i2c.o /tmp/selfgz13276/NVIDIA-Linu
x-x86-1.0-9631-pkg1/usr/src/nv/nv-i2c.c
In file included from include/linux/list.h:8,
from include/linux/lockdep.h:12,
from include/linux/spinlock_types.h:12,
from include/linux/spinlock.h:78,
from include/linux/capability.h:45,
from include/linux/sched.h:44,
from include/linux/module.h:9,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:51,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-i2c.c:8:
include/linux/prefetch.h: In function ‘prefetch_range’:
include/linux/prefetch.h:62: attention : pointer of type ‘void *’ used i
n arithmetic
In file included from include/linux/dmapool.h:14,
from include/linux/pci.h:564,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-linux.h:77,
from /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-i2c.c:8:
include/asm/io.h: In function ‘check_signature’:
include/asm/io.h:245: attention : type d'argument erroné pour un incrément
ld -m elf_i386 -m elf_i386 -r -o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-96
31-pkg1/usr/src/nv/nvidia.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/
usr/src/nv/nv-kernel.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/s
rc/nv/nv.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/sr
c/nv/nv-vm.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-a
gp.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-interface
.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/os-registry.o
/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nv-i2c.o
Building modules, stage 2.
make -rR -f /usr/src/linux-2.6.18-gentoo-r4/scripts/Makefile.modpost
scripts/mod/modpost -i /usr/src/linux-2.6.18-gentoo-r4/Module.symvers -I
/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/Module.symvers -o
/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/Module.symvers /t
mp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nvidia.o
cc -Wp,-MD,/tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/.nvi
dia.mod.o.d -nostdinc -isystem /usr/lib/gcc/i586-pc-linux-gnu/4.1.1/include
-D__KERNEL__ -Iinclude -Iinclude2 -I/usr/src/linux-2.6.18-gentoo-r4/include
-include include/linux/autoconf.h -I/usr/src/linux-2.6.18-gentoo-r4/ -I -Wal
l -Wundef -Wstrict-prototypes
-Wno-trigraphs -fno-strict-aliasing -fno-common -Os -pipe -msoft-float -mpr
eferred-stack-boundary=2 -march=i586 -mregparm=3 -ffreestanding -I/usr/src/l
inux-2.6.18-gentoo-r4/include/asm-i386/mach-default -Iinclude/asm-i386/mach-
default -fomit-frame-pointer -fno-stack-protector -Wdeclaration-after-statem
ent -Wno-pointer-sign -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(nv
idia.mod)" -D"KBUILD_MODNAME=KBUILD_STR(nvidia)" -DMODULE -c -o /tmp/selfgz
13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nvidia.mod.o /tmp/selfgz1327
6/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/nv/nvidia.mod.c
ld -m elf_i386 -m elf_i386 -r -o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-963
1-pkg1/usr/src/nv/nvidia.ko /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/
usr/src/nv/nvidia.o /tmp/selfgz13276/NVIDIA-Linux-x86-1.0-9631-pkg1/usr/src/
nv/nvidia.mod.o
NVIDIA: left KBUILD.
-> done.
-> Kernel module compilation complete.
ERROR: Unable to load the kernel module 'nvidia.ko'. This happens most
frequently when this kernel module was built against the wrong or
improperly configured kernel sources, with a version of gcc that differs
from the one used to build the target kernel, or if a driver such as
rivafb/nvidiafb is present and prevents the NVIDIA kernel module from
obtaining ownership of the NVIDIA graphics device(s).

Please see the log entries 'Kernel module load error' and 'Kernel
messages' at the end of the file '/var/log/nvidia-installer.log' for
more information.
-> Kernel module load error: insmod: error inserting './usr/src/nv/nvidia.ko':
-1 File exists
-> Kernel messages:
[ 82.778749] PrefPort:A RlmtMode:Check Link State
[ 85.052607] agpgart: Detected NVIDIA nForce2 chipset
[ 85.067230] agpgart: AGP aperture is 256M @ 0xc0000000
[ 86.749141] input: PC Speaker as /class/input/input3
[ 97.626267] EXT3 FS on dm-0, internal journal
[ 98.191176] kjournald starting. Commit interval 5 seconds
[ 98.191582] EXT3 FS on sda2, internal journal
[ 98.191587] EXT3-fs: mounted filesystem with ordered data mode.
[ 98.261793] Adding 1048568k swap on /dev/VolGroup00/LogVol01.
Priority:-1 extents:1 across:1048568k
[ 116.842399] fbsplash: console 1 using theme 'sabayon'
[ 116.863583] fbsplash: switched splash state to 'on' on console 1
[ 116.887791] fbsplash: console 2 using theme 'sabayon'
[ 116.891671] fbsplash: switched splash state to 'on' on console 2
[ 116.901382] fbsplash: console 3 using theme 'sabayon'
[ 116.905274] fbsplash: switched splash state to 'on' on console 3
[ 116.910570] fbsplash: console 4 using theme 'sabayon'
[ 116.914454] fbsplash: switched splash state to 'on' on console 4
[ 116.919069] fbsplash: console 5 using theme 'sabayon'
[ 116.922935] fbsplash: switched splash state to 'on' on console 5
[ 116.926036] fbsplash: console 11 using theme 'sabayon'
[ 116.929922] fbsplash: switched splash state to 'on' on console 11
[ 119.212818] agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
[ 119.212967] agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode
[ 119.213061] agpgart: Putting AGP V2 device at 0000:03:00.0 into 4x mode
[ 439.312652] sr1: CDROM not ready. Make sure there is a disc in the
drive.
ERROR: Installation has failed. Please see the file
'/var/log/nvidia-installer.log' for details. You may find suggestions
on fixing installation problems in the README available on the Linux
driver download page at http://www.nvidia.com.

Si qq1 comprend qqchose... Merci :D
Lancelot
Baby Hen
 
Posts: 8
Joined: Sun Dec 10, 2006 19:44

Postby turquoise » Wed Dec 13, 2006 2:45

On dirait bien que le pilote ne s'est pas installé...

Vérifie s'il est installé en tapant la commande suivante dans une console :

Code: Select all
emerge -s nvidia-drivers


Autre possibilité, les sources du noyau sont introuvables pendant l'installation. Si tu reçois le message « Unable to calculate Linux Kernel version » pendant l'installation, tape les commandes suivantes en mode console avant de refaire un emerge nvidia-drivers :

Code: Select all
emerge =sys-kernel/gentoo-sources-2.6.18-r4
cd /usr/src/linux
zcat /proc/config.gz > .config
make prepare modules_prepare
Ma philosophie d'apprentissage : essayer, et si ça casse, essayer de réparer.
My learning philosophy: try it, and if it breaks, try to fix it.
Image
turquoise
Old Dear Hen
 
Posts: 719
Joined: Wed Nov 15, 2006 1:14
Location: Abitibi-Témiscamingue!

Postby Lancelot » Sat Dec 16, 2006 9:12

salut,

J'ai enfin réussi installer les nouveaux pilotes nvidia et ça marche (berryl et cie)
Ce qui est bizarre, c'est quand je fais un emerge -s nvidia-drivers, il me parle de la version 9629 alors que j'ai mis la 9631 ?!
Mais bon ça marche, je suis :lol:

Merci !
Lancelot
Baby Hen
 
Posts: 8
Joined: Sun Dec 10, 2006 19:44

Postby turquoise » Sat Dec 16, 2006 18:18

Ça arrive parfois quand ça fait un certain temps que portage n'a pas été synchronisé avec le serveur. Ta recherche se fait dans la copie locale de portage tandis que lorsque tu fais emerge nvidia-drivers, portage télécharge la dernière version disponible sur le serveur, d'où le décalage. Un emerge --sync devrait régler ça en moins de deux!
Ma philosophie d'apprentissage : essayer, et si ça casse, essayer de réparer.
My learning philosophy: try it, and if it breaks, try to fix it.
Image
turquoise
Old Dear Hen
 
Posts: 719
Joined: Wed Nov 15, 2006 1:14
Location: Abitibi-Témiscamingue!


Return to French

Who is online

Users browsing this forum: No registered users and 1 guest

cron