Mesa 7.6 mit 3D für ATi Radeon R600 bis R800 erschienen

Yamagi

Possessed With Psi Powers
Teammitglied
Das Mesa3D Projekt hat die neue Version 7.6 veröffentlicht. Diese bringt als hauptsächliche Neuerung 3D-Beschleunigung für alle neuere ATi Radeon Karten ab der HD2000 Serie aufwärts. Damit haben alle ATi Karten freie 3D-Beschleunigung. Diese ist nicht vollständig, es fehlen Funktionen, aber es reicht aus um Spiele wie Quake III Arena performant spielen zu können. Deutlich neuere gibt es für FreeBSD eh nicht, außer man nutzt den Linuxulator. :)

Wie schnell es für FreeBSD verfügbar wird, lässt sich im Moment nicht sagen. Sicher wird Robert Noland die Ports kaum vor der Veröffentlichung von FreeBSD 8.0 einfügen, hinterher ist die Frage ob Mesa allein oder als Teil eines kompletten X.org Updates kommen wird. Auch deutet es sich an, dass es durch ABI-Brüche in letzter Minute eventuell weitere Kernelpatches benötigen wird.

Alles in allem aber ein großer Schritt nach vorn, da es nun endlich leistungsstarke Karten gibt, welche noch in Massen verfügbar sind und freie 3D-Beschleunigung bieten. Das boten bisher nur langsame Intel-Chips. Auch die kommenden HD5000 werden angeblich unterstützt, aber da sollte man besser erste Erfahrungsberichte abwarten, bevor man blind viel Geld investiert. Das wäre das erste Mal, dass dedizierte Karten beim Erscheinen freie Treiberunterstützung mit 3D haben.
 
Das hört sich doch wunderbar an.
Bald kann ich meiner ATi Karte 3D abverlangen.
Jetzt muss es nur noch implementiert werden, aber lieber länger Warten und keine Fehler machen

Mfg KO
 
Eine kleine Anleitung für euch!

ACHTUNG! Diese Anleitung richtet sich an Bastler. Ihr zerstört damit
totsicher euer System, müsst also irgendwann alle Ports runterwerfen
oder aber ein Backup zurückspielen! Beschwert euch nicht, wenn Ports
nicht mehr bauen und / oder Programme plötzlich Ärger machen!


Ich werde hier kurz aufzeigen, wie man Mesa3D 7.6 an den Ports vorbei in
das System frickelt und wie man den Kernel aktualisiert, sodass am Ende
freie 3D-Beschleunigung mit allen neueren Radeon-Karten der Serien
- HD2000
- HD3000
- HD4000
- HD5000 (kann man noch nicht kaufen, nur unter Vorbehalt)
zur Verfügung steht. Ich kann damit auf meiner HD4870 Quake 3 flüssig
spielen. Es besteht aber eine gewisse Neigung zu vertikalen Flackern,
das ist bekannt und Robert Noland arbeitet daran. Weitere Patches kommen
sicher bald.

Ich setze voraus, dass gewisse Grundkenntnisse im Umgang mit FreeBSD
vorhanden sind. Man sollte einen Kernel bauen können, wenn nicht es
nachlesen. Auch sollten die Ports auf dem neusten Stand sein, es sollte
devel/subversion installiert sein und vor allem bitte vorweg ein
Backup des kompletten Systems machen!
. Die Sourcen des Systems
sollten korrekt installiert sein, ebenso sollte graphics/libGL
installiert sein. Diese Anleitung bezieht sich auf 8.0-RC1, doch die
Chancen sind gut, dass sie auch auf 7.0 bis 7.2 funktioniert.

1. DRM aktualisieren.
Ein aktuellste DRM ist leider Voraussetzung, was uns aller
Wahrscheinlichkeit nach den Spaß mit einem ungepatchten 8.0 nehmen wird.
Das ist einfach zu weit im Zyklus, als das man da noch ein neues DRM
einbringen würde. Daher müssen wir es selbst aktualisieren:
Code:
cd /usr/usr/sys/dev
rm -Rf drm
svn export svn://svn.freebsd.org/base/head/sys/dev/drm
cd ../modules
rm -Rf drm
svn export svn://svn.freebsd.org/base/head/sys/modules/drm
Damit ist der aktuelle Code drin. Nun die Module neubauen:
Code:
cd /usr/src/sys/modules/drm
make obj
make depend
make
make install
make clean
Der Kernel ist aktuell. Bitte die Module nicht manuell neu laden, die
Chancen auf Ärger sind hoch. Wir rebooten später einfach, müssen wir eh.

2. libDRM aktualisieren.
Eine aktuellste libDRM ist Pflicht, sonst baut Mesa3D gar nicht erst
durch. Also bauen wir es uns kurz:
Code:
cd
mkdir drm
cd drm
fetch http://dri.freedesktop.org/libdrm/libdrm-2.4.14.tar.gz
tar xf libdrm-2.4.14.tar.gz 
cd libdrm-2.4.14
./configure --prefix=/usr/local
gmake
gmake install

3. Mesa3D bauen.
Nun wird Mesa3D 7.6 selbst gebaut. Dies ist in den Ports in verschiedene
Teile zerlegt, der bekannteste ist sicher graphics/libGL. Diese wird
überschrieben werden!
Code:
cd
mkdir mesa
fetch ftp://ftp.freedesktop.org/pub/mesa/7.6/MesaLib-7.6.tar.gz
tar xf MesaLib-7.6.tar.gz 
cd Mesa-7.6
setenv LDFLAGS -L/usr/local/lib
setenv CFLAGS -I/usr/local/include
./configure --prefix=/usr/local --disable-gallium --disable-egl --disable-glut
gmake
gmake install

4. Der Treiber.
Wir brauchen nun noch einen passenden X.org Treiber. Es gibt zwei
Möglichkeiten. Einmal ist es x11-driver/xf86-video-radeonhd-devel.
Dieser baut direkt aus dem Ports und läuft so lala, er ist leider recht
langsam. Um nicht zu sagen zu langsam, etwa 40 FPS auf meiner Karte in
Quake 3 bei 1280x1024 maximale Qualität. Der aktuelle xf86-video-ati ist
deutlich schneller, er schafft mehr als 200 FPS. Daher würde ich
vorschlagen diesen zu nutzen:
Code:
cd
fetch -o ati.patch http://www.freebsd.org/cgi/query-pr.cgi?prp=139045-1-txt&n=/ati.diff
cd /usr/ports
patch < ~/ati.patch
Nun eventuell vorhandene Treiber deinstallieren und
x11-driver/xf86-video-ati erneut installieren. Abschließend die
Device-Sektion der /etc/X11/xorg.conf anpassen:
Code:
Section "Device"
        Identifier  "Card0"
        Driver      "radeon"
        Option      "DRI" "true"
        Option      "AccelMethod" "exa"
EndSection

5. Einmal Neustart bitte.
An dieser Stelle bitte einmal rebooten. Und zwar richtig, nicht hoffen,
dass Module neu laden oder X.org neu starten reichen wird. Tut es nicht,
die Karte muss einmal neu initialisiert werden. Sonst wird es gleich
extrem zicken!

6. Gehts?
Nachdem X.org wieder läuft, schauen wir mit "glxinfo" - Teil von
graphics/mesa-demos - ob alles in Theorie klappt. Wichtig sind zwei
Zeilen, ob es klappt:
Code:
direct rendering: Yes
Und der Treiber selbst (nicht der erste, weiter unten. Muss nur irgendwo
auftauchen):
Code:
OpenGL vendor string: Advanced Micro Devices, Inc. 
OpenGL renderer string: Mesa DRI R600 (RV770 9440) 20090101  TCL
OpenGL version string: 1.4 Mesa 7.6
Wir testen mit "glxgears", ebenfalls Teil von graphics/mesa-demos:
Code:
glxgears -info
Die Räder sollten sich drehen und es sollte >900 FPS geben. Damit sind
wir fertig, herzlichen Glückwunsch zu freier 3D-Beschleunigung. Das ganz
kann zugegeben noch ein wenig reifen, mein Tipp ist, vor jedem Start
einer 3D-Anwendung wirklich alles wichtige zu speichern und einmal
"sync" einzutippen. :)
 
Zuletzt bearbeitet:
Hallo !

Wollte grad mal mein Glück probieren ! :ugly:

Bau bricht aber ab :

checking for DRIGL... yes
checking expat.h usability... no
checking expat.h presence... no
checking for expat.h... no
configure: error: Expat required for DRI.
[root@fatcat ~/Mesa-7.6]#


Expat2 ist aber installiert ???????????

Jemand ein Tip ?

Gruss
 
Oh, da fehlt was. Vor dem Configure:
Code:
setenv LDFLAGS -L/usr/local/lib
setenv CFLAGS -I/usr/local/include
Trage ich gleich nach :)

EDIT: Für Bourne-Shells wäre es natürlich "export" statt "setenv".
 
Auch die kommenden HD5000 werden angeblich unterstützt, aber da sollte man besser erste Erfahrungsberichte abwarten, bevor man blind viel Geld investiert. Das wäre das erste Mal, dass dedizierte Karten beim Erscheinen freie Treiberunterstützung mit 3D haben.

Ich habe zwar keine dieser Karten aber ich bestätige das an dieser stelle einfach mal da der HD58xx nicht viel mehr ist als ein HD48xx mit verdoppelter Transistorzahl und deutlich verbessertem Power Saving. Also eher ein Evolutionäerer Chip. Daher sehe ich da seitens der Chiparchitektur keinen Grund weshalb er nicht bereits unterstützt werden sollte.

Gruß
 
Hallo nochmal !

Hat denn soweit gebaut !

Glxinfo :

OpenGL vendor string: Mesa Project
OpenGL renderer string: Software Rasterizer
OpenGL version string: 2.1 Mesa 7.6
OpenGL shading language version string: 1.20


Hat wohl irgendwie nicht hingehauen !

??????????
:confused:
 
Kannst du mal deine Xorg.0.log geben und die Ausgabe von "glxinfo", nachdem du ein "setenv MESA_DEBUG" gesetzt hast? :)
 
Habe hier übrigens den radeonhd Treiber im Betrieb.
Mit dem ATI Treiber funzte der Dual-Monitor nicht
mehr.

Habe deshalb den radeonhd genommen.

Gruss
 

Anhänge

  • Xorg.0.log.txt
    99,4 KB · Aufrufe: 357
  • glxinfo.txt
    19,7 KB · Aufrufe: 232
Code:
(II) RADEONHD: version 1.2.5, built from non-git sources
Ich glaube, damit sagt er uns, dass es x11-drivers/xf86-video-radeonhd ist. Deinstalliere den mal - der ist zu alt und kann kein 3D für die Karten - und installiere stattdessen x11-drivers/xf86-video-radeonhd-devel. Der ist neuer, hat neue, tolle Bugs und kann 3D. Ich hoffe ich habe richtig geraten und es hilft.

EDIT: Ach ja, wenn es nicht gleich will, reboote mal. Kann nach Treiberwechsel bei ATi-Karten Wunder wirken :)
 
Mit radeonhd-devel ist es das Gleiche ! :zitter:


Muss aber sagen das alles etwas schneller
geworden ist.
Bin hier auf KDE4. Es funktioniert die
Transparenz der Fenster mit akzeptabler
Geschwindigkeit. Vorher nicht !!
Allerdings läuft alles noch über X-Render-Einstellung
im KDE-Kontrollzentrum. OpenGL lässt sich nicht aktivieren.
:)
 
Zuletzt bearbeitet:
Irgendwas spinnt da. Noch einmal mehr Informationen, bitte:
- Die Ausgabe von "kldstat -v"
- Einmal die dmesg
- Und ein "ls -lha /dev/dri"
dem muss ja beizukommen sein :)
 
PHP:
[root@fatcat ~]# kldstat -v                                                      
Id Refs Address            Size     Name                                         
 1   10 0xffffffff80100000 8219b0   kernel                                       
        Contains modules:                                                        
                Id Name                                                          
                178 shmat                                                        
                177 shmctl                                                       
                176 shmdt                                                        
                175 shmget                                                       
                167 msgctl                                                       
                166 msgget                                                       
                173 semsys                                                       
                172 __semctl                                                     
                171 semget                                                       
                170 semop                                                        
                165 msgsnd                                                       
                164 msgrcv                                                       
                168 msgsys                                                       
                179 shmsys                                                       
                37 ataraid                                                       
                184 loop                                                         
                235 elf32                                                        
                158 elf64                                                        
                159 shell                                                        
                142 pseudofs                                                     
                187 if_tun                                                       
                181 if_faith                                                     
                186 if_sl                                                        
                183 if_gif                                                       
                185 if_ppp                                                       
                163 sysvmsg                                                      
                169 sysvsem                                                      
                174 sysvshm                                                      
                191 nfsserver                                                    
                196 krpc                                                         
                192 nfslockd                                                     
                141 procfs                                                       
                152 ext2fs                                                       
                189 nfs                                                          
                157 cd9660                                                       
                188 nfs4                                                         
                140 msdosfs                                                      
                139 devfs                                                        
                197 ufs                                                          
                 2 cam                                                           
                32 ata                                                           
                 9 sa                                                            
                 8 pass                                                          
                 6 ch                                                            
                 4 xpt                                                           
                 5 cd                                                            
                 7 da                                                            
                10 ses                                                           
                151 g_part_gpt                                                   
                 3 probe                                                         
                84 null                                                          
                156 isa/orm                                                      
                155 isa/isahint                                                  
                238 cpu/p4tcc                                                    
                237 cpu/est                                                      
                236 cpu/powernow                                                 
                83 miibus/xmphy                                                  
                154 isab/isa                                                     
                153 eisab/isa                                                    
                82 miibus/ukphy                                                  
                234 hostb/agp_intel                                              
                233 vgapci/agp_i810                                              
                232 hostb/agp_amd64                                              
                81 miibus/truephy                                                
                231 isa/vga                                                      
                80 miibus/tlphy                                                  
                230 isa/sc                                                       
                229 scrndr-vga                                                   
                228 scterm-sc                                                    
                227 pci/sio                                                      
                226 cardbus/sio                                                  
                225 isa/sio                                                      
                224 acpi/sio                                                     
                79 miibus/tdkphy                                                 
                223 isa/fdc                                                      
                222 acpi/fdc                                                     
                221 fdc/fd                                                       
                220 io                                                           
                78 miibus/ruephy                                                 
                77 miibus/rlphy                                                  
                76 miibus/rgephy                                                 
                219 atkbdc/psm                                                   
                218 isa/psmcpnp                                                  
                217 acpi/psmcpnp                                                 
                75 miibus/qsphy                                                  
                216 isa/atkbdc                                                   
                215 acpi/atkbdc                                                  
                214 atkbdc/atkbd                                                 
                74 miibus/pnaphy                                                 
                213 legacy/pcib                                                  
                212 isa/pcibus_pnp                                               
                211 isa/atdma                                                    
                210 acpi/atdma                                                   
                209 legacy/isa                                                   
                208 isa/attimer                                                  
                207 acpi/attimer                                                 
                73 miibus/nsphyter                                               
                72 miibus/nsphy                                                  
                71 miibus/nsgphy                                                 
                206 root/nexus                                                   
                205 nexus/ram                                                    
                204 isa/sysresource                                              
                70 miibus/mlphy                                                  
                69 miibus/lxtphy                                                 
                68 miibus/jmphy                                                  
                67 miibus/ip1000phy                                              
                66 miibus/inphy                                                  
                65 miibus/icsphy                                                 
                64 miibus/gentbi                                                 
                63 miibus/xlphy                                                  
                62 miibus/e1000phy                                               
                203 nexus/legacy                                                 
                202 legacy/cpu                                                   
                61 miibus/ciphy                                                  
                201 pci/ioapic                                                   
                200 nexus/apic                                                   
                60 miibus/brgphy                                                 
                199 acpi/fpupnp                                                  
                59 miibus/bmtphy                                                 
                58 miibus/atphy                                                  
                57 miibus/amphy                                                  
                56 miibus/acphy                                                  
                55 mem                                                           
                17 acpi/acpi_hpet                                                
                15 acpi/cpu                                                      
                11 nexus/acpi                                                    
                12 acpi/acpi_acad                                                
                138 watchdog                                                     
                137 uhub/uvscom                                                  
                136 uhub/uvisor                                                  
                135 uhub/uslcom                                                  
                134 uhub/uscanner                                                
                21 acpi/acpi_pci_link                                            
                53 kbdmux                                                        
                133 ohci/usb                                                     
                132 uhci/usb                                                     
                131 ehci/usb                                                     
                130 slhci/usb                                                    
                129 uhub/urio                                                    
                128 uhub/uplcom                                                  
                127 uhub/ums                                                     
                126 uhub/umass                                                   
                125 uhub/ulpt                                                    
                124 uhub/ukbd                                                    
                123 uhub/uipaq                                                   
                122 usb/uhub                                                     
                121 uhub/uhub                                                    
                120 uhub/uhid                                                    
                119 pci/uhci                                                     
                118 cardbus/uhci                                                 
                117 uhub/ugen                                                    
                116 uhub/uftdi                                                   
                115 ucom                                                         
                114 uhub/ubser                                                   
                113 uhub/ubsa                                                    
                112 uhub/uark                                                    
                111 pci/ohci                                                     
                110 cardbus/ohci                                                 
                109 pci/ehci                                                     
                108 cardbus/ehci                                                 
                31 pci/ale                                                       
                107 pci/uart                                                     
                106 cardbus/uart                                                 
                105 isa/uart                                                     
                104 acpi/uart                                                    
                195 pci/rl                                                       
                194 cardbus/rl                                                   
                193 rl/miibus                                                    
                30 ale/miibus                                                    
                29 acpi/acpi_timer                                               
                103 midi                                                         
                28 cpu/acpi_throttle                                             
                45 dcons                                                         
                27 acpi/acpi_tz                                                  
                44 firewire/dcons_crom                                           
                190 nfslock                                                      
                102 sound                                                        
                43 cpu/ichss                                                     
                52 firewire/sbp                                                  
                14 acpi/acpi_cmbat                                               
                42 ata/ast                                                       
                51 firewire/fwip                                                 
                20 pcib/acpi_pci                                                 
                41 ata/afd                                                       
                26 acpi/acpi_smbat                                               
                40 ata/acd                                                       
                50 firewire/fwe                                                  
                49 pci/fwohci                                                    
                48 cardbus/fwohci                                                
                25 acpi/acpi_sysresource                                         
                39 ata/atapicam                                                  
                16 acpi/acpi_ec                                                  
                38 ad/subdisk                                                    
                47 fwohci/firewire                                               
                46 vgapci/radeon                                                 
                19 acpi/acpi_lid                                                 
                101 pci/snd_hda                                                  
                100 hdac/snd_hda_pcm                                             
                36 pci/atapci                                                    
                35 atapci/ata                                                    
                99 random                                                        
                98 pci/ppc                                                       
                97 isa/ppc                                                       
                96 acpi/ppc                                                      
                95 ppbus/ppi                                                     
                34 isa/ata                                                       
                94 ppc/ppbus                                                     
                93 ppbus/lpt                                                     
                160 cpu/cpufreq                                                  
                92 ppbus/plip                                                    
                91 pci/vgapci                                                    
                90 pci/pcib                                                      
                89 pcib/pci                                                      
                18 acpi/acpi_isab                                                
                24 cpu/acpi_perf                                                 
                33 ata/ad                                                        
                13 acpi/acpi_button                                              
                23 pci/acpi_pcib                                                 
                22 acpi/acpi_pcib                                                
                88 pci/isab                                                      
                87 pci/ignore_pci                                                
                86 pci/hostb                                                     
                85 pci/fixup_pci                                                 
                54 g_md                                                          
                145 g_disk                                                       
                198 g_class                                                      
                144 g_dev
                161 rootbus
                143 g_bsd
                150 g_part
                149 g_label
                148 g_vfs
                162 firmware
                147 g_mbr
                146 g_mbrext
                180 ether
                182 if_firewire
 2    2 0xffffffff80922000 39388    linux.ko
        Contains modules:
                Id Name
                 1 linuxelf
 3    1 0xffffffff80a22000 35c0     linprocfs.ko
        Contains modules:
                Id Name
                239 linprocfs
[root@fatcat


PHP:
atkbd0: [GIANT-LOCKED]                                                           
atkbd0: [ITHREAD]                                                                
ppc0: cannot reserve I/O port range                                              
sio1: configured irq 3 not in bitmap of probed irqs 0                            
sio1: port may not be enabled                                                    
ugen0: <vendor 0x0c45 USB camera, class 0/0, rev 1.10/1.01, addr 2> on uhub1     
ulpt0: <HP Deskjet 5700, class 0/0, rev 2.00/1.00, addr 2> on uhub4              
ulpt0: using bi-directional mode                                                 
ums0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5         
ums0: 16 buttons and Z dir.                                                      
uhid0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5        
ukbd0: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
kbd2 at ukbd0                                                                    
uhid1: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
Timecounters tick every 1.000 msec                                               
firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me)                              
firewire0: bus manager 0 (me)                                                    
ad4: 76318MB <Seagate ST380815AS 4.AAB> at ata2-master SATA300                   
ad6: 76319MB <Seagate ST380815AS 4.AAB> at ata3-master SATA300                   
acd0: DVDROM <HL-DT-STDVD-ROM GDRH20N/0L02> at ata4-master SATA150               
ad10: 152626MB <Maxtor 6G160E0 KA101V00> at ata5-master SATA300                  
GEOM_LABEL: Label for provider ad4s1 is ntfs/System Reserved.                    
ad12: 190781MB <SAMSUNG HD200HJ KF100-06> at ata6-master SATA150                 
acd1: DVDR <TSSTcorp CDDVDW SH-S223L/SB01> at ata7-master SATA150                
hdac0: HDA Codec #0: ATI R6xx HDMI                                               
pcm0: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac0                 
hdac1: HDA Codec #0: ATI R6xx HDMI                                               
pcm1: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac1                 
hdac2: HDA Codec #0: Realtek ALC888                                              
pcm2: <HDA Realtek ALC888 PCM #0 Analog> at cad 0 nid 1 on hdac2                 
pcm3: <HDA Realtek ALC888 PCM #1 Analog> at cad 0 nid 1 on hdac2                 
pcm4: <HDA Realtek ALC888 PCM #2 Digital> at cad 0 nid 1 on hdac2                
pcm5: <HDA Realtek ALC888 PCM #3 Digital> at cad 0 nid 1 on hdac2                
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
GEOM_LABEL: Label for provider ad12s1 is ntfs/Home.                              
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
(probe1:ata5:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe1:ata5:0:0:0): CAM Status: SCSI Status Error                               
(probe1:ata5:0:0:0): SCSI Status: Check Condition                                
(probe1:ata5:0:0:0): NOT READY asc:3a,1                                          
(probe1:ata5:0:0:0): Medium not present - tray closed                            
(probe1:ata5:0:0:0): Unretryable error                                           
(probe0:ata2:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe0:ata2:0:0:0): CAM Status: SCSI Status Error                               
(probe0:ata2:0:0:0): SCSI Status: Check Condition                                
(probe0:ata2:0:0:0): NOT READY asc:3a,0                                          
(probe0:ata2:0:0:0): Medium not present                                          
(probe0:ata2:0:0:0): Unretryable error                                           
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
SMP: AP CPU #1 Launched!                                                         
cd0 at ata2 bus 0 target 0 lun 0                                                 
cd0: <HL-DT-ST DVD-ROM GDRH20N 0L02> Removable CD-ROM SCSI-0 device              
cd0: 3.300MB/s transfers                                                         
cd0: Attempt to query device size failed: NOT READY, Medium not present          
cd1 at ata5 bus 0 target 0 lun 0                                                 
cd1: <TSSTcorp CDDVDW SH-S223L SB01> Removable CD-ROM SCSI-0 device              
cd1: 3.300MB/s transfers                                                         
cd1: Attempt to query device size failed: NOT READY, Medium not present - tray closed                                                                             
Trying to mount root from ufs:/dev/ad10s1a                                       
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.                                
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.                                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.                                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.                                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.                                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.                                
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.                                
rl0: link state changed to UP                                                    
module_register: module vgapci/radeon already exists!                            
Module vgapci/radeon failed to register: 17                                      
Waiting (max 60 seconds) for system process `vnlru' to stop...done               
Waiting (max 60 seconds) for system process `bufdaemon' to stop...done           
Waiting (max 60 seconds) for system process `syncer' to stop...                  
Syncing disks, vnodes remaining...8 5 5 1 1 1 1 0 0 0 done                       
All buffers synced.                                                              
Copyright (c) 1992-2009 The FreeBSD Project.                                     
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994         
        The Regents of the University of California. All rights reserved.        
FreeBSD is a registered trademark of The FreeBSD Foundation.                     
FreeBSD 7.2-RELEASE-p3 #0: Thu Aug 20 16:35:30 CEST 2009                         
    root@fatcat.at.home:/usr/obj/usr/src/sys/FATCAT                              
Timecounter "i8254" frequency 1193182 Hz quality 0                               
CPU: Intel(R) Core(TM)2 Duo CPU     E8400  @ 3.00GHz (2999.67-MHz K8-class CPU)  
  Origin = "GenuineIntel"  Id = 0x10676  Stepping = 6                            
  Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>                   
  Features2=0x8e3fd<SSE3,RSVD2,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,<b19>>                                                                             
  AMD Features=0x20100800<SYSCALL,NX,LM>                                         
  AMD Features2=0x1<LAHF>                                                        
  Cores per package: 2                                                           
usable memory = 6432477184 (6134 MB)                                             
avail memory  = 6187540480 (5900 MB)                                             
ACPI APIC Table: <A_M_I_ OEMAPIC >                                               
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs                              
 cpu0 (BSP): APIC ID:  0                                                         
 cpu1 (AP): APIC ID:  1                                                          
ioapic0 <Version 2.0> irqs 0-23 on motherboard                                   
kbd1 at kbdmux0                                                                  
acpi0: <A_M_I_ OEMXSDT> on motherboard                                           
acpi0: [ITHREAD]                                                                 
acpi0: Power Button (fixed)                                                      
acpi0: reservation of fed08000, 1000 (3) failed                                  
acpi0: reservation of fed1c000, 4000 (3) failed                                  
acpi0: reservation of fed20000, 20000 (3) failed                                 
acpi0: reservation of fed50000, 40000 (3) failed                                 
acpi0: reservation of ffc00000, 300000 (3) failed                                
acpi0: reservation of fec00000, 1000 (3) failed                                  
acpi0: reservation of fee00000, 1000 (3) failed                                  
acpi0: reservation of e0000000, 10000000 (3) failed                              
acpi0: reservation of 0, a0000 (3) failed                                        
acpi0: reservation of 100000, bff00000 (3) failed                                
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000                        
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0             
acpi_hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0    
Timecounter "HPET" frequency 14318180 Hz quality 900                             
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0                          
pci0: <ACPI PCI bus> on pcib0                                                    
pcib1: <ACPI PCI-PCI bridge> irq 16 at device 1.0 on pci0                        
pci1: <ACPI PCI bus> on pcib1                                                    
pcib2: <PCI-PCI bridge> mem 0xfe7e0000-0xfe7fffff irq 16 at device 0.0 on pci1   
pci2: <PCI bus> on pcib2                                                         
pcib3: <PCI-PCI bridge> irq 16 at device 4.0 on pci2                             
pci3: <PCI bus> on pcib3                                                         
vgapci0: <VGA-compatible display> port 0xb000-0xb0ff mem 0xc0000000-0xcfffffff,0xfe8e0000-0xfe8effff irq 16 at device 0.0 on pci3                                 
hdac0: <ATI RV770 High Definition Audio Controller> mem 0xfe8fc000-0xfe8fffff irq 17 at device 0.1 on pci3                                                        
hdac0: HDA Driver Revision: 20090329_0131                                        
hdac0: [ITHREAD]                                                                 
pcib4: <PCI-PCI bridge> irq 16 at device 8.0 on pci2                             
pci4: <PCI bus> on pcib4                                                         
vgapci1: <VGA-compatible display> port 0xc000-0xc0ff mem 0xd0000000-0xdfffffff,0xfe9e0000-0xfe9effff irq 16 at device 0.0 on pci4                                 
hdac1: <ATI RV770 High Definition Audio Controller> mem 0xfe9fc000-0xfe9fffff irq 17 at device 0.1 on pci4                                                        
hdac1: HDA Driver Revision: 20090329_0131                                        
hdac1: [ITHREAD]                                                                 
uhci0: <UHCI (generic) USB controller> port 0xa800-0xa81f irq 16 at device 26.0 on pci0                                                                           
uhci0: [GIANT-LOCKED]                                                            
uhci0: [ITHREAD]                                                                 
usb0: <UHCI (generic) USB controller> on uhci0                                   
usb0: USB revision 1.0                                                           
uhub0: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb0           
uhub0: 2 ports with 2 removable, self powered                                    
uhci1: <UHCI (generic) USB controller> port 0xa880-0xa89f irq 21 at device 26.1 on pci0                                                                           
uhci1: [GIANT-LOCKED]                                                            
uhci1: [ITHREAD]                                                                 
usb1: <UHCI (generic) USB controller> on uhci1                                   
usb1: USB revision 1.0                                                           
uhub1: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb1           
uhub1: 2 ports with 2 removable, self powered                                    
uhci2: <UHCI (generic) USB controller> port 0xac00-0xac1f irq 18 at device 26.2 on pci0                                                                           
uhci2: [GIANT-LOCKED]                                                            
uhci2: [ITHREAD]                                                                 
usb2: <UHCI (generic) USB controller> on uhci2                                   
usb2: USB revision 1.0                                                           
uhub2: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb2           
uhub2: 2 ports with 2 removable, self powered                                    
ehci0: <EHCI (generic) USB 2.0 controller> mem 0xfe6ffc00-0xfe6fffff irq 18 at device 26.7 on pci0                                                                
ehci0: [GIANT-LOCKED]                                                            
ehci0: [ITHREAD]                                                                 
usb3: EHCI version 1.0                                                           
usb3: companion controllers, 2 ports each: usb0 usb1 usb2                        
usb3: <EHCI (generic) USB 2.0 controller> on ehci0                               
usb3: USB revision 2.0                                                           
uhub3: <Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1> on usb3           
uhub3: 6 ports with 6 removable, self powered                                    
hdac2: <Intel 82801J High Definition Audio Controller> mem 0xfe6f8000-0xfe6fbfff irq 22 at device 27.0 on pci0                                                    
hdac2: HDA Driver Revision: 20090329_0131                                        
hdac2: [ITHREAD]                                                                 
pcib5: <ACPI PCI-PCI bridge> irq 17 at device 28.0 on pci0                       
pci6: <ACPI PCI bus> on pcib5                                                    
pcib6: <ACPI PCI-PCI bridge> irq 16 at device 28.5 on pci0                       
pci5: <ACPI PCI bus> on pcib6                                                    
ale0: <Atheros AR8121/AR8113/AR8114 PCIe Ethernet> port 0xdc00-0xdc7f mem 0xfeac0000-0xfeafffff irq 17 at device 0.0 on pci5                                      
ale0: 960 Tx FIFO, 1024 Rx FIFO                                                  
ale0: Using 1 MSI messages.                                                      
miibus0: <MII bus> on ale0                                                       
atphy0: <Atheros F1 10/100/1000 PHY> PHY 0 on miibus0                            
atphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT-FDX, auto     
ale0: Ethernet address: 00:24:8c:3d:46:69                                        
ale0: [FILTER]                                                                   
uhci3: <UHCI (generic) USB controller> port 0xa080-0xa09f irq 23 at device 29.0 on pci0                                                                           
uhci3: [GIANT-LOCKED]                                                            
uhci3: [ITHREAD]                                                                 
usb4: <UHCI (generic) USB controller> on uhci3                                   
usb4: USB revision 1.0                                                           
uhub4: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb4           
uhub4: 2 ports with 2 removable, self powered                                    
uhci4: <UHCI (generic) USB controller> port 0xa400-0xa41f irq 19 at device 29.1 on pci0                                                                           
uhci4: [GIANT-LOCKED]                                                            
uhci4: [ITHREAD]                                                                 
usb5: <UHCI (generic) USB controller> on uhci4                                   
usb5: USB revision 1.0                                                           
uhub5: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb5           
uhub5: 2 ports with 2 removable, self powered                                    
uhci5: <UHCI (generic) USB controller> port 0xa480-0xa49f irq 18 at device 29.2 on pci0                                                                           
uhci5: [GIANT-LOCKED]                                                            
uhci5: [ITHREAD]                                                                 
usb6: <UHCI (generic) USB controller> on uhci5                                   
usb6: USB revision 1.0                                                           
uhub6: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb6           
uhub6: 2 ports with 2 removable, self powered                                    
ehci1: <EHCI (generic) USB 2.0 controller> mem 0xfe6ff800-0xfe6ffbff irq 23 at device 29.7 on pci0                                                                
ehci1: [GIANT-LOCKED]                                                            
ehci1: [ITHREAD]                                                                 
usb7: EHCI version 1.0                                                           
usb7: companion controllers, 2 ports each: usb4 usb5 usb6                        
usb7: <EHCI (generic) USB 2.0 controller> on ehci1                               
usb7: USB revision 2.0                                                           
uhub7: <Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1> on usb7           
uhub7: 6 ports with 6 removable, self powered                                    
pcib7: <ACPI PCI-PCI bridge> at device 30.0 on pci0                              
pci7: <ACPI PCI bus> on pcib7                                                    
rl0: <RealTek 8139 10/100BaseTX> port 0xe800-0xe8ff mem 0xfebffc00-0xfebffcff irq 17 at device 1.0 on pci7                                                        
miibus1: <MII bus> on rl0                                                        
rlphy0: <RealTek internal media interface> PHY 0 on miibus1                      
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto                    
rl0: Ethernet address: 00:11:6b:93:ea:a6                                         
rl0: [ITHREAD]                                                                   
fwohci0: <Lucent FW322/323> mem 0xfebfe000-0xfebfefff irq 19 at device 3.0 on pci7                                                                                
fwohci0: [FILTER]                                                                
fwohci0: OHCI version 1.0 (ROM=1)                                                
fwohci0: No. of Isochronous channels is 8.                                       
fwohci0: EUI64 00:1e:8c:00:01:c6:73:12                                           
fwohci0: Phy 1394a available S400, 2 ports.                                      
fwohci0: Link S400, max_rec 2048 bytes.                                          
firewire0: <IEEE1394(FireWire) bus> on fwohci0                                   
fwe0: <Ethernet over FireWire> on firewire0                                      
if_fwe0: Fake Ethernet address: 02:1e:8c:c6:73:12                                
fwe0: Ethernet address: 02:1e:8c:c6:73:12                                        
fwip0: <IP over FireWire> on firewire0                                           
fwip0: Firewire address: 00:1e:8c:00:01:c6:73:12 @ 0xfffe00000000, S400, maxrec 2048                                                                              
sbp0: <SBP-2/SCSI over FireWire> on firewire0                                    
dcons_crom0: <dcons configuration ROM> on firewire0                              
dcons_crom0: bus_addr 0xbff4c000                                                 
fwohci0: Initiate bus reset                                                      
fwohci0: BUS reset                                                               
fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode                             
isab0: <PCI-ISA bridge> at device 31.0 on pci0                                   
isa0: <ISA bus> on isab0                                                         
atapci0: <Intel AHCI controller> port 0x9c00-0x9c07,0x9880-0x9883,0x9800-0x9807,0x9480-0x9483,0x9400-0x941f mem 0xfe6fe800-0xfe6fefff irq 19 at device 31.2 on pci0                                                                                
atapci0: [ITHREAD]                                                               
atapci0: AHCI Version 01.20 controller with 6 ports detected                     
ata2: <ATA channel 0> on atapci0                                                 
ata2: [ITHREAD]                                                                  
ata3: <ATA channel 1> on atapci0                                                 
ata3: [ITHREAD]                                                                  
ata4: <ATA channel 2> on atapci0                                                 
ata4: [ITHREAD]                                                                  
ata5: <ATA channel 3> on atapci0                                                 
ata5: [ITHREAD]                                                                  
ata6: <ATA channel 4> on atapci0                                                 
ata6: [ITHREAD]                                                                  
ata7: <ATA channel 5> on atapci0                                                 
ata7: [ITHREAD]                                                                  
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)                    
acpi_button0: <Power Button> on acpi0                                            
sio0: configured irq 4 not in bitmap of probed irqs 0                            
sio0: port may not be enabled                                                    
sio0: configured irq 4 not in bitmap of probed irqs 0                            
sio0: port may not be enabled                                                    
sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0    
sio0: type 16550A                                                                
sio0: [FILTER]                                                                   
cpu0: <ACPI CPU> on acpi0                                                        
ACPI Warning (tbutils-0243): Incorrect checksum in table [OEMB] -  EE, should be ED [20070320]                                                                    
est0: <Enhanced SpeedStep Frequency Control> on cpu0                             
p4tcc0: <CPU Frequency Thermal Control> on cpu0                                  
cpu1: <ACPI CPU> on acpi0                                                        
est1: <Enhanced SpeedStep Frequency Control> on cpu1                             
est: CPU supports Enhanced Speedstep, but is not recognized.                     
est: cpu_vendor GenuineIntel, msr 61a092006000920                                
device_attach: est1 attach returned 6                                            
p4tcc1: <CPU Frequency Thermal Control> on cpu1                                  
sc0: <System console> at flags 0x100 on isa0                                     
sc0: VGA <16 virtual consoles, flags=0x300>                                      
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0        
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0                 
atkbd0: <AT Keyboard> irq 1 on atkbdc0                                           
kbd0 at atkbd0                                                                   
atkbd0: [GIANT-LOCKED]                                                           
atkbd0: [ITHREAD]                                                                
ppc0: cannot reserve I/O port range                                              
sio1: configured irq 3 not in bitmap of probed irqs 0                            
sio1: port may not be enabled                                                    
ugen0: <vendor 0x0c45 USB camera, class 0/0, rev 1.10/1.01, addr 2> on uhub1     
ulpt0: <HP Deskjet 5700, class 0/0, rev 2.00/1.00, addr 2> on uhub4              
ulpt0: using bi-directional mode                                                 
ums0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5         
ums0: 16 buttons and Z dir.                                                      
uhid0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5        
ukbd0: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
kbd2 at ukbd0                                                                    
uhid1: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
Timecounters tick every 1.000 msec                                               
firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me)                              
firewire0: bus manager 0 (me)                                                    
ad4: 76318MB <Seagate ST380815AS 4.AAB> at ata2-master SATA300                   
ad6: 76319MB <Seagate ST380815AS 4.AAB> at ata3-master SATA300                   
acd0: DVDROM <HL-DT-STDVD-ROM GDRH20N/0L02> at ata4-master SATA150               
ad10: 152626MB <Maxtor 6G160E0 KA101V00> at ata5-master SATA300                  
GEOM_LABEL: Label for provider ad4s1 is ntfs/System Reserved.                    
ad12: 190781MB <SAMSUNG HD200HJ KF100-06> at ata6-master SATA150                 
acd1: DVDR <TSSTcorp CDDVDW SH-S223L/SB01> at ata7-master SATA150                
hdac0: HDA Codec #0: ATI R6xx HDMI                                               
pcm0: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac0                 
hdac1: HDA Codec #0: ATI R6xx HDMI                                               
pcm1: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac1                 
hdac2: HDA Codec #0: Realtek ALC888                                              
pcm2: <HDA Realtek ALC888 PCM #0 Analog> at cad 0 nid 1 on hdac2                 
pcm3: <HDA Realtek ALC888 PCM #1 Analog> at cad 0 nid 1 on hdac2                 
pcm4: <HDA Realtek ALC888 PCM #2 Digital> at cad 0 nid 1 on hdac2                
pcm5: <HDA Realtek ALC888 PCM #3 Digital> at cad 0 nid 1 on hdac2                
GEOM_LABEL: Label for provider ad12s1 is ntfs/Home.                              
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
(probe1:ata5:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe1:ata5:0:0:0): CAM Status: SCSI Status Error                               
(probe1:ata5:0:0:0): SCSI Status: Check Condition                                
(probe1:ata5:0:0:0): NOT READY asc:3a,1                                          
(probe1:ata5:0:0:0): Medium not present - tray closed                            
(probe1:ata5:0:0:0): Unretryable error                                           
(probe0:ata2:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe0:ata2:0:0:0): CAM Status: SCSI Status Error                               
(probe0:ata2:0:0:0): SCSI Status: Check Condition                                
(probe0:ata2:0:0:0): NOT READY asc:3a,0                                          
(probe0:ata2:0:0:0): Medium not present                                          
(probe0:ata2:0:0:0): Unretryable error                                           
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
SMP: AP CPU #1 Launched!                                                         
cd0 at ata2 bus 0 target 0 lun 0                                                 
cd0: <HL-DT-ST DVD-ROM GDRH20N 0L02> Removable CD-ROM SCSI-0 device              
cd0: 3.300MB/s transfers                                                         
cd0: Attempt to query device size failed: NOT READY, Medium not present          
cd1 at ata5 bus 0 target 0 lun 0                                                 
cd1: <TSSTcorp CDDVDW SH-S223L SB01> Removable CD-ROM SCSI-0 device              
cd1: 3.300MB/s transfers                                                         
cd1: Attempt to query device size failed: NOT READY, Medium not present - tray closed                                                                             
Trying to mount root from ufs:/dev/ad10s1a                                       
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.                                
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.                                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.                                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.                                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.                                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.                                
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.                                
rl0: link state changed to UP                                                    
module_register: module vgapci/radeon already exists!                            
Module vgapci/radeon failed to register: 17                                      
Waiting (max 60 seconds) for system process `vnlru' to stop...done               
Waiting (max 60 seconds) for system process `bufdaemon' to stop...done           
Waiting (max 60 seconds) for system process `syncer' to stop...                  
Syncing disks, vnodes remaining...7 5 4 3 1 1 0 0 0 done                         
All buffers synced.                                                              
Copyright (c) 1992-2009 The FreeBSD Project.                                     
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994         
        The Regents of the University of California. All rights reserved.        
FreeBSD is a registered trademark of The FreeBSD Foundation.                     
FreeBSD 7.2-RELEASE-p3 #0: Thu Aug 20 16:35:30 CEST 2009                         
    root@fatcat.at.home:/usr/obj/usr/src/sys/FATCAT                              
Timecounter "i8254" frequency 1193182 Hz quality 0                               
CPU: Intel(R) Core(TM)2 Duo CPU     E8400  @ 3.00GHz (2999.67-MHz K8-class CPU)  
  Origin = "GenuineIntel"  Id = 0x10676  Stepping = 6                            
  Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>                   
  Features2=0x8e3fd<SSE3,RSVD2,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,<b19>>                                                                             
  AMD Features=0x20100800<SYSCALL,NX,LM>                                         
  AMD Features2=0x1<LAHF>                                                        
  Cores per package: 2                                                           
usable memory = 6432477184 (6134 MB)                                             
avail memory  = 6187540480 (5900 MB)                                             
ACPI APIC Table: <A_M_I_ OEMAPIC >                                               
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs                              
 cpu0 (BSP): APIC ID:  0                                                         
 cpu1 (AP): APIC ID:  1                                                          
ioapic0 <Version 2.0> irqs 0-23 on motherboard                                   
kbd1 at kbdmux0                                                                  
acpi0: <A_M_I_ OEMXSDT> on motherboard                                           
acpi0: [ITHREAD]                                                                 
acpi0: Power Button (fixed)                                                      
acpi0: reservation of fed08000, 1000 (3) failed                                  
acpi0: reservation of fed1c000, 4000 (3) failed                                  
acpi0: reservation of fed20000, 20000 (3) failed                                 
acpi0: reservation of fed50000, 40000 (3) failed                                 
acpi0: reservation of ffc00000, 300000 (3) failed                                
acpi0: reservation of fec00000, 1000 (3) failed                                  
acpi0: reservation of fee00000, 1000 (3) failed                                  
acpi0: reservation of e0000000, 10000000 (3) failed                              
acpi0: reservation of 0, a0000 (3) failed                                        
acpi0: reservation of 100000, bff00000 (3) failed                                
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000                        
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0             
acpi_hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0    
Timecounter "HPET" frequency 14318180 Hz quality 900                             
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0                          
pci0: <ACPI PCI bus> on pcib0                                                    
pcib1: <ACPI PCI-PCI bridge> irq 16 at device 1.0 on pci0                        
pci1: <ACPI PCI bus> on pcib1                                                    
pcib2: <PCI-PCI bridge> mem 0xfe7e0000-0xfe7fffff irq 16 at device 0.0 on pci1   
pci2: <PCI bus> on pcib2                                                         
pcib3: <PCI-PCI bridge> irq 16 at device 4.0 on pci2                             
pci3: <PCI bus> on pcib3                                                         
vgapci0: <VGA-compatible display> port 0xb000-0xb0ff mem 0xc0000000-0xcfffffff,0xfe8e0000-0xfe8effff irq 16 at device 0.0 on pci3                                 
hdac0: <ATI RV770 High Definition Audio Controller> mem 0xfe8fc000-0xfe8fffff irq 17 at device 0.1 on pci3                                                        
hdac0: HDA Driver Revision: 20090329_0131                                        
hdac0: [ITHREAD]                                                                 
pcib4: <PCI-PCI bridge> irq 16 at device 8.0 on pci2                             
pci4: <PCI bus> on pcib4                                                         
vgapci1: <VGA-compatible display> port 0xc000-0xc0ff mem 0xd0000000-0xdfffffff,0xfe9e0000-0xfe9effff irq 16 at device 0.0 on pci4                                 
hdac1: <ATI RV770 High Definition Audio Controller> mem 0xfe9fc000-0xfe9fffff irq 17 at device 0.1 on pci4                                                        
hdac1: HDA Driver Revision: 20090329_0131                                        
hdac1: [ITHREAD]                                                                 
uhci0: <UHCI (generic) USB controller> port 0xa800-0xa81f irq 16 at device 26.0 on pci0                                                                           
uhci0: [GIANT-LOCKED]                                                            
uhci0: [ITHREAD]                                                                 
usb0: <UHCI (generic) USB controller> on uhci0                                   
usb0: USB revision 1.0                                                           
uhub0: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb0           
uhub0: 2 ports with 2 removable, self powered                                    
uhci1: <UHCI (generic) USB controller> port 0xa880-0xa89f irq 21 at device 26.1 on pci0                                                                           
uhci1: [GIANT-LOCKED]                                                            
uhci1: [ITHREAD]                                                                 
usb1: <UHCI (generic) USB controller> on uhci1                                   
usb1: USB revision 1.0                                                           
uhub1: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb1           
uhub1: 2 ports with 2 removable, self powered                                    
uhci2: <UHCI (generic) USB controller> port 0xac00-0xac1f irq 18 at device 26.2 on pci0                                                                           
uhci2: [GIANT-LOCKED]                                                            
uhci2: [ITHREAD]                                                                 
usb2: <UHCI (generic) USB controller> on uhci2                                   
usb2: USB revision 1.0                                                           
uhub2: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb2           
uhub2: 2 ports with 2 removable, self powered                                    
ehci0: <EHCI (generic) USB 2.0 controller> mem 0xfe6ffc00-0xfe6fffff irq 18 at device 26.7 on pci0                                                                
ehci0: [GIANT-LOCKED]                                                            
ehci0: [ITHREAD]                                                                 
usb3: EHCI version 1.0                                                           
usb3: companion controllers, 2 ports each: usb0 usb1 usb2                        
usb3: <EHCI (generic) USB 2.0 controller> on ehci0                               
usb3: USB revision 2.0                                                           
uhub3: <Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1> on usb3           
uhub3: 6 ports with 6 removable, self powered                                    
hdac2: <Intel 82801J High Definition Audio Controller> mem 0xfe6f8000-0xfe6fbfff irq 22 at device 27.0 on pci0                                                    
hdac2: HDA Driver Revision: 20090329_0131                                        
hdac2: [ITHREAD]                                                                 
pcib5: <ACPI PCI-PCI bridge> irq 17 at device 28.0 on pci0                       
pci6: <ACPI PCI bus> on pcib5                                                    
pcib6: <ACPI PCI-PCI bridge> irq 16 at device 28.5 on pci0                       
pci5: <ACPI PCI bus> on pcib6                                                    
ale0: <Atheros AR8121/AR8113/AR8114 PCIe Ethernet> port 0xdc00-0xdc7f mem 0xfeac0000-0xfeafffff irq 17 at device 0.0 on pci5                                      
ale0: 960 Tx FIFO, 1024 Rx FIFO                                                  
ale0: Using 1 MSI messages.                                                      
miibus0: <MII bus> on ale0                                                       
atphy0: <Atheros F1 10/100/1000 PHY> PHY 0 on miibus0                            
atphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT-FDX, auto     
ale0: Ethernet address: 00:24:8c:3d:46:69                                        
ale0: [FILTER]                                                                   
uhci3: <UHCI (generic) USB controller> port 0xa080-0xa09f irq 23 at device 29.0 on pci0                                                                           
uhci3: [GIANT-LOCKED]                                                            
uhci3: [ITHREAD]                                                                 
usb4: <UHCI (generic) USB controller> on uhci3                                   
usb4: USB revision 1.0                                                           
uhub4: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb4           
uhub4: 2 ports with 2 removable, self powered                                    
uhci4: <UHCI (generic) USB controller> port 0xa400-0xa41f irq 19 at device 29.1 on pci0                                                                           
uhci4: [GIANT-LOCKED]                                                            
uhci4: [ITHREAD]                                                                 
usb5: <UHCI (generic) USB controller> on uhci4                                   
usb5: USB revision 1.0                                                           
uhub5: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb5           
uhub5: 2 ports with 2 removable, self powered                                    
uhci5: <UHCI (generic) USB controller> port 0xa480-0xa49f irq 18 at device 29.2 on pci0                                                                           
uhci5: [GIANT-LOCKED]                                                            
uhci5: [ITHREAD]                                                                 
usb6: <UHCI (generic) USB controller> on uhci5                                   
usb6: USB revision 1.0                                                           
uhub6: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb6           
uhub6: 2 ports with 2 removable, self powered                                    
ehci1: <EHCI (generic) USB 2.0 controller> mem 0xfe6ff800-0xfe6ffbff irq 23 at device 29.7 on pci0                                                                
ehci1: [GIANT-LOCKED]                                                            
ehci1: [ITHREAD]                                                                 
usb7: EHCI version 1.0                                                           
usb7: companion controllers, 2 ports each: usb4 usb5 usb6                        
usb7: <EHCI (generic) USB 2.0 controller> on ehci1                               
usb7: USB revision 2.0                                                           
uhub7: <Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1> on usb7           
uhub7: 6 ports with 6 removable, self powered                                    
pcib7: <ACPI PCI-PCI bridge> at device 30.0 on pci0                              
pci7: <ACPI PCI bus> on pcib7                                                    
rl0: <RealTek 8139 10/100BaseTX> port 0xe800-0xe8ff mem 0xfebffc00-0xfebffcff irq 17 at device 1.0 on pci7                                                        
miibus1: <MII bus> on rl0                                                        
rlphy0: <RealTek internal media interface> PHY 0 on miibus1                      
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto                    
rl0: Ethernet address: 00:11:6b:93:ea:a6                                         
rl0: [ITHREAD]                                                                   
fwohci0: <Lucent FW322/323> mem 0xfebfe000-0xfebfefff irq 19 at device 3.0 on pci7                                                                                
fwohci0: [FILTER]                                                                
fwohci0: OHCI version 1.0 (ROM=1)                                                
fwohci0: No. of Isochronous channels is 8.                                       
fwohci0: EUI64 00:1e:8c:00:01:c6:73:12                                           
fwohci0: Phy 1394a available S400, 2 ports.                                      
fwohci0: Link S400, max_rec 2048 bytes.                                          
firewire0: <IEEE1394(FireWire) bus> on fwohci0                                   
fwe0: <Ethernet over FireWire> on firewire0                                      
if_fwe0: Fake Ethernet address: 02:1e:8c:c6:73:12                                
fwe0: Ethernet address: 02:1e:8c:c6:73:12                                        
fwip0: <IP over FireWire> on firewire0                                           
fwip0: Firewire address: 00:1e:8c:00:01:c6:73:12 @ 0xfffe00000000, S400, maxrec 2048                                                                              
sbp0: <SBP-2/SCSI over FireWire> on firewire0                                    
dcons_crom0: <dcons configuration ROM> on firewire0                              
dcons_crom0: bus_addr 0xbff4c000                                                 
fwohci0: Initiate bus reset                                                      
fwohci0: BUS reset                                                               
fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode                             
isab0: <PCI-ISA bridge> at device 31.0 on pci0                                   
isa0: <ISA bus> on isab0                                                         
atapci0: <Intel AHCI controller> port 0x9c00-0x9c07,0x9880-0x9883,0x9800-0x9807,0x9480-0x9483,0x9400-0x941f mem 0xfe6fe800-0xfe6fefff irq 19 at device 31.2 on pci0                                                                                
atapci0: [ITHREAD]                                                               
atapci0: AHCI Version 01.20 controller with 6 ports detected                     
ata2: <ATA channel 0> on atapci0                                                 
ata2: [ITHREAD]                                                                  
ata3: <ATA channel 1> on atapci0                                                 
ata3: [ITHREAD]                                                                  
ata4: <ATA channel 2> on atapci0                                                 
ata4: [ITHREAD]                                                                  
ata5: <ATA channel 3> on atapci0                                                 
ata5: [ITHREAD]                                                                  
ata6: <ATA channel 4> on atapci0                                                 
ata6: [ITHREAD]                                                                  
ata7: <ATA channel 5> on atapci0                                                 
ata7: [ITHREAD]                                                                  
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)                    
acpi_button0: <Power Button> on acpi0                                            
sio0: configured irq 4 not in bitmap of probed irqs 0                            
sio0: port may not be enabled                                                    
sio0: configured irq 4 not in bitmap of probed irqs 0                            
sio0: port may not be enabled                                                    
sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0    
sio0: type 16550A                                                                
sio0: [FILTER]                                                                   
cpu0: <ACPI CPU> on acpi0                                                        
ACPI Warning (tbutils-0243): Incorrect checksum in table [OEMB] -  EE, should be ED [20070320]                                                                    
est0: <Enhanced SpeedStep Frequency Control> on cpu0                             
p4tcc0: <CPU Frequency Thermal Control> on cpu0                                  
cpu1: <ACPI CPU> on acpi0                                                        
est1: <Enhanced SpeedStep Frequency Control> on cpu1                             
est: CPU supports Enhanced Speedstep, but is not recognized.                     
est: cpu_vendor GenuineIntel, msr 61a092006000920                                
device_attach: est1 attach returned 6                                            
p4tcc1: <CPU Frequency Thermal Control> on cpu1                                  
sc0: <System console> at flags 0x100 on isa0                                     
sc0: VGA <16 virtual consoles, flags=0x300>                                      
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0        
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0                 
atkbd0: <AT Keyboard> irq 1 on atkbdc0                                           
kbd0 at atkbd0                                                                   
atkbd0: [GIANT-LOCKED]                                                           
atkbd0: [ITHREAD]                                                                
ppc0: cannot reserve I/O port range                                              
sio1: configured irq 3 not in bitmap of probed irqs 0                            
sio1: port may not be enabled                                                    
ulpt0: <HP Deskjet 5700, class 0/0, rev 2.00/1.00, addr 2> on uhub4              
ulpt0: using bi-directional mode                                                 
ums0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5         
ums0: 16 buttons and Z dir.                                                      
uhid0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5        
ukbd0: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
kbd2 at ukbd0                                                                    
uhid1: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
Timecounters tick every 1.000 msec                                               
firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me)                              
firewire0: bus manager 0 (me)                                                    
ad4: 76318MB <Seagate ST380815AS 4.AAB> at ata2-master SATA300                   
ad6: 76319MB <Seagate ST380815AS 4.AAB> at ata3-master SATA300                   
acd0: DVDROM <HL-DT-STDVD-ROM GDRH20N/0L02> at ata4-master SATA150               
ad10: 152626MB <Maxtor 6G160E0 KA101V00> at ata5-master SATA300                  
ad12: 190781MB <SAMSUNG HD200HJ KF100-06> at ata6-master SATA150                 
GEOM_LABEL: Label for provider ad4s1 is ntfs/System Reserved.                    
acd1: DVDR <TSSTcorp CDDVDW SH-S223L/SB01> at ata7-master SATA150                
hdac0: HDA Codec #0: ATI R6xx HDMI                                               
pcm0: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac0                 
hdac1: HDA Codec #0: ATI R6xx HDMI                                               
pcm1: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac1                 
hdac2: HDA Codec #0: Realtek ALC888                                              
pcm2: <HDA Realtek ALC888 PCM #0 Analog> at cad 0 nid 1 on hdac2                 
pcm3: <HDA Realtek ALC888 PCM #1 Analog> at cad 0 nid 1 on hdac2                 
pcm4: <HDA Realtek ALC888 PCM #2 Digital> at cad 0 nid 1 on hdac2                
pcm5: <HDA Realtek ALC888 PCM #3 Digital> at cad 0 nid 1 on hdac2                
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
GEOM_LABEL: Label for provider ad12s1 is ntfs/Home.                              
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
(probe1:ata5:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe1:ata5:0:0:0): CAM Status: SCSI Status Error                               
(probe1:ata5:0:0:0): SCSI Status: Check Condition                                
(probe1:ata5:0:0:0): NOT READY asc:3a,1                                          
(probe1:ata5:0:0:0): Medium not present - tray closed                            
(probe1:ata5:0:0:0): Unretryable error                                           
(probe0:ata2:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe0:ata2:0:0:0): CAM Status: SCSI Status Error                               
(probe0:ata2:0:0:0): SCSI Status: Check Condition                                
(probe0:ata2:0:0:0): NOT READY asc:3a,0                                          
(probe0:ata2:0:0:0): Medium not present                                          
(probe0:ata2:0:0:0): Unretryable error                                           
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
SMP: AP CPU #1 Launched!                                                         
cd0 at ata2 bus 0 target 0 lun 0                                                 
cd0: <HL-DT-ST DVD-ROM GDRH20N 0L02> Removable CD-ROM SCSI-0 device              
cd0: 3.300MB/s transfers                                                         
cd0: Attempt to query device size failed: NOT READY, Medium not present          
cd1 at ata5 bus 0 target 0 lun 0                                                 
cd1: <TSSTcorp CDDVDW SH-S223L SB01> Removable CD-ROM SCSI-0 device              
cd1: 3.300MB/s transfers                                                         
cd1: Attempt to query device size failed: NOT READY, Medium not present - tray closed                                                                             
Trying to mount root from ufs:/dev/ad10s1a                                       
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.                                
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.                                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.                                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.                                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.                                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.                                
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.                                
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.                                
rl0: link state changed to UP                                                    
module_register: module vgapci/radeon already exists!                            
Module vgapci/radeon failed to register: 17                                      
Waiting (max 60 seconds) for system process `vnlru' to stop...done               
Waiting (max 60 seconds) for system process `bufdaemon' to stop...done           
Waiting (max 60 seconds) for system process `syncer' to stop...                  
Syncing disks, vnodes remaining...7 3 4 1 1 1 0 0 0 done                         
All buffers synced.                                                              
Copyright (c) 1992-2009 The FreeBSD Project.                                     
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994         
        The Regents of the University of California. All rights reserved.        
FreeBSD is a registered trademark of The FreeBSD Foundation.                     
FreeBSD 7.2-RELEASE-p3 #0: Thu Aug 20 16:35:30 CEST 2009                         
    root@fatcat.at.home:/usr/obj/usr/src/sys/FATCAT                              
Timecounter "i8254" frequency 1193182 Hz quality 0                               
CPU: Intel(R) Core(TM)2 Duo CPU     E8400  @ 3.00GHz (2999.67-MHz K8-class CPU)  
  Origin = "GenuineIntel"  Id = 0x10676  Stepping = 6                            
  Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>                   
  Features2=0x8e3fd<SSE3,RSVD2,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,<b19>>                                                                             
  AMD Features=0x20100800<SYSCALL,NX,LM>                                         
  AMD Features2=0x1<LAHF>                                                        
  Cores per package: 2                                                           
usable memory = 6432477184 (6134 MB)                                             
avail memory  = 6187540480 (5900 MB)                                             
ACPI APIC Table: <A_M_I_ OEMAPIC >                                               
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs                              
 cpu0 (BSP): APIC ID:  0                                                         
 cpu1 (AP): APIC ID:  1                                                          
ioapic0 <Version 2.0> irqs 0-23 on motherboard                                   
kbd1 at kbdmux0                                                                  
acpi0: <A_M_I_ OEMXSDT> on motherboard                                           
acpi0: [ITHREAD]                                                                 
acpi0: Power Button (fixed)                                                      
acpi0: reservation of fed08000, 1000 (3) failed                                  
acpi0: reservation of fed1c000, 4000 (3) failed                                  
acpi0: reservation of fed20000, 20000 (3) failed                                 
acpi0: reservation of fed50000, 40000 (3) failed                                 
acpi0: reservation of ffc00000, 300000 (3) failed                                
acpi0: reservation of fec00000, 1000 (3) failed                                  
acpi0: reservation of fee00000, 1000 (3) failed                                  
acpi0: reservation of e0000000, 10000000 (3) failed                              
acpi0: reservation of 0, a0000 (3) failed                                        
acpi0: reservation of 100000, bff00000 (3) failed                                
Timecounter "ACPI-safe" frequency 3579545 Hz quality 850                         
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0             
acpi_hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0    
Timecounter "HPET" frequency 14318180 Hz quality 900                             
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0                          
pci0: <ACPI PCI bus> on pcib0                                                    
pcib1: <ACPI PCI-PCI bridge> irq 16 at device 1.0 on pci0                        
pci1: <ACPI PCI bus> on pcib1                                                    
pcib2: <PCI-PCI bridge> mem 0xfe7e0000-0xfe7fffff irq 16 at device 0.0 on pci1   
pci2: <PCI bus> on pcib2                                                         
pcib3: <PCI-PCI bridge> irq 16 at device 4.0 on pci2                             
pci3: <PCI bus> on pcib3                                                         
vgapci0: <VGA-compatible display> port 0xb000-0xb0ff mem 0xc0000000-0xcfffffff,0xfe8e0000-0xfe8effff irq 16 at device 0.0 on pci3                                 
hdac0: <ATI RV770 High Definition Audio Controller> mem 0xfe8fc000-0xfe8fffff irq 17 at device 0.1 on pci3                                                        
hdac0: HDA Driver Revision: 20090329_0131                                        
hdac0: [ITHREAD]                                                                 
pcib4: <PCI-PCI bridge> irq 16 at device 8.0 on pci2                             
pci4: <PCI bus> on pcib4                                                         
vgapci1: <VGA-compatible display> port 0xc000-0xc0ff mem 0xd0000000-0xdfffffff,0xfe9e0000-0xfe9effff irq 16 at device 0.0 on pci4                                 
hdac1: <ATI RV770 High Definition Audio Controller> mem 0xfe9fc000-0xfe9fffff irq 17 at device 0.1 on pci4                                                        
hdac1: HDA Driver Revision: 20090329_0131                                        
hdac1: [ITHREAD]                                                                 
uhci0: <UHCI (generic) USB controller> port 0xa800-0xa81f irq 16 at device 26.0 on pci0                                                                           
uhci0: [GIANT-LOCKED]                                                            
uhci0: [ITHREAD]                                                                 
usb0: <UHCI (generic) USB controller> on uhci0                                   
usb0: USB revision 1.0                                                           
uhub0: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb0           
uhub0: 2 ports with 2 removable, self powered                                    
uhci1: <UHCI (generic) USB controller> port 0xa880-0xa89f irq 21 at device 26.1 on pci0                                                                           
uhci1: [GIANT-LOCKED]                                                            
uhci1: [ITHREAD]                                                                 
usb1: <UHCI (generic) USB controller> on uhci1                                   
usb1: USB revision 1.0                                                           
uhub1: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb1           
uhub1: 2 ports with 2 removable, self powered                                    
uhci2: <UHCI (generic) USB controller> port 0xac00-0xac1f irq 18 at device 26.2 on pci0                                                                           
uhci2: [GIANT-LOCKED]                                                            
uhci2: [ITHREAD]                                                                 
usb2: <UHCI (generic) USB controller> on uhci2                                   
usb2: USB revision 1.0                                                           
uhub2: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb2           
uhub2: 2 ports with 2 removable, self powered                                    
ehci0: <EHCI (generic) USB 2.0 controller> mem 0xfe6ffc00-0xfe6fffff irq 18 at device 26.7 on pci0                                                                
ehci0: [GIANT-LOCKED]                                                            
ehci0: [ITHREAD]                                                                 
usb3: EHCI version 1.0                                                           
usb3: companion controllers, 2 ports each: usb0 usb1 usb2                        
usb3: <EHCI (generic) USB 2.0 controller> on ehci0                               
usb3: USB revision 2.0                                                           
uhub3: <Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1> on usb3           
uhub3: 6 ports with 6 removable, self powered                                    
hdac2: <Intel 82801J High Definition Audio Controller> mem 0xfe6f8000-0xfe6fbfff irq 22 at device 27.0 on pci0                                                    
hdac2: HDA Driver Revision: 20090329_0131                                        
hdac2: [ITHREAD]                                                                 
pcib5: <ACPI PCI-PCI bridge> irq 17 at device 28.0 on pci0                       
pci6: <ACPI PCI bus> on pcib5                                                    
pcib6: <ACPI PCI-PCI bridge> irq 16 at device 28.5 on pci0                       
pci5: <ACPI PCI bus> on pcib6                                                    
ale0: <Atheros AR8121/AR8113/AR8114 PCIe Ethernet> port 0xdc00-0xdc7f mem 0xfeac0000-0xfeafffff irq 17 at device 0.0 on pci5                                      
ale0: 960 Tx FIFO, 1024 Rx FIFO                                                  
ale0: Using 1 MSI messages.                                                      
miibus0: <MII bus> on ale0                                                       
atphy0: <Atheros F1 10/100/1000 PHY> PHY 0 on miibus0                            
atphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT-FDX, auto     
ale0: Ethernet address: 00:24:8c:3d:46:69                                        
ale0: [FILTER]                                                                   
uhci3: <UHCI (generic) USB controller> port 0xa080-0xa09f irq 23 at device 29.0 on pci0                                                                           
uhci3: [GIANT-LOCKED]                                                            
uhci3: [ITHREAD]                                                                 
usb4: <UHCI (generic) USB controller> on uhci3                                   
usb4: USB revision 1.0                                                           
uhub4: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb4           
uhub4: 2 ports with 2 removable, self powered                                    
uhci4: <UHCI (generic) USB controller> port 0xa400-0xa41f irq 19 at device 29.1 on pci0                                                                           
uhci4: [GIANT-LOCKED]                                                            
uhci4: [ITHREAD]                                                                 
usb5: <UHCI (generic) USB controller> on uhci4                                   
usb5: USB revision 1.0                                                           
uhub5: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb5           
uhub5: 2 ports with 2 removable, self powered                                    
uhci5: <UHCI (generic) USB controller> port 0xa480-0xa49f irq 18 at device 29.2 on pci0                                                                           
uhci5: [GIANT-LOCKED]                                                            
uhci5: [ITHREAD]                                                                 
usb6: <UHCI (generic) USB controller> on uhci5                                   
usb6: USB revision 1.0                                                           
uhub6: <Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1> on usb6           
uhub6: 2 ports with 2 removable, self powered                                    
ehci1: <EHCI (generic) USB 2.0 controller> mem 0xfe6ff800-0xfe6ffbff irq 23 at device 29.7 on pci0                                                                
ehci1: [GIANT-LOCKED]                                                            
ehci1: [ITHREAD]                                                                 
usb7: EHCI version 1.0                                                           
usb7: companion controllers, 2 ports each: usb4 usb5 usb6                        
usb7: <EHCI (generic) USB 2.0 controller> on ehci1                               
usb7: USB revision 2.0                                                           
uhub7: <Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1> on usb7           
uhub7: 6 ports with 6 removable, self powered                                    
pcib7: <ACPI PCI-PCI bridge> at device 30.0 on pci0                              
pci7: <ACPI PCI bus> on pcib7                                                    
rl0: <RealTek 8139 10/100BaseTX> port 0xe800-0xe8ff mem 0xfebffc00-0xfebffcff irq 17 at device 1.0 on pci7                                                        
miibus1: <MII bus> on rl0                                                        
rlphy0: <RealTek internal media interface> PHY 0 on miibus1                      
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto                    
rl0: Ethernet address: 00:11:6b:93:ea:a6                                         
rl0: [ITHREAD]                                                                   
fwohci0: <Lucent FW322/323> mem 0xfebfe000-0xfebfefff irq 19 at device 3.0 on pci7                                                                                
fwohci0: [FILTER]                                                                
fwohci0: OHCI version 1.0 (ROM=1)                                                
fwohci0: No. of Isochronous channels is 8.                                       
fwohci0: EUI64 00:1e:8c:00:01:c6:73:12                                           
fwohci0: Phy 1394a available S400, 2 ports.                                      
fwohci0: Link S400, max_rec 2048 bytes.                                          
firewire0: <IEEE1394(FireWire) bus> on fwohci0                                   
fwe0: <Ethernet over FireWire> on firewire0                                      
if_fwe0: Fake Ethernet address: 02:1e:8c:c6:73:12                                
fwe0: Ethernet address: 02:1e:8c:c6:73:12                                        
fwip0: <IP over FireWire> on firewire0                                           
fwip0: Firewire address: 00:1e:8c:00:01:c6:73:12 @ 0xfffe00000000, S400, maxrec 2048                                                                              
sbp0: <SBP-2/SCSI over FireWire> on firewire0                                    
dcons_crom0: <dcons configuration ROM> on firewire0                              
dcons_crom0: bus_addr 0xbff4c000                                                 
fwohci0: Initiate bus reset                                                      
fwohci0: BUS reset                                                               
fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode                             
isab0: <PCI-ISA bridge> at device 31.0 on pci0                                   
isa0: <ISA bus> on isab0                                                         
atapci0: <Intel AHCI controller> port 0x9c00-0x9c07,0x9880-0x9883,0x9800-0x9807,0x9480-0x9483,0x9400-0x941f mem 0xfe6fe800-0xfe6fefff irq 19 at device 31.2 on pci0                                                                                
atapci0: [ITHREAD]                                                               
atapci0: AHCI Version 01.20 controller with 6 ports detected                     
ata2: <ATA channel 0> on atapci0                                                 
ata2: [ITHREAD]                                                                  
ata3: <ATA channel 1> on atapci0                                                 
ata3: [ITHREAD]                                                                  
ata4: <ATA channel 2> on atapci0                                                 
ata4: [ITHREAD]                                                                  
ata5: <ATA channel 3> on atapci0                                                 
ata5: [ITHREAD]                                                                  
ata6: <ATA channel 4> on atapci0                                                 
ata6: [ITHREAD]                                                                  
ata7: <ATA channel 5> on atapci0                                                 
ata7: [ITHREAD]                                                                  
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)                    
acpi_button0: <Power Button> on acpi0                                            
sio0: configured irq 4 not in bitmap of probed irqs 0                            
sio0: port may not be enabled                                                    
sio0: configured irq 4 not in bitmap of probed irqs 0                            
sio0: port may not be enabled                                                    
sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0    
sio0: type 16550A                                                                
sio0: [FILTER]                                                                   
cpu0: <ACPI CPU> on acpi0                                                        
ACPI Warning (tbutils-0243): Incorrect checksum in table [OEMB] -  EE, should be ED [20070320]                                                                    
est0: <Enhanced SpeedStep Frequency Control> on cpu0                             
p4tcc0: <CPU Frequency Thermal Control> on cpu0                                  
cpu1: <ACPI CPU> on acpi0                                                        
est1: <Enhanced SpeedStep Frequency Control> on cpu1                             
est: CPU supports Enhanced Speedstep, but is not recognized.                     
est: cpu_vendor GenuineIntel, msr 61a092006000920                                
device_attach: est1 attach returned 6                                            
p4tcc1: <CPU Frequency Thermal Control> on cpu1                                  
sc0: <System console> at flags 0x100 on isa0                                     
sc0: VGA <16 virtual consoles, flags=0x300>                                      
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0        
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0                 
atkbd0: <AT Keyboard> irq 1 on atkbdc0                                           
kbd0 at atkbd0                                                                   
atkbd0: [GIANT-LOCKED]                                                           
atkbd0: [ITHREAD]                                                                
ppc0: cannot reserve I/O port range                                              
sio1: configured irq 3 not in bitmap of probed irqs 0                            
sio1: port may not be enabled                                                    
ugen0: <vendor 0x0c45 USB camera, class 0/0, rev 1.10/1.01, addr 2> on uhub1     
ulpt0: <HP Deskjet 5700, class 0/0, rev 2.00/1.00, addr 2> on uhub4              
ulpt0: using bi-directional mode                                                 
ums0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5         
ums0: 16 buttons and Z dir.                                                      
uhid0: <Logitech USB Receiver, class 0/0, rev 2.00/2.00, addr 2> on uhub5        
ukbd0: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
kbd2 at ukbd0                                                                    
uhid1: <NOVATEK USB Keyboard, class 0/0, rev 1.10/1.12, addr 2> on uhub6         
Timecounters tick every 1.000 msec                                               
firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me)                              
firewire0: bus manager 0 (me)                                                    
ad4: 76318MB <Seagate ST380815AS 4.AAB> at ata2-master SATA300                   
ad6: 76319MB <Seagate ST380815AS 4.AAB> at ata3-master SATA300                   
acd0: DVDROM <HL-DT-STDVD-ROM GDRH20N/0L02> at ata4-master SATA150               
ad10: 152626MB <Maxtor 6G160E0 KA101V00> at ata5-master SATA300                  
ad12: 190781MB <SAMSUNG HD200HJ KF100-06> at ata6-master SATA150                 
GEOM_LABEL: Label for provider ad4s1 is ntfs/System Reserved.                    
acd1: DVDR <TSSTcorp CDDVDW SH-S223L/SB01> at ata7-master SATA150                
hdac0: HDA Codec #0: ATI R6xx HDMI                                               
pcm0: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac0                 
hdac1: HDA Codec #0: ATI R6xx HDMI                                               
pcm1: <HDA ATI R6xx HDMI PCM #0 Digital> at cad 0 nid 1 on hdac1                 
hdac2: HDA Codec #0: Realtek ALC888                                              
pcm2: <HDA Realtek ALC888 PCM #0 Analog> at cad 0 nid 1 on hdac2                 
pcm3: <HDA Realtek ALC888 PCM #1 Analog> at cad 0 nid 1 on hdac2                 
pcm4: <HDA Realtek ALC888 PCM #2 Digital> at cad 0 nid 1 on hdac2                
pcm5: <HDA Realtek ALC888 PCM #3 Digital> at cad 0 nid 1 on hdac2                
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.                
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.                
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.                
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.                
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.                
GEOM_LABEL: Label for provider ad12s1 is ntfs/Home.                              
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
(probe1:ata5:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe1:ata5:0:0:0): CAM Status: SCSI Status Error                               
(probe1:ata5:0:0:0): SCSI Status: Check Condition                                
(probe1:ata5:0:0:0): NOT READY asc:3a,1                                          
(probe1:ata5:0:0:0): Medium not present - tray closed                            
(probe1:ata5:0:0:0): Unretryable error                                           
(probe0:ata2:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0                           
(probe0:ata2:0:0:0): CAM Status: SCSI Status Error                               
(probe0:ata2:0:0:0): SCSI Status: Check Condition                                
(probe0:ata2:0:0:0): NOT READY asc:3a,0                                          
(probe0:ata2:0:0:0): Medium not present                                          
(probe0:ata2:0:0:0): Unretryable error                                           
acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00                       
SMP: AP CPU #1 Launched!                                                         
cd0 at ata2 bus 0 target 0 lun 0                                                 
cd0: <HL-DT-ST DVD-ROM GDRH20N 0L02> Removable CD-ROM SCSI-0 device              
cd0: 3.300MB/s transfers                                                         
cd0: Attempt to query device size failed: NOT READY, Medium not present          
cd1 at ata5 bus 0 target 0 lun 0                                                 
cd1: <TSSTcorp CDDVDW SH-S223L SB01> Removable CD-ROM SCSI-0 device              
cd1: 3.300MB/s transfers                                                         
cd1: Attempt to query device size failed: NOT READY, Medium not present - tray closed                                                                             
Trying to mount root from ufs:/dev/ad10s1a
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.
GEOM_LABEL: Label for provider ad10s1a is ufsid/4a8d6fce1f5f72bf.
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.
GEOM_LABEL: Label for provider ad10s1g is ufsid/4a8d6fce51dfd059.
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.
GEOM_LABEL: Label for provider ad10s1f is ufsid/4a8d6fd2125c3c5e.
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.
GEOM_LABEL: Label for provider ad10s1d is ufsid/4a8d6fd59d7f1059.
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.
GEOM_LABEL: Label for provider ad10s1e is ufsid/4a8d6fd72d97a479.
GEOM_LABEL: Label ufsid/4a8d6fce1f5f72bf removed.
GEOM_LABEL: Label ufsid/4a8d6fce51dfd059 removed.
GEOM_LABEL: Label ufsid/4a8d6fd2125c3c5e removed.
GEOM_LABEL: Label ufsid/4a8d6fd59d7f1059 removed.
GEOM_LABEL: Label ufsid/4a8d6fd72d97a479 removed.
rl0: link state changed to UP
module_register: module vgapci/radeon already exists!
Module vgapci/radeon failed to register: 17
[bluescreen@fatcat ~]$


[bluescreen@fatcat ~]$ ls -lha /dev/dri
ls: /dev/dri: No such file or directory
[bluescreen@fatcat ~]$
 
Okay, jetzt kann ich dir helfen. Du hast "drm" und "radeon" fest im Kernel drin. Das ist nichts Schlimmes, nur du musst dann auch den ganzen Kernel neubauen. Nur die DRM-Module, wie ich sie oben einzeln neubaue, reichen natürlich nicht. Also, baue einen neuen Kernel, reboote und dann sollte es hoffentlich gehen. :)

EDIT: Geht es dann nicht, könnte es auch am 7.2 liegen. Ich meine, dass es gehen sollte, aber getestet habe ich es nicht. :/
 
Kernel-Bau bricht ab :

MAKE=make sh /usr/src/sys/conf/newvers.sh FATCAT
cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror vers.c
linking kernel.debug
r600_cp.o(.text+0xe5e): In function `r600_cp_dispatch_swap':
/usr/src/sys/dev/drm/r600_cp.c:2267: undefined reference to `r600_prepare_blit_copy'
r600_cp.o(.text+0xec9):/usr/src/sys/dev/drm/r600_cp.c:2279: undefined reference to `r600_blit_swap'
r600_cp.o(.text+0xf50):/usr/src/sys/dev/drm/r600_cp.c:2284: undefined reference to `r600_done_blit_copy'
r600_cp.o(.text+0x16ea): In function `r600_cp_dispatch_texture':
/usr/src/sys/dev/drm/r600_cp.c:2327: undefined reference to `r600_prepare_blit_copy'
r600_cp.o(.text+0x1772):/usr/src/sys/dev/drm/r600_cp.c:2357: undefined reference to `r600_blit_copy'
r600_cp.o(.text+0x1795):/usr/src/sys/dev/drm/r600_cp.c:2366: undefined reference to `r600_done_blit_copy'
r600_cp.o(.text+0x461a): In function `r600_do_init_cp':
/usr/src/sys/dev/drm/r600_cp.c:2104: undefined reference to `r600_cs_init'
radeon_state.o(.data+0x398): In function `radeon_surface_alloc':
/usr/src/sys/dev/drm/radeon_state.c:2098: undefined reference to `radeon_cs_ioctl'
*** Error code 1

Stop in /usr/obj/usr/src/sys/FATCAT.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
[root@fatcat /usr/src]# *** Error code 1
su: COPYRIGHT: Kommando nicht gefunden.
[root@fatcat /usr/src]#
[root@fatcat /usr/src]# Stop in /usr/src.
su: Stop: Kommando nicht gefunden.
[root@fatcat /usr/src]#

:eek:
 
Das ist nun etwas ins Blaue geschossen. Aber wenn du "drm" und "radeon" aus dem Kernel herausnimmst und als Modul lädst, geht es dann? Es fehlt ihm sicherlich irgendwo nur die Defintion der Dateien, die er für das DRM in den Kernel backen soll. Auf Module zu gehen, wäre der Weg des geringsten Widerstands, zumindest um zu schauen, ob es prinzipiell überhaupt geht.
 
Hallo .

Habe DRM und Radeon aus dem Kernel enfernt. Werden jetzt
als Module geladen. Klappt auch alles !

GLX-Info :

OpenGL vendor string: Advanced Micro Devices, Inc.
OpenGL renderer string: Mesa DRI R600 (RV770 9443) 20090101 TCL
OpenGL version string: 1.4 Mesa 7.6

GLX-Gears :

8723 frames in 5.0 seconds = 1744.512 FPS


Nur OpenGL in KDE4 lässt sich weiterhin nicht aktivieren !

Gruss
 

Anhänge

  • Bildschirmfoto1.png
    Bildschirmfoto1.png
    154 KB · Aufrufe: 313
Erstmal meinen Glückwunsch, dein glxgears läuft wesentlich schneller als meines. Etwa um den Faktor 8. Allerdings ist es auch kein Benchmark, die Ergebnisse sind einfach von zu vielen Faktoren abhängig. :)

Das Compiz nicht geht, ist beabsichtigt. Es ist im Moment gesperrt, denn wenn man es aktivieren könnte, würde er schwere Grafikfehler erzeugen. Das ist bekannt und die Entwickler arbeiten daran, eine Lösung zu finden. wobei ich nun auch nicht sagen kann, ob die erst mit Mesa3D 7.7 kommen wird, oder vielleicht schon mit 6.1 in einigen Wochen.
 
Gibt es inzwischen was neues bez. Compositing? Wenn da Chancen bestehen, würde ich es auch mal ausprobieren!
 
Wenn du ein Git-Head nimmst, könnte es funktionieren. Garantieren kann ich es dir leider nicht.
 
Von was hängt das denn ab? xorg-driver, libgl, oder base? Bei den letzteren beiden wärs mir auf jeden fall zu aufwendig...
 
Zurück
Oben