You are not logged in.
Hmm ... ok used your PKGBUILD for building the ati-drivers-modules. Compiled without errors but had to use nodeps, as your PKGBUILD requires the package kernel26>=2.6.7 but i your compiled it my self and there is no kernel26-package installed. Then i removed ati-drivers package with packman and added your tur to pacman.conf. Afterwards i installed the ati-drivers-modulespackage (agein used nodeps cause of kernel26 dependencies) an installed ati-drivers ofer your TUR, but after a reboot fglrxinfo says:
display: :0.0 screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.4 Mesa 5.0.2)
Well agp-gart and fglrx module is loaded. Whats wrong?
EDIT: I'm using the same old xorg.conf as with drivers 3.9.0.
CU ActionNews
[URL=http://www.nethands.de/athlon/show.php3?user=actionnews]My System[/URL] - one click ahead!
Offline
Hey link, could you do me (us) a favor and make <kernel>-scsi package too, or change dependencies?
Pretty please?
DIY: Doom-It-Yourself
Offline
Hmm ... ok used your PKGBUILD for building the ati-drivers-modules. Compiled without errors but had to use nodeps, as your PKGBUILD requires the package kernel26>=2.6.7 but i your compiled it my self and there is no kernel26-package installed. Then i removed ati-drivers package with packman and added your tur to pacman.conf. Afterwards i installed the ati-drivers-modulespackage (agein used nodeps cause of kernel26 dependencies) an installed ati-drivers ofer your TUR, but after a reboot fglrxinfo says:
display: :0.0 screen: 0 OpenGL vendor string: Mesa project: www.mesa3d.org OpenGL renderer string: Mesa GLX Indirect OpenGL version string: 1.2 (1.4 Mesa 5.0.2)
Well agp-gart and fglrx module is loaded. Whats wrong?
EDIT: I'm using the same old xorg.conf as with drivers 3.9.0.CU ActionNews
Have applied the patch?
Offline
Yes Patch should be included. The both PKGBUILDs look like this:
ati-drivers-module:
# Maintainer: Link Dupont <link@subpop.net>
# Contributor: Link Dupont <link@subpop.net>
kernel=`uname -r`
kernelpkg=2.6.7
pkgname=ati-drivers-module-$kernel
pkgver=3.11.1
pkgrel=1
pkgdesc="ATI drivers kernel module"
url="http://www.ati.com"
license="ATI"
provides=('ati-drivers-module')
depends=("kernel26=$kernelpkg")
makedepends=('rpmunpack')
install=ati-drivers.install
source=("http://www2.ati.com/drivers/linux/fglrx-4.3.0-$pkgver.i386.rpm"
'arch-xorg-fix-includes.patch')
md5sums=('59a9b2446abb5d1adac8bafd7d11e083' '47fa4a6761ad5c957d9b63b958c1bd5b')
build() {
cd $startdir/src
rpmunpack < $startdir/src/fglrx-4.3.0-$pkgver.i386.rpm | gzip -d | cpio -idmuv
# Correct the permissions
chmod 644 `find $startdir/src -type f`
chmod 755 `find $startdir/src -type d`
# Apply patches
cd $startdir/src/lib/modules/fglrx/build_mod
patch -p4 < $startdir/src/arch-xorg-fix-includes.patch
# Fix some stupid permission problems
chmod 644 `find $startdir/src/lib/modules/fglrx/build_mod/ -type f`
chmod 755 $startdir/src/lib/modules/fglrx/build_mod/2.6.x
# Compile the DRI kernel module
cd $startdir/src/lib/modules/fglrx/build_mod
cp 2.6.x/Makefile .
export _POSIX2_VERSION="199209"
make -C /usr/src/linux-$kernel SUBDIRS="`pwd`" modules || return 1
# Install the kernel module
install -m 644 -D $startdir/src/lib/modules/fglrx/build_mod/fglrx.ko
$startdir/pkg/lib/modules/$kernel/video/fglrx.ko || return 1
}
ati-drivers:
# Maintainer: Link Dupont <link@subpop.net>
# Contributor: Link Dupont <link@subpop.net>
kernel=`uname -r`
pkgname=ati-drivers
pkgver=3.11.1
pkgrel=1
pkgdesc="ATI precompiled drivers for r350, r300, r250 and r200 chipsets"
url="http://www.ati.com"
license="ATI"
depends=('x-server' 'ati-drivers-module')
makedepends=('rpmunpack')
install=ati-drivers.install
source=("http://www2.ati.com/drivers/linux/fglrx-4.3.0-$pkgver.i386.rpm"
'ati-drivers.sh')
md5sums=('59a9b2446abb5d1adac8bafd7d11e083' 'd9e62017d509a2d22d60381722a085a0')
build() {
cd $startdir/src
rpmunpack < $startdir/src/fglrx-4.3.0-$pkgver.i386.rpm | gzip -d | cpio -idmuv
# Correct the permissions
chmod 644 `find $startdir/src -type f`
chmod 755 `find $startdir/src -type d`
# Fix some stupid permission problems
chmod 644 `find $startdir/src/lib/modules/fglrx/build_mod/ -type f`
chmod 755 $startdir/src/lib/modules/fglrx/build_mod/2.6.x
rm -rf $startdir/src/usr/X11R6/bin/*.bz2
# Install the OpenGL libraries
install -m 755 -D $startdir/src/usr/X11R6/lib/libGL.so.1.2
$startdir/pkg/usr/X11R6/lib/libGL.so.1.2 || return 1
# We don't symlink because x-server provides the correct symlinks already
# Install the X and DRI drivers
install -m 644 -D $startdir/src/usr/X11R6/lib/modules/drivers/fglrx_drv.o
$startdir/pkg/usr/X11R6/lib/modules/drivers/fglrx_drv.o || return 1
install -m 755 -D $startdir/src/usr/X11R6/lib/modules/dri/fglrx_dri.so
$startdir/pkg/usr/X11R6/lib/modules/dri/fglrx_dri.so || return 1
# Install some apps
install -m 755 -D $startdir/src/ati-drivers.sh
$startdir/pkg/etc/profile.d/ati-drivers.sh || return 1
install -d $startdir/pkg/opt/ati/bin
install -m 755 -D $startdir/src/usr/X11R6/bin/*
$startdir/pkg/opt/ati/bin/ || return 1
# Remove stuff that we've put elsewhere
rm -f $startdir/src/usr/X11R6/lib/modules/drivers/fglrx_drv.o
$startdir/src/usr/X11R6/lib/modules/dri/fglrx_dri.so
$startdir/src/usr/X11R6/lib/libGL.so.1.2
$startdir/src/usr/X11R6/bin/*
rm -rf $startdir/src/usr/{src,share} $startdir/src/usr/X11R6/bin
cp -R $startdir/src/usr $startdir/pkg
}
CU ActionNews
PS: Installed old 3.9.0 drivers again and it works again.
[URL=http://www.nethands.de/athlon/show.php3?user=actionnews]My System[/URL] - one click ahead!
Offline
I think I found a major flaw in my current package. I believe the kernel26mm package contains the kernel26 module
I'll fix it this weekend.
Offline
Offline
[71] root:/var/abs/local/ati # makepkg -c
: command not found
: command not found:
'/PKGBUILD: line 20: syntax error near unexpected token `{
'/PKGBUILD: line 20: `build() {
(Sun Aug 29 21:50:45 EDT 2004)module-2.6.8.1
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
.i386.rpmownloading fglrx-4.3.0-3.11.1
--21:50:45-- http://www2.ati.com/drivers/linux/fglrx-4.3.0-3.11.1%0D.i386.rpm%0D
=> `fglrx-4.3.0-3.11.1%0D.i386.rpm%0D'
Resolving www2.ati.com... 65.161.97.168, 65.161.97.169
Connecting to www2.ati.com[65.161.97.168]:80... connected.
HTTP request sent, awaiting response... 404 Not Found
21:50:46 ERROR 404: Not Found.
.i386.rpm: Failed to download fglrx-4.3.0-3.11.1
==> Aborting...
anyone know what might be wrong? i'm using ActionNews ati-drivers-module PKGBUILD, kernel 2.6.8.1. thx
Offline
Well for some reason the source download URL is wrong. Are you using the PKGBUILDs from my TUR?
Offline
[71] root:/var/abs/local/ati # makepkg -c : command not found : command not found: '/PKGBUILD: line 20: syntax error near unexpected token `{ '/PKGBUILD: line 20: `build() { (Sun Aug 29 21:50:45 EDT 2004)module-2.6.8.1 ==> Checking Runtime Dependencies... ==> Checking Buildtime Dependencies... ==> Retrieving Sources... .i386.rpmownloading fglrx-4.3.0-3.11.1 --21:50:45-- http://www2.ati.com/drivers/linux/fglrx-4.3.0-3.11.1%0D.i386.rpm%0D => `fglrx-4.3.0-3.11.1%0D.i386.rpm%0D' Resolving www2.ati.com... 65.161.97.168, 65.161.97.169 Connecting to www2.ati.com[65.161.97.168]:80... connected. HTTP request sent, awaiting response... 404 Not Found 21:50:46 ERROR 404: Not Found. .i386.rpm: Failed to download fglrx-4.3.0-3.11.1 ==> Aborting...
anyone know what might be wrong? i'm using ActionNews ati-drivers-module PKGBUILD, kernel 2.6.8.1. thx
Please note that i used Links PKGBUILD but changed the kernelver-string from 2.6.8.1 to 2.6.7 to fit my Kernel.
CU ActionNews
PS: Perhaps the ati-server was down??
[URL=http://www.nethands.de/athlon/show.php3?user=actionnews]My System[/URL] - one click ahead!
Offline
check the link for the rpm in your pkgbuild.. somehow when you copy / pasted it or what have you you managed to get %0D in the link.
http://www2.ati.com/drivers/linux/fglrx … 1.i386.rpm
should be your link.
Offline
okay, it's working now after starting fresh from my linux box. i was copying the files over ssh from windows last night, and i guess it was adding some escape characters that weren't showing up in putty/vim.
so now that the packages are installed, what's next? i can't seem to modprobe the driver. :?:
~~~~~~~~
i -am- getting some weird error during ati-mod makepkg:
*** Warning: "page_address" [/var/abs/local/ati-mod/src/lib/modules/fglrx/build_mod/fglrx.ko] undefined!
*** Warning: "pm_unregister_all" [/var/abs/local/ati-mod/src/lib/modules/fglrx/build_mod/fglrx.ko] undefined!
*** Warning: "pm_register" [/var/abs/local/ati-mod/src/lib/modules/fglrx/build_mod/fglrx.ko] undefined!
Offline
okay, it's working now after starting fresh from my linux box. i was copying the files over ssh from windows last night, and i guess it was adding some escape characters that weren't showing up in putty/vim.
so now that the packages are installed, what's next? i can't seem to modprobe the driver. :?:
~~~~~~~~
i -am- getting some weird error during ati-mod makepkg:*** Warning: "page_address" [/var/abs/local/ati-mod/src/lib/modules/fglrx/build_mod/fglrx.ko] undefined! *** Warning: "pm_unregister_all" [/var/abs/local/ati-mod/src/lib/modules/fglrx/build_mod/fglrx.ko] undefined! *** Warning: "pm_register" [/var/abs/local/ati-mod/src/lib/modules/fglrx/build_mod/fglrx.ko] undefined!
What kernel are your running?
Offline
2.6.8.1
Offline
A little off topic, but does anybody know how i get this %&$§%&-Xvideo running with ATi drivers? Every time i try to use ATi-xv for my tv card or Xine it frezzes my system completely. Horrable. I fear next time i have to buy a Nvidia card :?. (I still hope that PowerVR gets its PowerVR Series 5 into markets with good linux drivers)
CU ActionNews
[URL=http://www.nethands.de/athlon/show.php3?user=actionnews]My System[/URL] - one click ahead!
Offline
so far, the 3.9.0's have been more stable for me. These seem to crash and burn when closing X or suspending.
Offline
Does this sound about right for a 9700pro, Barton 3000, and 512mb of ddr333?
[james@myhost ~]$ glxgears
17477 frames in 5.0 seconds = 3495.400 FPS
19389 frames in 5.0 seconds = 3877.800 FPS
19380 frames in 5.0 seconds = 3876.000 FPS
19372 frames in 5.0 seconds = 3874.400 FPS
19485 frames in 5.0 seconds = 3897.000 FPS
19693 frames in 5.0 seconds = 3938.600 FPS
19688 frames in 5.0 seconds = 3937.600 FPS
19687 frames in 5.0 seconds = 3937.400 FPS
Broken pipe
[james@myhost ~]$ fgl_glxgears
2992 frames in 5.0 seconds = 598.400 FPS
3743 frames in 5.0 seconds = 748.600 FPS
3951 frames in 5.0 seconds = 790.200 FPS
3943 frames in 5.0 seconds = 788.600 FPS
3957 frames in 5.0 seconds = 791.400 FPS
3944 frames in 5.0 seconds = 788.800 FPS
3929 frames in 5.0 seconds = 785.800 FPS
3951 frames in 5.0 seconds = 790.200 FPS
3949 frames in 5.0 seconds = 789.800 FPS
Broken pipe
I'll be doing some updating to the wiki pretty soon... i've taken some notes.... this took 3 hours i didn't want to spend... hehehe
Offline
Went up to 3,11 drivers, and now xorg says the "fglrx" module doesn't exist (however, lsmod begs to differ). All the modules load properly at boot per the original instructions and worked fine with 3.9.0. One thing I noticed was there is not a /lib/modules/fglrx directory when using the premade drivers from link's repository. I am using the conifg posted here (latest one), and have a Radeon 9600 card. Thanks for any help in advance,
Jay
Log file:
_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/intel2500:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: Linux 2.6.7 i686 [ELF]
Current Operating System: Linux intel2500 2.6.8.1 #2 SMP Thu Sep 2 11:44:05 PDT 2004 i686
Build Date: 10 July 2004
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 2 22:03:28 2004
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Server"
(**) |-->Screen "Screen" (0)
(**) | |-->Monitor "Monitor"
(**) | |-->Device "fglrx"
(**) |-->Input Device "Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Mouse"
(WW) No FontPath specified. Using compiled-in default.
(==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "BlankTime" "10"
(**) Option "StandbyTime" "20"
(**) Option "SuspendTime" "30"
(**) Option "OffTime" "60"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(--) using VT number 7
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1043,8088 rev 11 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 11 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1043,8089 rev 01 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1043,8089 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1043,8089 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1043,8089 rev 01 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 81 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 01 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1043,8089 rev 01 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1043,8089 rev 01 class 0c,05,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4150 card 1002,2066 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,4170 card 1002,2067 rev 00 class 03,80,00 hdr 00
(II) PCI: 02:0b:0: chip 1317,0985 card 1317,0574 rev 11 class 02,00,00 hdr 00
(II) PCI: 02:0d:0: chip 1102,0002 card 1102,8027 rev 08 class 04,01,00 hdr 80
(II) PCI: 02:0d:1: chip 1102,7002 card 1102,0020 rev 08 class 09,80,00 hdr 80
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[b]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xae800000 - 0xafefffff (0x1700000) MX[b]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xb0000000 - 0xdfffffff (0x30000000) MX[b]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
[1] -1 0 0x0000a400 - 0x0000a4ff (0x100) IX[b]
[2] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
[3] -1 0 0x0000ac00 - 0x0000acff (0x100) IX[b]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xad800000 - 0xadffffff (0x800000) MX[b]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xaff00000 - 0xafffffff (0x100000) MX[b]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc RV350 AP [Radeon 9600] rev 0, Mem @ 0xd0000000/28, 0xaf000000/16, I/O @ 0xd800/8, BIOS @ 0xcffe0000/17
(--) PCI: (1:0:1) ATI Technologies Inc RV350 AP [Radeon 9600] (Secondary) rev 0, Mem @ 0xb0000000/28, 0xae800000/16
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[b](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xefffffff to 0xdfffffff
(II) Active PCI resource ranges:
[0] -1 0 0xad800000 - 0xad8003ff (0x400) MX[b]
[1] -1 0 0x40000000 - 0x400003ff (0x400) MX[b]
[2] -1 0 0xae000000 - 0xae0003ff (0x400) MX[b]
[3] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
[4] -1 0 0xcffe0000 - 0xcfffffff (0x20000) MX[b](B)
[5] -1 0 0xaf000000 - 0xaf00ffff (0x10000) MX[b](B)
[6] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
[7] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
[8] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
[9] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
[10] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
[11] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
[12] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
[13] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
[14] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b](B)
(II) Inactive PCI resource ranges:
[0] -1 0 0xae800000 - 0xae80ffff (0x10000) MX[b](B)
[1] -1 0 0xb0000000 - 0xbfffffff (0x10000000) MX[b](B)
[2] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xad800000 - 0xad8003ff (0x400) MX[b]
[1] -1 0 0x40000000 - 0x400003ff (0x400) MX[b]
[2] -1 0 0xae000000 - 0xae0003ff (0x400) MX[b]
[3] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
[4] -1 0 0xcffe0000 - 0xcfffffff (0x20000) MX[b](B)
[5] -1 0 0xaf000000 - 0xaf00ffff (0x10000) MX[b](B)
[6] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
[7] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
[8] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
[9] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
[10] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
[11] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
[12] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
[13] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
[14] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b](B)
(II) Inactive PCI resource ranges after removing overlaps:
[0] -1 0 0xae800000 - 0xae80ffff (0x10000) MX[b](B)
[1] -1 0 0xb0000000 - 0xbfffffff (0x10000000) MX[b](B)
[2] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[b](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[b](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
[5] -1 0 0xad800000 - 0xad8003ff (0x400) MX[b]
[6] -1 0 0x40000000 - 0x400003ff (0x400) MX[b]
[7] -1 0 0xae000000 - 0xae0003ff (0x400) MX[b]
[8] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
[9] -1 0 0xcffe0000 - 0xcfffffff (0x20000) MX[b](B)
[10] -1 0 0xaf000000 - 0xaf00ffff (0x10000) MX[b](B)
[11] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
[12] -1 0 0xae800000 - 0xae80ffff (0x10000) MX[b](B)
[13] -1 0 0xb0000000 - 0xbfffffff (0x10000000) MX[b](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
[16] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
[17] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
[18] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[b]
[19] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
[20] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
[21] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
[22] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
[23] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b](B)
[24] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.7.0, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "fglrx"
(WW) Warning, couldn't open module fglrx
(II) UnloadModule: "fglrx"
(EE) Failed to load module "fglrx" (module does not exist, 0)
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(EE) No drivers available.
Fatal server error:
no screens found
Please consult the The X.Org Foundation support
at http://wiki.X.Org
for help.
Please also check the log file at "/var/log/Xorg.0.log" for additional information.
--
JSkier
Offline
I had this error before installing rpmunpack
Offline
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
MAKE SURE YOU INSTALL RPMUNPACK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!11111
If you don't the makepkg will 'SEEM" to work right... but in reality you're just going to be wasting your time......
Offline
Does anybody already have a PKGBUILD for ATi-drivers 3.12.0 ?
http://ati.com/support/drivers/linux/ra … submit.y=2
CU ActionNews
[URL=http://www.nethands.de/athlon/show.php3?user=actionnews]My System[/URL] - one click ahead!
Offline
Here's my PKGBUILD:
# Contributors: Manolis Tzanidakis <mtzanidakis@freemail.gr>
# Sasha Z. <kleptophobiac@gmail.com>
pkgname=ati-drivers
pkgver=3.12.0
pkgrel=1
pkgdesc="Proprietary (binary) drivers for ATI Radeon Cards."
url="www.ati.com/support/driver.html"
depends=('xfree86')
install="$pkgname.install"
source=(http://www2.ati.com/drivers/linux/fglrx-4.3.0-$pkgver.i386.rpm)
md5sums=('a9b74202635058a701c75bb19f99fb72')
# build-time deps: rpmunpack, cpio, gzip
build() {
cd $startdir/pkg
rpmunpack < $startdir/src/fglrx-4.3.0-$pkgver.i386.rpm | gzip -d | cpio -idmuv
chmod 755 -R .
mv opt/kde3 opt/kde
mkdir -p opt/gnome/share
mv usr/share/gnome/apps/ opt/gnome/share
rm -rf usr/share/gnome
usr/share/applnklib/modules/fglrx/{fglrx*.o,fglrx_info.txt}
usr/X11R6/bin/LICENSE.{GPL,QPL}
usr/X11R6/bin/*.bz2
}
This version still seems to crash upon X exit on my T41p... but it works fine otherwise.
Offline
Thanks ... i'll try it later ... hmm time to learn how abs works and how to write my own PKGBUILDs .
CU ActionNews
[URL=http://www.nethands.de/athlon/show.php3?user=actionnews]My System[/URL] - one click ahead!
Offline
Here's my PKGBUILD:
... # build-time deps: rpmunpack, cpio, gzip
You can (and should ) code these in as follows:
makedepends=(rpmunpack cpio gzip)
Offline
Sounds good!
I also updated the .install file so that it doesn't scare people with the unexpected EOF error.
Here's trial 2!
# mkdir /var/abs/local/ati
# cd /var/abs/local/ati
# wget http://www.mstcforum.com/projects/arch/abs-ati-driver-3.12.0-2.tar.gz
# tar -xzf abs-ati-driver-3.12.0-2.tar.gz
# makepkg -c
# pacman -A ati-driver-3.12.0-2.tar.gz
Then follow the directions that print to the screen.
Offline
Has anyone tried the drivers with xorg 6.8? Do they compile and work? I haven't had time myself, but I'm curious to know the result.
Offline