Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Problem configuring ati radeon hd7600d card
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
desijuan
n00b
n00b


Joined: 07 Jan 2014
Posts: 3
Location: Buenos Aires, Argentina

PostPosted: Tue Jan 07, 2014 5:41 am    Post subject: Problem configuring ati radeon hd7600d card Reply with quote

Hello, i am an archlinux user who is trying to install gentoo for the fist time. my computer has an amd a10 5800 processor, with a radeon hd7600d gpu. it is new, so i only had ubuntu installed in this machine.

in the radeon configuration page (https://wiki.gentoo.org/wiki/Radeon#Firmware) says:

Kernel configuration:
Device Drivers --->
Generic Driver Options --->
-*- Userspace firmware loading support
[*] Include in-kernel firmware blobs in kernel binary
(radeon/<YOUR-MODEL>.bin)
(/lib/firmware) Firmware blobs root directory

i have installed x11-base/xorg-drivers, and radeon-ucode but when i do make menuconfig i cant find
(radeon/<YOUR-MODEL>.bin)
(/lib/firmware) Firmware blobs root directory


under the
[*] Include in-kernel firmware blobs in kernel binary

line.

startx doesnt work, and X -configure neither, so i think i didnt do the confiuration right. but i cant find the place where i have to say to my kernel what my graphics card is.

also my card isnt in the list on radeon page at the wiki. but i think perhaps it has the same drivers as another card.

can someone help me?

excuse my english, its not my native language :P

thanks
Back to top
View user's profile Send private message
N8Fear
Tux's lil' helper
Tux's lil' helper


Joined: 15 Apr 2013
Posts: 140
Location: Berlin (Germany)

PostPosted: Tue Jan 07, 2014 8:43 am    Post subject: Reply with quote

I have that option exactly where you stated it should be:
1. make menuconfig
2. go to "Device Drivers" and press enter
3, go to "Generic Driver options and press enter (for me it's the first entry under device drivers
4. Select "Userspace firmware loading support" (is most likely enabled by default)
5. Select "Include in-kernel firmware blobs in kernel binary"
6. Enter (space separated if you need more than one blob) the firmware file, e.g. radeon/<your-model>.bin
7. By now the "Firmware blobs root directory" option should have appeared, enter the path to your firmware directory (/lib/firmware is default).
8. Make sure you have /lib/firmware/radeon/your-model.bin
9. build kernel, install modules and kernel and have some fun...

Disclaimer: Since I don't own a radeon card I can't reproduce everything myself, but I have these options in my kernel anyways...
Back to top
View user's profile Send private message
DawgG
l33t
l33t


Joined: 17 Sep 2003
Posts: 866

PostPosted: Tue Jan 07, 2014 9:06 am    Post subject: Reply with quote

i have a similar box (A6-APU with Radeon HD 7540D) which i will use in the examples.
first, find out which exact Radeon-model it has:
Code:
medi ~ # lspci
(...)
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7540D]
(...)

since you have altrady emerged radeon-firmware, the firmware-files reside in /lib/firmware/radeon/. this is the path and file you have to state in your kernel-config.
find which file belongs to your hardware can be a little bit tricky; good info is here http://en.wikipedia.org/wiki/Comparison_of_AMD_graphics_processing_units#Southern_Islands_.28HD_7xxx.29_Series and here http://xorg.freedesktop.org/wiki/RadeonFeature/
i found the exact model of my APU-chip in Xorg.0.log
Code:
[    10.223] (--) RADEON(0): Chipset: "ARUBA" (ChipID = 0x9991)

i have had two AMD-APUs where lspci stated a different model than X found - in both cases the model that X found is the one that works.

if you configure your kernel with
Code:
make menuconfig
you have to set the path to the firmware-files under Device Drivers --> Generic driver options --> External Fimware blobs to build into....
(or you put them into your initrd)
Code:
medi ~ # zgrep -iE 'radeon|firm' /proc/config.gz
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE="radeon/ARUBA_rlc.bin radeon/ARUBA_me.bin radeon/ARUBA_pfp.bin rtl_nic/rtl8168e-3.fw"
CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware/"
# Altera FPGA firmware download module
# CONFIG_CYPRESS_FIRMWARE is not set
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
CONFIG_DRM_RADEON=m
# CONFIG_DRM_RADEON_UMS is not set
# CONFIG_FIRMWARE_EDID is not set
# CONFIG_FB_RADEON is not set
# Firmware Drivers (...)

on this box, if CONFIG_FB_RADEON was set, the system would not boot with KMS.
GRUB passes these args to the kernel for radeon:
Code:

(...) radeon.modeset=1 radeon.audio=1 radeon.dpm=1 radeon.pcie_gen2=1 radeon.msi=1 radeon.fastfb=1 radeon.aspm=1radeon.dynclks=1


GOOD LUCK!
_________________
DUMM KLICKT GUT.
Back to top
View user's profile Send private message
Enfield
n00b
n00b


Joined: 23 Mar 2008
Posts: 12
Location: Great Britain

PostPosted: Tue Jan 07, 2014 7:16 pm    Post subject: Reply with quote

Hello,

I have recently installed Gentoo on my PC and I have 7950 - tahiti.

I gave up trying to use the open source driver as it appeared that radeonsi video card option is masked in mesa. FGLRX works for me.

Did you type in all the different tahiti .bin files into the kernel?
_________________
'We're in the stickiest situation since Sticky the Stick Insect got stuck on a sticky bun.' - Edward Blackadder
Back to top
View user's profile Send private message
desijuan
n00b
n00b


Joined: 07 Jan 2014
Posts: 3
Location: Buenos Aires, Argentina

PostPosted: Wed Jan 08, 2014 2:10 am    Post subject: Reply with quote

i mistyped my card, it's a radeon hd 7660d. in the wikipedia page says its codename is devastator (thanks DawgG!).

N8Fear: I don't know why but the option isn't there in when i do make menuconfig. i did exactly what you suggested.

Einfield:
Quote:
Did you type in all the different tahiti .bin files into the kernel?

no i didnt type the bin files, because i can't find the place where i have to type them :S. i think that's why xorg doesn't work.

i will try first what DawgG suggested:
Quote:
good info is here http://en.wikipedia.org/wiki/Comparison_of_AMD_graphics_processing_units#Southern_Islands_.28HD_7xxx.29_Series and here http://xorg.freedesktop.org/wiki/RadeonFeature/
i found the exact model of my APU-chip in Xorg.0.log

and if i can't configure the open source drivers i will try with fglrx. i didn't do very much research about that, but i think by now the open source drivers should be better than fglrx, is that right?

i didn't have time to do it today and i wont be at home for about a week. so it will have to wait until then. but when i come back i will keep on trying (i really want to give gentoo a try).

thanks!
Back to top
View user's profile Send private message
DawgG
l33t
l33t


Joined: 17 Sep 2003
Posts: 866

PostPosted: Wed Jan 08, 2014 11:42 am    Post subject: Reply with quote

Quote:
no i didnt type the bin files, because i can't find the place where i have to type them

i just checked it, it can be a little tricky.
you have to
Code:
make menuconfig

and there go to Device Drivers --> Generic Driver Options and if you there type sth. into
Code:
()    External firmware blobs to build into the kernel binary (NEW)
a new menu entry will appear below that:
Code:
 (firmware) Firmware blobs root directory (NEW)
an you have to configure it so it (roughly) looks like
Code:
 (file1.bin file2.bin) External firmware blobs to build into the kernel binary
 (/lib/firmware/radeon/) Firmware blobs root directory

this example is from 3.10.7-gentoo and assumes you only need the radeon-firmware in the kernel. (of course you can also edit the kernel-config directly.)
if you are not sure which firmware is right for your box you can use all the files that seem plausible and when you start X the log will tell you exactly which chip it uses (as i said, lspci and manufacturer-codenames can be misleading or wrong.)
if you are not into heavy gaming i strongly recommend against using the fglrx-drivers.
GOOD LUCK!
_________________
DUMM KLICKT GUT.
Back to top
View user's profile Send private message
desijuan
n00b
n00b


Joined: 07 Jan 2014
Posts: 3
Location: Buenos Aires, Argentina

PostPosted: Tue Jan 14, 2014 9:41 pm    Post subject: Reply with quote

Thanks again DawgG. I had this line in make menuconfig, but I didn't know that I had to press enter.
Code:
()    External firmware blobs to build into the kernel binary (NEW)


Now I'm almost done. I reistalled everything and I have done the same as you (as suggested in https://wiki.gentoo.org/wiki/Radeon) and discovered that I have to put the bin files for an ARUBA box. All seems to work. But Xorg still doesn't.

When I installed Xorg, following https://wiki.gentoo.org/wiki/Xorg/Configuration, I didn't disable all the drivers, as it says in the page:
Code:
Device Drivers --->
  Graphics support --->
    Support for frame buffer devices --->
    ## (Disable all drivers, including VGA, Intel, nVidia, and ATI)


emerge noted that, and warned me.

startx failed, so i recompiled the kernel whithout any driver for the framebuffer this time, and re emerged xorg-server and xorg-drivers. Rebooted of course. But I still get an error when I do startx, also when I do X -configure.

Here is my /var/log/Xorg.0.log:
Code:
 [   423.252]
X.Org X Server 1.14.3
Release Date: 2013-09-12
[   423.254] X Protocol Version 11, Revision 0
[   423.255] Build Operating System: Linux 3.10.25-gentoo x86_64 Gentoo
[   423.255] Current Operating System: Linux athena 3.10.25-gentoo #5 SMP Tue Jan 14 18:12:52 ART 2014 x86_64
[   423.255] Kernel command line: BOOT_IMAGE=/boot/kernel-3.10.25-gentoo root=/dev/sda4 ro
[   423.256] Build Date: 14 January 2014  06:16:15PM
[   423.257] 
[   423.258] Current version of pixman: 0.32.4
[   423.259]    Before reporting problems, check http://wiki.x.org
   to make sure that you have the latest version.
[   423.259] Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   423.261] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jan 14 18:21:22 2014
[   423.261] (II) Loader magic: 0x802c20
[   423.261] (II) Module ABI versions:
[   423.261]    X.Org ANSI C Emulation: 0.4
[   423.261]    X.Org Video Driver: 14.1
[   423.261]    X.Org XInput driver : 19.1
[   423.261]    X.Org Server Extension : 7.0
[   423.262] (II) xfree86: Adding drm device (/dev/dri/card0)
[   423.262] (--) PCI:*(0:0:1:0) 1002:9901:1043:8526 rev 0, Mem @ 0xc0000000/268435456, 0xfef00000/262144, I/O @ 0x0000f000/256
[   423.263] List of video drivers:
[   423.264]    ati
[   423.264]    radeon
[   423.264] (II) LoadModule: "ati"
[   423.264] (II) Loading /usr/lib64/xorg/modules/drivers/ati_drv.so
[   423.264] (II) Module ati: vendor="X.Org Foundation"
[   423.264]    compiled for 1.14.3, module version = 7.2.0
[   423.264]    Module class: X.Org Video Driver
[   423.264]    ABI class: X.Org Video Driver, version 14.1
[   423.264] (II) LoadModule: "radeon"
[   423.264] (II) Loading /usr/lib64/xorg/modules/drivers/radeon_drv.so
[   423.265] (II) Module radeon: vendor="X.Org Foundation"
[   423.265]    compiled for 1.14.3, module version = 7.2.0
[   423.265]    Module class: X.Org Video Driver
[   423.265]    ABI class: X.Org Video Driver, version 14.1
[   423.265] (II) RADEON: Driver for ATI Radeon chipsets:
   ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
   ATI Radeon Mobility X300 (M24) 3152 (PCIE),
   ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
   ATI Radeon X600 (RV380) 3E50 (PCIE),
   ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
   ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
   ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
   ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
   ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
   ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
   ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
   ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
   ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
   ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
   ATI Radeon IGP330M/340M/350M (U2) 4337,
   ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
   ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
   ATI Radeon X800PRO (R420) JI (AGP),
   ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
   ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
   ATI Radeon Mobility 9800 (M18) JN (AGP),
   ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
   ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
   ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
   ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
   ATI Radeon Mobility M7 LW (AGP),
   ATI Mobility FireGL 7800 M7 LX (AGP),
   ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
   ATI FireGL Mobility 9000 (M9) Ld (AGP),
   ATI Radeon Mobility 9000 (M9) Lf (AGP),
   ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
   ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
   ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
   ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
   ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
   ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
   ATI Radeon Mobility 9600 (M10) NQ (AGP),
   ATI Radeon Mobility 9600 (M11) NR (AGP),
   ATI Radeon Mobility 9600 (M10) NS (AGP),
   ATI FireGL Mobility T2 (M10) NT (AGP),
   ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
   ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
   ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
   ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
   ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
   ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
   ATI Radeon Mobility X300 (M22) 5460 (PCIE),
   ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
   ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
   ATI Radeon X800PRO (R423) UI (PCIE),
   ATI Radeon X800LE (R423) UJ (PCIE),
   ATI Radeon X800SE (R423) UK (PCIE),
   ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
   ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
   ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
   ATI FireGL unknown (R423) UR (PCIE),
   ATI FireGL unknown (R423) UT (PCIE),
   ATI Mobility FireGL V5000 (M26) (PCIE),
   ATI Mobility FireGL V5000 (M26) (PCIE),
   ATI Mobility Radeon X700 XL (M26) (PCIE),
   ATI Mobility Radeon X700 (M26) (PCIE),
   ATI Mobility Radeon X700 (M26) (PCIE),
   ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
   ATI Radeon Mobility 9100 IGP (U3) 5835,
   ATI Radeon XPRESS 200 5954 (PCIE),
   ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
   ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
   ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
   ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
   ATI Radeon XPRESS 200M 5975 (PCIE),
   ATI Radeon XPRESS 200 5A41 (PCIE),
   ATI Radeon XPRESS 200M 5A42 (PCIE),
   ATI Radeon XPRESS 200 5A61 (PCIE),
   ATI Radeon XPRESS 200M 5A62 (PCIE),
   ATI Radeon X300 (RV370) 5B60 (PCIE),
   ATI Radeon X600 (RV370) 5B62 (PCIE),
   ATI Radeon X550 (RV370) 5B63 (PCIE),
   ATI FireGL V3100 (RV370) 5B64 (PCIE),
   ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
   ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
   ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
   ATI Mobility Radeon X800 XT (M28) (PCIE),
   ATI Mobility FireGL V5100 (M28) (PCIE),
   ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
   ATI Radeon X850 XT PE (R480) (PCIE),
   ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
   ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
   ATI Radeon X850 XT (R480) (PCIE),
   ATI Radeon X800XT (R423) 5D57 (PCIE),
   ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
   ATI Radeon X700 PRO (RV410) (PCIE),
   ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
   ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
   ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
   ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
   ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
   ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
   ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
   ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
   ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
   ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
   ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
   ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
   ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
   ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
   ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
   ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
   ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
   ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
   ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
   ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
   ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
   ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
   ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
   ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
   ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
   ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
   ATI Mobility Radeon X1700, ATI Radeon X2300HD,
   ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
   ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
   ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
   ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
   ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
   ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
   ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
   ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
   ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
   ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
   ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
   ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
   ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
   ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
   ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
   ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
   ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
   ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
   ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
   ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
   AMD FireStream 9250, ATI FirePro V8700 (FireGL),
   ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
   ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
   ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
   ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
   ATI Mobility Radeon HD 4670, ATI FirePro M5750,
   ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
   ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
   ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
   ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
   ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
   ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
   ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
   ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
   ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
   ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
   ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
   ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
   ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
   ATI Mobility Radeon HD 3850 X2, ATI RV670,
   ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
   ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
   ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
   ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
   ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
   ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
   ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
   ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
   ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
   ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
   ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
   ATI FireGL V3600, ATI Radeon HD 2600 LE,
   ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
   ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
   ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
   ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
   ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
   ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
   ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
   ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
   ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
   ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
   ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
   ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
   ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
   SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
   ATI Radeon 4100, ATI Mobility Radeon HD 4200,
   ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
   AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
   AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
   AMD Radeon HD 6300 Series Graphics,
   AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
   AMD Firestream 9350, ATI Radeon HD 5800 Series,
   ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
   ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
   ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
   ATI Mobility Radeon HD 5800 Series,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
   ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
   ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
   ATI Mobility Radeon HD 5000 Series,
   ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
   ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
   ATI Mobility Radeon HD 5000 Series,
   ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
   ATI Mobility Radeon Graphics, CEDAR,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
   ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
   CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
   AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
   CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
   BARTS, BARTS, Mobility Radeon HD 6000 Series,
   Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
   AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
   AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
   TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
   TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
   CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
   CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
   ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
   ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
   ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
   ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
   TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
   TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
   PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
   VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
   VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
   VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
   OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
   HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
   BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
   KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
   KABINI, KABINI, KABINI
[   423.278] (++) Using config file: "/root/xorg.conf.new"
[   423.279] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   423.279] (==) ServerLayout "X.org Configured"
[   423.279] (**) |-->Screen "Screen0" (0)
[   423.279] (**) |   |-->Monitor "Monitor0"
[   423.279] (**) |   |-->Device "Card0"
[   423.279] (**) |-->Input Device "Mouse0"
[   423.279] (**) |-->Input Device "Keyboard0"
[   423.279] (==) Automatically adding devices
[   423.279] (==) Automatically enabling devices
[   423.279] (==) Automatically adding GPU devices
[   423.279] (WW) The directory "/usr/share/fonts/misc/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/100dpi/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/75dpi/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/misc/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/100dpi/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (WW) The directory "/usr/share/fonts/75dpi/" does not exist.
[   423.279]    Entry deleted from font path.
[   423.279] (**) FontPath set to:
   
[   423.279] (**) ModulePath set to "/usr/lib64/xorg/modules"
[   423.279] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   423.279] (WW) Disabling Mouse0
[   423.279] (WW) Disabling Keyboard0
[   423.280] (II) [KMS] Kernel modesetting enabled.
[   423.280] (EE)
[   423.281] (EE) Backtrace:
[   423.281] (EE) 0: X (xorg_backtrace+0x36) [0x5868d6]
[   423.282] (EE) 1: X (0x400000+0x18a629) [0x58a629]
[   423.283] (EE) 2: /lib64/libpthread.so.0 (0x7f572ac70000+0x10aa0) [0x7f572ac80aa0]
[   423.283] (EE) 3: /usr/lib64/xorg/modules/drivers/radeon_drv.so (0x7f5728760000+0x4278c) [0x7f57287a278c]
[   423.284] (EE) 4: X (DoConfigure+0xcfd) [0x46dc5d]
[   423.284] (EE) 5: X (InitOutput+0x1231) [0x47d2d1]
[   423.285] (EE) 6: X (0x400000+0x29e80) [0x429e80]
[   423.286] (EE) 7: /lib64/libc.so.6 (__libc_start_main+0xf5) [0x7f57298e49b5]
[   423.286] (EE) 8: X (0x400000+0x2a401) [0x42a401]
[   423.287] (EE)
[   423.287] (EE) Segmentation fault at address 0x18
[   423.288] (EE)
Fatal server error:
[   423.289] (EE) Caught signal 11 (Segmentation fault). Server aborting
[   423.290] (EE)
[   423.290] (EE)
Please consult the The X.Org Foundation support
    at http://wiki.x.org
 for help.
[   423.292] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   423.293] (EE)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum