Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[SOLVED] ATI RV280 [Radeon 9200SE] on Wheezy

Need help with peripherals or devices?
Message
Author
MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

[SOLVED] ATI RV280 [Radeon 9200SE] on Wheezy

#1 Post by MightyMouse »

After a recent (that is, yesterday) hard drive failure, I replaced the drive and reinstalled Wheezy. In the past I was not using the proprietary driver because there was a bug. However, in the ATIPropriety it is mentioned that the bug was fixed, so I followed the route mentioned in the link for Squeeze. Now I ended up after boot with a black screen (only a cursor appears on top left corner). Not only that, but I can not login with Ctrl+Alt+F[1-6] to a terminal on that machine. Instead I can only login through ssh. *** I then uninstalled fglrx-control and fglrx-driver hoping to revert back to the original configuration, but with no luck. I still could not see the gdm3 welcome screen.

So, I ended up editing xorg.conf, which now has the following contents:

Code: Select all

$ cat /etc/X11/xorg.conf 
Section "Device"
    Identifier     "Device0"
    Driver         "vesa"
EndSection
$ 
I can now see the gnome desktop manager, login to Gnome, and switch to the terminal screens through Ctrl+Alt+F[1-6]. However, I am back to the previous situation, where trying to watch a video on youtube is not so easy. CPU works on 100% and there is lag while presenting the video. Actually there is a small difference compared to the state right after the new Wheezy installation: the characters on the terminals obtained through Ctrl+Alt+F[1-6] are much bigger compared to what they were in the beginning.

So, I am wondering, if you have a tip or a guide for installing drivers for this graphics card on wheezy.

Finally:

Code: Select all

# lspci | grep VGA
01:02.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV280 [Radeon 9200 SE] (rev 01)
02:00.0 VGA compatible controller: NVIDIA Corporation nForce 220/420 NV11 [GeForce2 MX] (rev b1)
#
Thank you in advance for your time and all your help.


*** Actually, I had a problem right after the new Wheezy installation with Ctrl+Alt+F[1-6] to switch to a terminal because it was frozen on the part saying "Waiting for /dev to be fully populated". To bypass that problem I edited the /etc/default/grub file and replaced the line

Code: Select all

GRUB_CMDLINE_LINUX=""
with

Code: Select all

GRUB_CMDLINE_LINUX="nomodeset"
and then ran

Code: Select all

update-grub

After rebooting, I had access to the terminals through Ctrl+Alt+F[1-6].
Last edited by MightyMouse on 2013-01-14 06:17, edited 1 time in total.

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#2 Post by sgcb »

MightyMouse wrote:*** Actually, I had a problem right after the new Wheezy installation with Ctrl+Alt+F[1-6] to switch to a terminal because it was frozen on the part saying "Waiting for /dev to be fully populated".
Are you needing 'firmware-linux-nonfree' for radeon firmware? After you install firmware, remove nomodeset from grub, and remove vesa from xorg.conf, KMS should boot successfully and you'll be able to run the free drivers.

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#3 Post by MightyMouse »

Thank you sgcb. As of the firmware-linux-nonfree, I am not sure if I need it. In any case, I tried what you said, and it is booting again to gdm. However, I am now back to the original situation where I have no access to the terminals through Ctrl+Alt+F[1-6]. Any workarounds for this one?

The graphics still suck though. Whether I am simply browsing or trying to see a random video on youtube.

So, the primary question remains. How can I set up the graphics card?

(The secondary question, which might be related to the card, is the fact that I do not have access to terminals through Ctrl+Alt+F[1-6]. It is again stuck on "waiting for /dev to be populated" part.)

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#4 Post by sgcb »

firmware-linux-nonfree does install /lib/firmware/radeon/R200_cp.bin, so I assume that is needed by your chip.

'waiting for /dev to be populated' seems like the major road block here I think. If we can solve this issue, free drivers are relatively easy to install. Can you provide 'dmesg' and /var/log/Xorg.0.log?

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#5 Post by MightyMouse »

I am sorry for the delay. I went out for lunch, and then I could not post the output or upload the output as an attachment.

Hence I created some links:
[url=http://url_removed_for_privacy_reasons]Xorg.0.log[/url]
[url=http://url_removed_for_privacy_reasons]dmesg[/url]
Last edited by MightyMouse on 2013-01-14 06:22, edited 1 time in total.

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#6 Post by sgcb »

It looks like most of the problems are seen coming from your nvidia card. I don't think multi gpu (spanning manufacturer's) systems are that well supported yet on linux. Do you absolutely need both? Or can you remove the nvidia or disable it in bios? If you do that and things still don't improve, please post an updated dmesg/Xorg.log.

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#7 Post by MightyMouse »

It sounds embarassing, but I can not disable entirely the Onboard card. Under "Integrated Peripherals" in BIOS, the fourth option is "Init Display First", which gives me two options "PCI Slot" and "Onboard/AGP". (I have enabled "PCI Slot" - my ATI is PCI, not AGP.)

Motherboard, Manual

The relevant option is found in the manual on page 3-18 (page 60/79).

Do you think I should unplug and forget ATI entirely? This is really a desktop that lies on the side and I keep backups with svn. I just happen to have some friends over my place these days and wanted to give them access to one more computer. Otherwise I do not care about the graphics that much. On the other hand, I did buy that ATI card 3 or 4 years ago in order to have something good. So, the situation is now frustrating.

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#8 Post by sgcb »

I won't be one to persuade you one direction or the other. What you do with your hardware I think should be left to your judgement...

If you still want to continue using the radeon, you can try blacklisting the nouveau module and see if that helps in the boot process:
/etc/modprobe.d/blacklist.conf

Code: Select all

blacklist nouveau
You can also try your luck with the onboard nvidia gpu and remove the ATI card entirely.
Or you can just as well try either and see what works best.

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#9 Post by MightyMouse »

I am sorry it took me so long to reply. After opening the tower, I received a message that the CPU fan was not working any more, and since I had other things to do, I didn't come back to the problem until today. (Actually I haven't done anything with the CPU fan. Since I can see the fan working I just take my chances for now, press F1 during boot and move on to actually booting the operating system.)

In any case, I did blacklist nouveau, and now during boot I no longer have the issue where it stops at the "Waiting for /dev to be fully populated". However, gdm does not start; that is, I can see a black screen with a blinking cursor on the upper left part of the screen. I can login to the machine remotely through ssh. The terminals accessed through Ctrl+Alt+F[1-6] are available after boot, but if I press Ctrl+Alt+F7 to attempt to go to gdm (which does not show anything) and then back to the terminals with Ctrl+Alt+F[1-6], then the terminals are not working either. In other words, instead of seeing the login prompt I see black screens with a blinking cursor in the upper left part of the screen.

Complete dmesg this time follows.

Code: Select all

$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-686-pae (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.35-2
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 0000000000080000 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000002dff0000 (usable)
[    0.000000]  BIOS-e820: 000000002dff0000 - 000000002dff3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000002dff3000 - 000000002e000000 (ACPI data)
[    0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[    0.000000] DMI 2.3 present.
[    0.000000] DMI: NVIDIA Corporation. nFORCE-MCP/MS-6373, BIOS 6.00 PG 10/03/2002
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x2dff0 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-AFFFF uncachable
[    0.000000]   B0000-BFFFF write-combining
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 02E000000 mask FFE000000 uncachable
[    0.000000]   2 base 030000000 mask FF0000000 uncachable
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 base 0D8000000 mask FFC000000 write-combining
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] initial memory mapped : 0 - 01a00000
[    0.000000] Base memory trampoline at [c007c000] 7c000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-000000002dff0000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 002de00000 page 2M
[    0.000000]  002de00000 - 002dff0000 page 4k
[    0.000000] kernel direct mapping tables up to 2dff0000 @ 19f9000-1a00000
[    0.000000] RAMDISK: 2c755000 - 2d134000
[    0.000000] ACPI: RSDP 000f6490 00014 (v00 Nvidia)
[    0.000000] ACPI: RSDT 2dff3000 00028 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 2dff3040 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 2dff30c0 03E5E (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000C)
[    0.000000] ACPI: FACS 2dff0000 00040
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 735MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 2dff0000
[    0.000000]   low ram: 0 - 2dff0000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x0002dff0
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x00000080
[    0.000000]     0: 0x00000100 -> 0x0002dff0
[    0.000000] On node 0 totalpages: 188256
[    0.000000] free_area_init_node: node 0, pgdat c1412180, node_mem_map eda2f200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3920 pages, LIFO batch:0
[    0.000000]   Normal zone: 1440 pages used for memmap
[    0.000000]   Normal zone: 182864 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] Nvidia board detected. Ignoring ACPI timer override.
[    0.000000] If you got timer trouble try acpi_use_timer_override
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] nr_irqs_gsi: 16
[    0.000000] PM: Registered nosave memory: 0000000000080000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 2e000000 (gap: 2e000000:d2000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @eda1b000 s33280 r0 d24064 u57344
[    0.000000] pcpu-alloc: s33280 r0 d24064 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 186784
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=bc5b0222-e383-4c09-836b-9fbd44e9f3a6 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00000000:00000000)
[    0.000000] Memory: 730920k/753600k available (2845k kernel code, 22104k reserved, 1353k data, 416k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
[    0.000000]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000000]     vmalloc : 0xee7f0000 - 0xff9fe000   ( 274 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xedff0000   ( 735 MB)
[    0.000000]       .init : 0xc141a000 - 0xc1482000   ( 416 kB)
[    0.000000]       .data : 0xc12c7484 - 0xc1419a80   (1353 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12c7484   (2845 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=ed406000 soft=ed408000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1102.576 MHz processor.
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 2205.15 BogoMIPS (lpj=4410304)
[    0.004016] pid_max: default: 32768 minimum: 301
[    0.004114] Security Framework initialized
[    0.004128] AppArmor: AppArmor disabled by boot time parameter
[    0.004165] Mount-cache hash table entries: 512
[    0.004484] Initializing cgroup subsys cpuacct
[    0.004497] Initializing cgroup subsys memory
[    0.004520] Initializing cgroup subsys devices
[    0.004526] Initializing cgroup subsys freezer
[    0.004532] Initializing cgroup subsys net_cls
[    0.004537] Initializing cgroup subsys blkio
[    0.004553] Initializing cgroup subsys perf_event
[    0.004618] mce: CPU supports 4 MCE banks
[    0.004687] SMP alternatives: switching to UP code
[    0.010076] Freeing SMP alternatives: 8k freed
[    0.010092] ACPI: Core revision 20110623
[    0.014657] ACPI: setting ELCR to 0200 (from 1820)
[    0.016162] weird, boot CPU (#0) not listed by the BIOS.
[    0.016167] SMP motherboard not detected.
[    0.016173] Local APIC not detected. Using dummy APIC emulation.
[    0.016177] SMP disabled
[    0.016182] Performance Events: 
[    0.016188] no APIC, boot with the "lapic" boot parameter to force-enable it.
[    0.016192] no hardware sampling interrupt available.
[    0.016199] AMD PMU driver.
[    0.016205] ... version:                0
[    0.016209] ... bit width:              48
[    0.016213] ... generic registers:      4
[    0.016217] ... value mask:             0000ffffffffffff
[    0.016221] ... max period:             00007fffffffffff
[    0.016225] ... fixed-purpose events:   0
[    0.016228] ... event mask:             000000000000000f
[    0.016733] NMI watchdog disabled (cpu0): not supported (no LAPIC?)
[    0.016776] Brought up 1 CPUs
[    0.016783] Total of 1 processors activated (2205.15 BogoMIPS).
[    0.017197] devtmpfs: initialized
[    0.020359] PM: Registering ACPI NVS region at 2dff0000 (12288 bytes)
[    0.020777] print_constraints: dummy: 
[    0.020918] NET: Registered protocol family 16
[    0.021196] ACPI: bus type pci registered
[    0.049442] PCI: PCI BIOS revision 2.10 entry at 0xfb360, last bus=2
[    0.049448] PCI: Using configuration type 1 for base access
[    0.051256] bio: create slab <bio-0> at 0
[    0.051447] ACPI: Added _OSI(Module Device)
[    0.051453] ACPI: Added _OSI(Processor Device)
[    0.051458] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.051464] ACPI: Added _OSI(Processor Aggregator Device)
[    0.052952] ACPI: EC: Look up EC in DSDT
[    0.058645] ACPI: Interpreter enabled
[    0.058664] ACPI: (supports S0 S1 S4 S5)
[    0.058717] ACPI: Using PIC for interrupt routing
[    0.067875] ACPI: No dock devices found.
[    0.067882] HEST: Table not found.
[    0.067895] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.068070] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.068369] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.068378] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.068385] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.068392] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
[    0.068399] pci_root PNP0A03:00: host bridge window [mem 0x2e000000-0xffefffff] (ignored)
[    0.068433] pci 0000:00:00.0: [10de:01a4] type 0 class 0x000600
[    0.068449] pci 0000:00:00.0: reg 10: [mem 0xd8000000-0xdbffffff pref]
[    0.068532] pci 0000:00:00.1: [10de:01ac] type 0 class 0x000500
[    0.068601] pci 0000:00:00.2: [10de:01ad] type 0 class 0x000500
[    0.068669] pci 0000:00:00.3: [10de:01ab] type 0 class 0x000500
[    0.068739] pci 0000:00:01.0: [10de:01b2] type 0 class 0x000601
[    0.068862] pci 0000:00:01.1: [10de:01b4] type 0 class 0x000c05
[    0.068884] pci 0000:00:01.1: reg 10: [io  0x5000-0x500f]
[    0.068898] pci 0000:00:01.1: reg 14: [io  0x5020-0x502f]
[    0.068912] pci 0000:00:01.1: reg 18: [io  0x6000-0x601f]
[    0.068979] pci 0000:00:01.1: PME# supported from D3hot D3cold
[    0.069019] pci 0000:00:02.0: [10de:01c2] type 0 class 0x000c03
[    0.069041] pci 0000:00:02.0: reg 10: [mem 0xe0002000-0xe0002fff]
[    0.069122] pci 0000:00:02.0: supports D1 D2
[    0.069127] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.069159] pci 0000:00:03.0: [10de:01c2] type 0 class 0x000c03
[    0.069182] pci 0000:00:03.0: reg 10: [mem 0xe0000000-0xe0000fff]
[    0.069263] pci 0000:00:03.0: supports D1 D2
[    0.069268] pci 0000:00:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.069299] pci 0000:00:04.0: [10de:01c3] type 0 class 0x000200
[    0.069321] pci 0000:00:04.0: reg 10: [mem 0xe0001000-0xe00013ff]
[    0.069335] pci 0000:00:04.0: reg 14: [io  0xd800-0xd807]
[    0.069408] pci 0000:00:04.0: supports D1 D2
[    0.069413] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.069446] pci 0000:00:08.0: [10de:01b8] type 1 class 0x000604
[    0.069507] pci 0000:00:09.0: [10de:01bc] type 0 class 0x000101
[    0.069561] pci 0000:00:09.0: reg 20: [io  0xe000-0xe00f]
[    0.069654] pci 0000:00:1e.0: [10de:01b7] type 1 class 0x000604
[    0.069730] pci 0000:01:00.0: [10ec:8185] type 0 class 0x000200
[    0.069757] pci 0000:01:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.069775] pci 0000:01:00.0: reg 14: [mem 0xdf020000-0xdf0201ff]
[    0.069871] pci 0000:01:00.0: supports D1 D2
[    0.069876] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.069915] pci 0000:01:01.0: [1102:0007] type 0 class 0x000401
[    0.069942] pci 0000:01:01.0: reg 10: [io  0xc400-0xc41f]
[    0.070049] pci 0000:01:01.0: supports D1 D2
[    0.070081] pci 0000:01:02.0: [1002:5964] type 0 class 0x000300
[    0.070108] pci 0000:01:02.0: reg 10: [mem 0xc0000000-0xc7ffffff pref]
[    0.070126] pci 0000:01:02.0: reg 14: [io  0xc800-0xc8ff]
[    0.070143] pci 0000:01:02.0: reg 18: [mem 0xdf000000-0xdf00ffff]
[    0.070195] pci 0000:01:02.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.070235] pci 0000:01:02.0: supports D1 D2
[    0.070268] pci 0000:01:02.1: [1002:5d44] type 0 class 0x000380
[    0.070295] pci 0000:01:02.1: reg 10: [mem 0xc8000000-0xcfffffff pref]
[    0.070312] pci 0000:01:02.1: reg 14: [mem 0xdf010000-0xdf01ffff]
[    0.070409] pci 0000:01:02.1: supports D1 D2
[    0.070480] pci 0000:00:08.0: PCI bridge to [bus 01-01]
[    0.070488] pci 0000:00:08.0:   bridge window [io  0xc000-0xcfff]
[    0.070497] pci 0000:00:08.0:   bridge window [mem 0xde000000-0xdfffffff]
[    0.070506] pci 0000:00:08.0:   bridge window [mem 0xc0000000-0xcfffffff pref]
[    0.070547] pci 0000:02:00.0: [10de:01a0] type 0 class 0x000300
[    0.070569] pci 0000:02:00.0: reg 10: [mem 0xdc000000-0xdcffffff]
[    0.070583] pci 0000:02:00.0: reg 14: [mem 0xd0000000-0xd7ffffff pref]
[    0.070626] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.070704] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
[    0.070714] pci 0000:00:1e.0:   bridge window [mem 0xdc000000-0xddffffff]
[    0.070722] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd7ffffff pref]
[    0.070739] pci_bus 0000:00: on NUMA node 0
[    0.070747] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.071003] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.071302] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
[    0.071417]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
[    0.100249] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11 *12 14 15)
[    0.100401] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 11 *12 14 15)
[    0.100548] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.100692] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.100845] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.100992] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.101137] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.101283] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.101426] ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.101571] ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.101717] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.101839] ACPI: PCI Interrupt Link [LUSB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.101999] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 10 11 *12 14 15)
[    0.102362] vgaarb: device added: PCI:0000:01:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.102374] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=none,locks=none
[    0.102380] vgaarb: loaded
[    0.102383] vgaarb: bridge control possible 0000:02:00.0
[    0.102387] vgaarb: bridge control possible 0000:01:02.0
[    0.102526] PCI: Using ACPI for IRQ routing
[    0.102536] PCI: pci_cache_line_size set to 32 bytes
[    0.102651] reserve RAM buffer: 000000002dff0000 - 000000002fffffff 
[    0.103006] Switching to clocksource pit
[    0.104560] pnp: PnP ACPI init
[    0.104615] ACPI: bus type pnp registered
[    0.105131] pnp 00:00: [mem 0x000d1800-0x000d3fff]
[    0.105140] pnp 00:00: [mem 0x000f0000-0x000f7fff]
[    0.105146] pnp 00:00: [mem 0x000f8000-0x000fbfff]
[    0.105152] pnp 00:00: [mem 0x000fc000-0x000fffff]
[    0.105157] pnp 00:00: [mem 0x2dff0000-0x2dffffff]
[    0.105163] pnp 00:00: [mem 0xffb00000-0xffffffff]
[    0.105169] pnp 00:00: [mem 0x00000000-0x0009ffff]
[    0.105174] pnp 00:00: [mem 0x00100000-0x2dfeffff]
[    0.105180] pnp 00:00: [mem 0xfec00000-0xfecfffff]
[    0.105186] pnp 00:00: [mem 0xfee00000-0xfeefffff]
[    0.105362] system 00:00: [mem 0x000d1800-0x000d3fff] has been reserved
[    0.105371] system 00:00: [mem 0x000f0000-0x000f7fff] could not be reserved
[    0.105379] system 00:00: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.105386] system 00:00: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.105394] system 00:00: [mem 0x2dff0000-0x2dffffff] could not be reserved
[    0.105402] system 00:00: [mem 0xffb00000-0xffffffff] has been reserved
[    0.105409] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.105416] system 00:00: [mem 0x00100000-0x2dfeffff] could not be reserved
[    0.105424] system 00:00: [mem 0xfec00000-0xfecfffff] has been reserved
[    0.105431] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.105442] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.105594] pnp 00:01: [bus 00-ff]
[    0.105601] pnp 00:01: [io  0x0cf0-0x0cf7]
[    0.105607] pnp 00:01: [io  0x0cf8-0x0cff]
[    0.105613] pnp 00:01: [io  0x0000-0x0cf7 window]
[    0.105619] pnp 00:01: [io  0x0d00-0xffff window]
[    0.105625] pnp 00:01: [mem 0x000a0000-0x000bffff window]
[    0.105636] pnp 00:01: [mem 0x000c0000-0x000dffff window]
[    0.105642] pnp 00:01: [mem 0x2e000000-0xffefffff window]
[    0.105776] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.105906] pnp 00:02: [io  0x4000-0x40fe]
[    0.105913] pnp 00:02: [io  0x40ff]
[    0.106038] system 00:02: [io  0x4000-0x40fe] has been reserved
[    0.106046] system 00:02: [io  0x40ff] has been reserved
[    0.106055] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.106479] pnp 00:03: [io  0x0010-0x001f]
[    0.106486] pnp 00:03: [io  0x0022-0x003f]
[    0.106491] pnp 00:03: [io  0x0044-0x005f]
[    0.106497] pnp 00:03: [io  0x0062-0x0063]
[    0.106502] pnp 00:03: [io  0x0065-0x006f]
[    0.106508] pnp 00:03: [io  0x0074-0x007f]
[    0.106513] pnp 00:03: [io  0x0091-0x0093]
[    0.106518] pnp 00:03: [io  0x00a2-0x00bf]
[    0.106523] pnp 00:03: [io  0x00e0-0x00ef]
[    0.106529] pnp 00:03: [io  0x0b78-0x0b7b]
[    0.106534] pnp 00:03: [io  0x0f78-0x0f7b]
[    0.106539] pnp 00:03: [io  0x0a78-0x0a7b]
[    0.106545] pnp 00:03: [io  0x0e78-0x0e7b]
[    0.106550] pnp 00:03: [io  0x0bbc-0x0bbf]
[    0.106555] pnp 00:03: [io  0x0fbc-0x0fbf]
[    0.106561] pnp 00:03: [io  0x04d0-0x04d1]
[    0.106566] pnp 00:03: [io  0x0294-0x0297]
[    0.106706] system 00:03: [io  0x0b78-0x0b7b] has been reserved
[    0.106714] system 00:03: [io  0x0f78-0x0f7b] has been reserved
[    0.106722] system 00:03: [io  0x0a78-0x0a7b] has been reserved
[    0.106729] system 00:03: [io  0x0e78-0x0e7b] has been reserved
[    0.106736] system 00:03: [io  0x0bbc-0x0bbf] has been reserved
[    0.106743] system 00:03: [io  0x0fbc-0x0fbf] has been reserved
[    0.106750] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.106758] system 00:03: [io  0x0294-0x0297] has been reserved
[    0.106766] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.106799] pnp 00:04: [dma 4]
[    0.106805] pnp 00:04: [io  0x0000-0x000f]
[    0.106810] pnp 00:04: [io  0x0080-0x0090]
[    0.106816] pnp 00:04: [io  0x0094-0x009f]
[    0.106821] pnp 00:04: [io  0x00c0-0x00df]
[    0.106906] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.106937] pnp 00:05: [io  0x0070-0x0073]
[    0.106947] pnp 00:05: [irq 8]
[    0.107038] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.107063] pnp 00:06: [io  0x0061]
[    0.107148] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.107173] pnp 00:07: [io  0x00f0-0x00ff]
[    0.107180] pnp 00:07: [irq 13]
[    0.107270] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.107519] pnp 00:08: [io  0x03f0-0x03f5]
[    0.107526] pnp 00:08: [io  0x03f7]
[    0.107532] pnp 00:08: [irq 6]
[    0.107537] pnp 00:08: [dma 2]
[    0.107659] pnp 00:08: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.108004] pnp 00:09: [io  0x03f8-0x03ff]
[    0.108011] pnp 00:09: [irq 4]
[    0.108181] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.108562] pnp 00:0a: [io  0x02f8-0x02ff]
[    0.108569] pnp 00:0a: [irq 3]
[    0.108726] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.109402] pnp 00:0b: [io  0x0378-0x037f]
[    0.109409] pnp 00:0b: [io  0x0778-0x077b]
[    0.109415] pnp 00:0b: [irq 7]
[    0.109574] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.109776] pnp 00:0c: [io  0x0060]
[    0.109782] pnp 00:0c: [io  0x0064]
[    0.109788] pnp 00:0c: [irq 1]
[    0.109885] pnp 00:0c: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.110237] pnp 00:0d: [io  0x0200-0x0207]
[    0.110350] pnp 00:0d: Plug and Play ACPI device, IDs PNPb02f (active)
[    0.110708] pnp 00:0e: [io  0x0330-0x0331]
[    0.110715] pnp 00:0e: [irq 10]
[    0.110868] pnp 00:0e: Plug and Play ACPI device, IDs PNPb006 (active)
[    0.110890] pnp: PnP ACPI: found 15 devices
[    0.110894] ACPI: ACPI bus type pnp unregistered
[    0.110904] PnPBIOS: Disabled by ACPI PNP
[    0.151014] Switching to clocksource acpi_pm
[    0.151089] PCI: max bus depth: 1 pci_try_num: 2
[    0.151155] pci 0000:01:02.0: BAR 6: assigned [mem 0xde000000-0xde01ffff pref]
[    0.151164] pci 0000:00:08.0: PCI bridge to [bus 01-01]
[    0.151172] pci 0000:00:08.0:   bridge window [io  0xc000-0xcfff]
[    0.151183] pci 0000:00:08.0:   bridge window [mem 0xde000000-0xdfffffff]
[    0.151192] pci 0000:00:08.0:   bridge window [mem 0xc0000000-0xcfffffff pref]
[    0.151207] pci 0000:02:00.0: BAR 6: assigned [mem 0xdd000000-0xdd00ffff pref]
[    0.151213] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
[    0.151222] pci 0000:00:1e.0:   bridge window [mem 0xdc000000-0xddffffff]
[    0.151231] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd7ffffff pref]
[    0.151258] pci 0000:00:08.0: setting latency timer to 64
[    0.151271] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.151278] pci_bus 0000:00: resource 1 [mem 0x00000000-0x3ffffffff]
[    0.151284] pci_bus 0000:01: resource 0 [io  0xc000-0xcfff]
[    0.151290] pci_bus 0000:01: resource 1 [mem 0xde000000-0xdfffffff]
[    0.151296] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref]
[    0.151303] pci_bus 0000:02: resource 1 [mem 0xdc000000-0xddffffff]
[    0.151309] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd7ffffff pref]
[    0.151448] NET: Registered protocol family 2
[    0.151618] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.152443] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.155222] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.156612] TCP: Hash tables configured (established 131072 bind 65536)
[    0.156620] TCP reno registered
[    0.156632] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.156675] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.156958] NET: Registered protocol family 1
[    0.157408] ACPI: PCI Interrupt Link [LUBA] enabled at IRQ 11
[    0.157416] PCI: setting IRQ 11 as level-triggered
[    0.157675] ACPI: PCI Interrupt Link [LUBB] enabled at IRQ 5
[    0.157681] PCI: setting IRQ 5 as level-triggered
[    0.157755] pci 0000:01:02.0: Boot video device
[    0.157779] PCI: CLS 32 bytes, default 32
[    0.157941] Unpacking initramfs...
[    0.771756] Freeing initrd memory: 10108k freed
[    0.795905] audit: initializing netlink socket (disabled)
[    0.795939] type=2000 audit(1357894102.791:1): initialized
[    0.827102] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.827683] VFS: Disk quotas dquot_6.5.2
[    0.827753] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.827928] msgmni has been set to 1447
[    0.828386] alg: No test for stdrng (krng)
[    0.828458] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.828468] io scheduler noop registered
[    0.828472] io scheduler deadline registered
[    0.828491] io scheduler cfq registered (default)
[    0.828788] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.828862] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.828868] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.829763] ERST: Table is not found!
[    0.829768] GHES: HEST is not enabled!
[    0.829802] isapnp: Scanning for PnP cards...
[    1.185076] isapnp: No Plug & Play device found
[    1.185322] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.205841] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.226377] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.247411] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.268032] 00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.268537] Linux agpgart interface v0.103
[    1.268803] agpgart: Detected NVIDIA nForce chipset
[    1.275269] agpgart-nvidia 0000:00:00.0: AGP aperture is 64M @ 0xd8000000
[    1.275645] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.275652] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.276427] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.276713] mousedev: PS/2 mouse device common for all mice
[    1.276834] rtc_cmos 00:05: RTC can wake from S4
[    1.277050] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.277082] rtc0: alarms up to one year, y3k, 242 bytes nvram
[    1.277114] cpuidle: using governor ladder
[    1.277119] cpuidle: using governor menu
[    1.277671] TCP cubic registered
[    1.277724] NET: Registered protocol family 10
[    1.278971] Mobile IPv6
[    1.278980] NET: Registered protocol family 17
[    1.278990] Registering the dns_resolver key type
[    1.279037] Using IPI No-Shortcut mode
[    1.279311] PM: Hibernation image not present or could not be loaded.
[    1.279340] registered taskstats version 1
[    1.280173] rtc_cmos 00:05: setting system clock to 2013-01-11 08:48:24 UTC (1357894104)
[    1.280261] Initializing network drop monitor service
[    1.280514] Freeing unused kernel memory: 416k freed
[    1.281507] Write protecting the kernel text: 2848k
[    1.281577] Write protecting the kernel read-only data: 1092k
[    1.295915] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.320477] udevd[44]: starting version 175
[    1.492979] thermal LNXTHERM:00: registered as thermal_zone0
[    1.492988] ACPI: Thermal Zone [THRM] (31 C)
[    1.509648] ACPI: Fan [FAN] (on)
[    1.545574] Floppy drive(s): fd0 is 1.44M
[    1.563945] FDC 0 is a post-1991 82077
[    1.589411] usbcore: registered new interface driver usbfs
[    1.589478] usbcore: registered new interface driver hub
[    1.597962] usbcore: registered new device driver usb
[    1.599412] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.601240] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.601365] ohci_hcd 0000:00:02.0: setting latency timer to 64
[    1.601374] ohci_hcd 0000:00:02.0: OHCI Host Controller
[    1.601446] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 1
[    1.601499] ohci_hcd 0000:00:02.0: irq 11, io mem 0xe0002000
[    1.658383] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    1.658395] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.658402] usb usb1: Product: OHCI Host Controller
[    1.658407] usb usb1: Manufacturer: Linux 3.2.0-4-686-pae ohci_hcd
[    1.658412] usb usb1: SerialNumber: 0000:00:02.0
[    1.658819] hub 1-0:1.0: USB hub found
[    1.658836] hub 1-0:1.0: 3 ports detected
[    1.659036] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[    1.659408] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 11
[    1.659423] forcedeth 0000:00:04.0: setting latency timer to 64
[    1.720345] SCSI subsystem initialized
[    1.794035] libata version 3.00 loaded.
[    1.824152] Refined TSC clocksource calibration: 1102.500 MHz.
[    1.824169] Switching to clocksource tsc
[    2.032048] usb 1-1: new low-speed USB device number 2 using ohci_hcd
[    2.181494] forcedeth 0000:00:04.0: ifname eth0, PHY OUI 0x57d @ 1, addr 00:10:dc:cf:4a:50
[    2.181504] forcedeth 0000:00:04.0: timirq lnktim desc-v1
[    2.181907] ohci_hcd 0000:00:03.0: setting latency timer to 64
[    2.181916] ohci_hcd 0000:00:03.0: OHCI Host Controller
[    2.181956] ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
[    2.182006] ohci_hcd 0000:00:03.0: irq 5, io mem 0xe0000000
[    2.238079] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.238090] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.238097] usb usb2: Product: OHCI Host Controller
[    2.238102] usb usb2: Manufacturer: Linux 3.2.0-4-686-pae ohci_hcd
[    2.238107] usb usb2: SerialNumber: 0000:00:03.0
[    2.238486] hub 2-0:1.0: USB hub found
[    2.238502] hub 2-0:1.0: 3 ports detected
[    2.239681] pata_amd 0000:00:09.0: version 0.4.1
[    2.239852] pata_amd 0000:00:09.0: setting latency timer to 64
[    2.244426] scsi0 : pata_amd
[    2.245024] scsi1 : pata_amd
[    2.246047] usb 1-1: New USB device found, idVendor=045e, idProduct=0040
[    2.246055] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[    2.246063] usb 1-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[    2.246068] usb 1-1: Manufacturer: Microsoft
[    2.248120] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xe000 irq 14
[    2.248129] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xe008 irq 15
[    2.424543] ata1.00: ATA-6: WDC WD800BB-56JKC0, 05.01C05, max UDMA/100
[    2.424554] ata1.00: 156301488 sectors, multi 16: LBA 
[    2.425471] ata1.01: ATA-5: WDC WD400BB-00DEA0, 05.03E05, max UDMA/100
[    2.425479] ata1.01: 78165360 sectors, multi 16: LBA 
[    2.425498] ata1: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc6c600c0) ACPI=0x3f01f (20:20:0x15)
[    2.425511] ata1: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc6c600c0) ACPI=0x3f01f (20:20:0x15)
[    2.432464] ata1.00: configured for UDMA/100
[    2.449238] ata1.01: configured for UDMA/100
[    2.449578] scsi 0:0:0:0: Direct-Access     ATA      WDC WD800BB-56JK 05.0 PQ: 0 ANSI: 5
[    2.450513] scsi 0:0:1:0: Direct-Access     ATA      WDC WD400BB-00DE 05.0 PQ: 0 ANSI: 5
[    2.620420] ata2.01: ATAPI: ATAPI-CD ROM-DRIVE-56MAX, VER 56JA, max UDMA/33
[    2.620441] ata2: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc6c600c0) ACPI=0x701f (600:60:0x14)
[    2.628354] ata2.01: configured for UDMA/33
[    2.629710] scsi 1:0:1:0: CD-ROM            ATAPI-CD ROM-DRIVE-56MAX  56JA PQ: 0 ANSI: 5
[    2.645971] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:02.0/usb1/1-1/1-1:1.0/input/input1
[    2.646507] generic-usb 0003:045E:0040.0001: input,hidraw0: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1/input0
[    2.646567] usbcore: registered new interface driver usbhid
[    2.646573] usbhid: USB HID core driver
[    2.678746] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    2.678885] sd 0:0:0:0: [sda] Write Protect is off
[    2.678893] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.678953] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.680772] sr0: scsi3-mmc drive: 0x/56x cd/rw xa/form2 cdda tray
[    2.680783] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.681904] sr 1:0:1:0: Attached scsi CD-ROM sr0
[    2.688832] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.689051] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    2.689234] sr 1:0:1:0: Attached scsi generic sg2 type 5
[    2.715829] sd 0:0:1:0: [sdb] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    2.715971] sd 0:0:1:0: [sdb] Write Protect is off
[    2.715979] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    2.716073] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.729477]  sda: sda1 sda2 sda3 < sda5 sda6 >
[    2.756086]  sdb: sdb1 < sdb5 >
[    2.757088] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.757318] sd 0:0:1:0: [sdb] Attached SCSI disk
[    3.757651] PM: Starting manual resume from disk
[    3.757664] PM: Hibernation image partition 8:5 present
[    3.757669] PM: Looking for hibernation image.
[    3.772285] PM: Image not found (code -22)
[    3.772290] PM: Hibernation image not present or could not be loaded.
[    3.909186] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[    3.909812] SGI XFS Quota Management subsystem
[    3.919616] XFS (sda2): Mounting Filesystem
[    4.081597] XFS (sda2): Ending clean mount
[    6.392509] udevd[321]: starting version 175
[    7.461318] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
[    7.461336] ACPI: Power Button [PWRB]
[    7.461544] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    7.461553] ACPI: Power Button [PWRF]
[    7.554939] parport_pc 00:0b: reported by Plug and Play ACPI
[    7.555015] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    7.826883] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    7.874730] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    8.058008] gameport gameport0: NS558 PnP Gameport is pnp00:0d/gameport0, io 0x200, speed 701kHz
[    8.701268] cfg80211: Calling CRDA to update world regulatory domain
[    9.046703] ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 12
[    9.046713] PCI: setting IRQ 12 as level-triggered
[    9.046784] snd-ca0106: Model 100a Rev 00000000 Serial 100a1102
[    9.515307] ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 12
[    9.807653] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    9.809074] ieee80211 phy0: hwaddr 0013f782058d, RTL8185vD + rtl8225
[   10.299709] cfg80211: World regulatory domain updated:
[   10.299723] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   10.299731] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.299738] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.299745] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.299752] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.299758] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   12.235592] Adding 3807228k swap on /dev/sda5.  Priority:-1 extents:1 across:3807228k 
[   12.834168] loop: module loaded
[   17.556922] RPC: Registered named UNIX socket transport module.
[   17.556932] RPC: Registered udp transport module.
[   17.556937] RPC: Registered tcp transport module.
[   17.556941] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   17.650316] FS-Cache: Loaded
[   17.743195] FS-Cache: Netfs 'nfs' registered for caching
[   17.773307] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   23.410709] forcedeth 0000:00:04.0: eth0: no link during initialization
[   23.411549] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   24.794357] ACPI: PCI Interrupt Link [LNK3] enabled at IRQ 11
[   24.981255] [drm] Initialized drm 1.1.0 20060810
[   25.130683] [drm] radeon kernel modesetting enabled.
[   25.133211] [drm] initializing kernel modesetting (RV280 0x1002:0x5964 0x148C:0x2073).
[   25.133292] [drm] register mmio base: 0xDF000000
[   25.133297] [drm] register mmio size: 65536
[   25.137470] [drm] Generation 2 PCI interface, using max accessible memory
[   25.137485] radeon 0000:01:02.0: VRAM: 128M 0x00000000C0000000 - 0x00000000C7FFFFFF (128M used)
[   25.137494] radeon 0000:01:02.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   25.139733] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   25.139746] [drm] Driver supports precise vblank timestamp query.
[   25.139784] [drm] radeon: irq initialized.
[   25.140582] [drm] Detected VRAM RAM=128M, BAR=128M
[   25.140591] [drm] RAM width 64bits DDR
[   25.140740] [TTM] Zone  kernel: Available graphics memory: 370726 kiB.
[   25.140746] [TTM] Initializing pool allocator.
[   25.140819] [drm] radeon: 128M of VRAM memory ready
[   25.140825] [drm] radeon: 512M of GTT memory ready.
[   25.140873] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   25.154691] [drm] PCIE GART of 512M enabled (table at 0x000000002B900000).
[   25.154833] radeon 0000:01:02.0: WB disabled
[   25.156741] [drm] Loading R200 Microcode
[   25.208453] platform radeon_cp.0: firmware: agent loaded radeon/R200_cp.bin into memory
[   25.208915] [drm] radeon: ring at 0x00000000A0001000
[   25.208942] [drm] ring test succeeded in 0 usecs
[   25.209203] [drm] radeon: ib pool ready.
[   25.209383] [drm] ib test succeeded in 0 usecs
[   25.210046] [drm] Radeon Display Connectors
[   25.210052] [drm] Connector 0:
[   25.210056] [drm]   VGA
[   25.210062] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[   25.210066] [drm]   Encoders:
[   25.210070] [drm]     CRT1: INTERNAL_DAC1
[   25.210074] [drm] Connector 1:
[   25.210078] [drm]   DVI-I
[   25.210081] [drm]   HPD1
[   25.210087] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[   25.210090] [drm]   Encoders:
[   25.210094] [drm]     CRT2: INTERNAL_DAC2
[   25.210098] [drm]     DFP1: INTERNAL_TMDS1
[   25.210101] [drm] Connector 2:
[   25.210105] [drm]   S-video
[   25.210108] [drm]   Encoders:
[   25.210111] [drm]     TV1: INTERNAL_DAC2
[   25.347529] [drm] fb mappable at 0xC0040000
[   25.347537] [drm] vram apper at 0xC0000000
[   25.347541] [drm] size 4177920
[   25.347545] [drm] fb depth is 24
[   25.347549] [drm]    pitch is 5440
[   25.349651] fbcon: radeondrmfb (fb0) is primary device
[   25.351150] Console: switching to colour frame buffer device 170x48
[   25.351179] fb0: radeondrmfb frame buffer device
[   25.351183] drm: registered panic notifier
[   25.351209] [drm] Initialized radeon 2.12.0 20080528 for 0000:01:02.0 on minor 0
[   27.416642] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   33.680258] Bluetooth: Core ver 2.16
[   33.680383] NET: Registered protocol family 31
[   33.680389] Bluetooth: HCI device and connection manager initialized
[   33.680398] Bluetooth: HCI socket layer initialized
[   33.680403] Bluetooth: L2CAP socket layer initialized
[   33.681273] Bluetooth: SCO socket layer initialized
[   33.794058] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   33.794069] Bluetooth: BNEP filters: protocol multicast
[   33.840819] wlan0: authenticate with 00:1b:2f:d5:c4:c2 (try 1)
[   33.846872] wlan0: authenticated
[   33.972138] wlan0: associate with 00:1b:2f:d5:c4:c2 (try 1)
[   33.974066] wlan0: RX AssocResp from 00:1b:2f:d5:c4:c2 (capab=0x401 status=0 aid=5)
[   33.974077] wlan0: associated
[   33.976418] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   38.396732] lp0: using parport0 (interrupt-driven).
[   38.424093] ppdev: user-space parallel port driver
[   44.376072] wlan0: no IPv6 routers present
$
Should I attempt to install the ATI drivers now? Thanks again for all your time, patience, and help.

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#10 Post by sgcb »

Your kernel looks like it's loading KMS properly now so we can rule that out. What does your Xorg.0.log look like now?

PS. my system reports a CPU fan error on boot as well, but thankfully the bios has an option to disable the 'wait for f1 on error" functionality. With any luck your bios might have this option as well

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#11 Post by MightyMouse »

Here we are:

Code: Select all

$ cat /var/log/Xorg.0.log
[    28.172] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[    28.172] X Protocol Version 11, Revision 0
[    28.172] Build Operating System: Linux 2.6.32-5-amd64 i686 Debian
[    28.172] Current Operating System: Linux damacon 3.2.0-4-686-pae #1 SMP Debian 3.2.35-2 i686
[    28.172] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=bc5b0222-e383-4c09-836b-9fbd44e9f3a6 ro quiet
[    28.172] Build Date: 29 November 2012  08:52:43PM
[    28.172] xorg-server 2:1.12.4-4 (Julien Cristau <jcristau@debian.org>) 
[    28.172] Current version of pixman: 0.26.0
[    28.172] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    28.172] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    28.173] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 11 13:40:21 2013
[    28.173] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    28.173] (==) No Layout section.  Using the first Screen section.
[    28.173] (==) No screen section available. Using defaults.
[    28.173] (**) |-->Screen "Default Screen Section" (0)
[    28.174] (**) |   |-->Monitor "<default monitor>"
[    28.174] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    28.174] (==) Automatically adding devices
[    28.174] (==) Automatically enabling devices
[    28.174] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    28.174] 	Entry deleted from font path.
[    28.174] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[    28.174] 	Entry deleted from font path.
[    28.174] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[    28.174] (==) ModulePath set to "/usr/lib/xorg/modules"
[    28.174] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    28.174] (II) Loader magic: 0xb77c35a0
[    28.174] (II) Module ABI versions:
[    28.174] 	X.Org ANSI C Emulation: 0.4
[    28.174] 	X.Org Video Driver: 12.1
[    28.174] 	X.Org XInput driver : 16.0
[    28.174] 	X.Org Server Extension : 6.0
[    28.180] (--) PCI:*(0:1:2:0) 1002:5964:148c:2073 rev 1, Mem @ 0xc0000000/134217728, 0xdf000000/65536, I/O @ 0x0000c800/256, BIOS @ 0x????????/131072
[    28.181] (--) PCI: (0:1:2:1) 1002:5d44:148c:2072 rev 1, Mem @ 0xc8000000/134217728, 0xdf010000/65536
[    28.181] (--) PCI: (0:2:0:0) 10de:01a0:1462:3738 rev 177, Mem @ 0xdc000000/16777216, 0xd0000000/134217728, BIOS @ 0x????????/65536
[    28.182] (II) Open ACPI successful (/var/run/acpid.socket)
[    28.182] (II) LoadModule: "extmod"
[    28.182] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    28.183] (II) Module extmod: vendor="X.Org Foundation"
[    28.183] 	compiled for 1.12.4, module version = 1.0.0
[    28.183] 	Module class: X.Org Server Extension
[    28.183] 	ABI class: X.Org Server Extension, version 6.0
[    28.183] (II) Loading extension SELinux
[    28.183] (II) Loading extension MIT-SCREEN-SAVER
[    28.184] (II) Loading extension XFree86-VidModeExtension
[    28.184] (II) Loading extension XFree86-DGA
[    28.184] (II) Loading extension DPMS
[    28.184] (II) Loading extension XVideo
[    28.184] (II) Loading extension XVideo-MotionCompensation
[    28.184] (II) Loading extension X-Resource
[    28.184] (II) LoadModule: "dbe"
[    28.184] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    28.184] (II) Module dbe: vendor="X.Org Foundation"
[    28.184] 	compiled for 1.12.4, module version = 1.0.0
[    28.184] 	Module class: X.Org Server Extension
[    28.184] 	ABI class: X.Org Server Extension, version 6.0
[    28.184] (II) Loading extension DOUBLE-BUFFER
[    28.184] (II) LoadModule: "glx"
[    28.184] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    28.185] (II) Module glx: vendor="X.Org Foundation"
[    28.185] 	compiled for 1.12.4, module version = 1.0.0
[    28.185] 	ABI class: X.Org Server Extension, version 6.0
[    28.185] (==) AIGLX enabled
[    28.185] (II) Loading extension GLX
[    28.185] (II) LoadModule: "record"
[    28.185] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    28.185] (II) Module record: vendor="X.Org Foundation"
[    28.185] 	compiled for 1.12.4, module version = 1.13.0
[    28.185] 	Module class: X.Org Server Extension
[    28.185] 	ABI class: X.Org Server Extension, version 6.0
[    28.185] (II) Loading extension RECORD
[    28.185] (II) LoadModule: "dri"
[    28.186] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    28.186] (II) Module dri: vendor="X.Org Foundation"
[    28.186] 	compiled for 1.12.4, module version = 1.0.0
[    28.186] 	ABI class: X.Org Server Extension, version 6.0
[    28.186] (II) Loading extension XFree86-DRI
[    28.186] (II) LoadModule: "dri2"
[    28.186] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    28.187] (II) Module dri2: vendor="X.Org Foundation"
[    28.187] 	compiled for 1.12.4, module version = 1.2.0
[    28.187] 	ABI class: X.Org Server Extension, version 6.0
[    28.187] (II) Loading extension DRI2
[    28.187] (==) Matched ati as autoconfigured driver 0
[    28.187] (==) Matched vesa as autoconfigured driver 1
[    28.187] (==) Matched fbdev as autoconfigured driver 2
[    28.187] (==) Assigned the driver to the xf86ConfigLayout
[    28.187] (II) LoadModule: "ati"
[    28.187] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    28.187] (II) Module ati: vendor="X.Org Foundation"
[    28.187] 	compiled for 1.12.1.902, module version = 6.14.4
[    28.188] 	Module class: X.Org Video Driver
[    28.196] 	ABI class: X.Org Video Driver, version 12.0
[    28.196] (II) LoadModule: "radeon"
[    28.196] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    28.197] (II) Module radeon: vendor="X.Org Foundation"
[    28.197] 	compiled for 1.12.1.902, module version = 6.14.4
[    28.197] 	Module class: X.Org Video Driver
[    28.197] 	ABI class: X.Org Video Driver, version 12.0
[    28.197] (II) LoadModule: "vesa"
[    28.198] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    28.198] (II) Module vesa: vendor="X.Org Foundation"
[    28.198] 	compiled for 1.12.1, module version = 2.3.1
[    28.198] 	Module class: X.Org Video Driver
[    28.198] 	ABI class: X.Org Video Driver, version 12.0
[    28.198] (II) LoadModule: "fbdev"
[    28.199] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    28.200] (II) Module fbdev: vendor="X.Org Foundation"
[    28.200] 	compiled for 1.12.1, module version = 0.4.2
[    28.200] 	ABI class: X.Org Video Driver, version 12.0
[    28.200] (II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
	ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
	ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE),
	ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE),
	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
	ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
	ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
	ATI Mobility Radeon HD 4670, ATI FirePro M5750,
	ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI RV670,
	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
	ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
	ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
	ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
	ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
	ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
	ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
	SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
	ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
	AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Mobility Radeon HD 5800 Series,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
	ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
	ATI Mobility Radeon Graphics, CEDAR,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
	ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
	CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
	BARTS, BARTS, Mobility Radeon HD 6000 Series,
	Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
	AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA
[    28.223] (II) VESA: driver for VESA chipsets: vesa
[    28.223] (II) FBDEV: driver for framebuffer: fbdev
[    28.223] (++) using VT number 7

$
Thanks for the tip. I will look into the BIOS shortly.

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#12 Post by sgcb »

It seems the most interesting bits might have been cut off (messages that would have followed the initial loading of modules). Are you certain that is Xorg.0.log in its entirety?

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#13 Post by MightyMouse »

It has to be. Let me try again and be extra careful not to leave anything outside.

Code: Select all

$ cat /var/log/Xorg.0.log > Xorg.0.log.out
$ wc Xorg.0.log.out 
  355  2941 19467 Xorg.0.log.out
$ su 
Password: 
# cat /var/log/Xorg.0.log | wc
    355    2941   19467
# cat /var/log/Xorg.0.log
[    28.172] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[    28.172] X Protocol Version 11, Revision 0
[    28.172] Build Operating System: Linux 2.6.32-5-amd64 i686 Debian
[    28.172] Current Operating System: Linux damacon 3.2.0-4-686-pae #1 SMP Debian 3.2.35-2 i686
[    28.172] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=bc5b0222-e383-4c09-836b-9fbd44e9f3a6 ro quiet
[    28.172] Build Date: 29 November 2012  08:52:43PM
[    28.172] xorg-server 2:1.12.4-4 (Julien Cristau <jcristau@debian.org>) 
[    28.172] Current version of pixman: 0.26.0
[    28.172] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    28.172] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    28.173] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 11 13:40:21 2013
[    28.173] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    28.173] (==) No Layout section.  Using the first Screen section.
[    28.173] (==) No screen section available. Using defaults.
[    28.173] (**) |-->Screen "Default Screen Section" (0)
[    28.174] (**) |   |-->Monitor "<default monitor>"
[    28.174] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    28.174] (==) Automatically adding devices
[    28.174] (==) Automatically enabling devices
[    28.174] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    28.174] 	Entry deleted from font path.
[    28.174] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[    28.174] 	Entry deleted from font path.
[    28.174] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[    28.174] (==) ModulePath set to "/usr/lib/xorg/modules"
[    28.174] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    28.174] (II) Loader magic: 0xb77c35a0
[    28.174] (II) Module ABI versions:
[    28.174] 	X.Org ANSI C Emulation: 0.4
[    28.174] 	X.Org Video Driver: 12.1
[    28.174] 	X.Org XInput driver : 16.0
[    28.174] 	X.Org Server Extension : 6.0
[    28.180] (--) PCI:*(0:1:2:0) 1002:5964:148c:2073 rev 1, Mem @ 0xc0000000/134217728, 0xdf000000/65536, I/O @ 0x0000c800/256, BIOS @ 0x????????/131072
[    28.181] (--) PCI: (0:1:2:1) 1002:5d44:148c:2072 rev 1, Mem @ 0xc8000000/134217728, 0xdf010000/65536
[    28.181] (--) PCI: (0:2:0:0) 10de:01a0:1462:3738 rev 177, Mem @ 0xdc000000/16777216, 0xd0000000/134217728, BIOS @ 0x????????/65536
[    28.182] (II) Open ACPI successful (/var/run/acpid.socket)
[    28.182] (II) LoadModule: "extmod"
[    28.182] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    28.183] (II) Module extmod: vendor="X.Org Foundation"
[    28.183] 	compiled for 1.12.4, module version = 1.0.0
[    28.183] 	Module class: X.Org Server Extension
[    28.183] 	ABI class: X.Org Server Extension, version 6.0
[    28.183] (II) Loading extension SELinux
[    28.183] (II) Loading extension MIT-SCREEN-SAVER
[    28.184] (II) Loading extension XFree86-VidModeExtension
[    28.184] (II) Loading extension XFree86-DGA
[    28.184] (II) Loading extension DPMS
[    28.184] (II) Loading extension XVideo
[    28.184] (II) Loading extension XVideo-MotionCompensation
[    28.184] (II) Loading extension X-Resource
[    28.184] (II) LoadModule: "dbe"
[    28.184] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    28.184] (II) Module dbe: vendor="X.Org Foundation"
[    28.184] 	compiled for 1.12.4, module version = 1.0.0
[    28.184] 	Module class: X.Org Server Extension
[    28.184] 	ABI class: X.Org Server Extension, version 6.0
[    28.184] (II) Loading extension DOUBLE-BUFFER
[    28.184] (II) LoadModule: "glx"
[    28.184] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    28.185] (II) Module glx: vendor="X.Org Foundation"
[    28.185] 	compiled for 1.12.4, module version = 1.0.0
[    28.185] 	ABI class: X.Org Server Extension, version 6.0
[    28.185] (==) AIGLX enabled
[    28.185] (II) Loading extension GLX
[    28.185] (II) LoadModule: "record"
[    28.185] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    28.185] (II) Module record: vendor="X.Org Foundation"
[    28.185] 	compiled for 1.12.4, module version = 1.13.0
[    28.185] 	Module class: X.Org Server Extension
[    28.185] 	ABI class: X.Org Server Extension, version 6.0
[    28.185] (II) Loading extension RECORD
[    28.185] (II) LoadModule: "dri"
[    28.186] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    28.186] (II) Module dri: vendor="X.Org Foundation"
[    28.186] 	compiled for 1.12.4, module version = 1.0.0
[    28.186] 	ABI class: X.Org Server Extension, version 6.0
[    28.186] (II) Loading extension XFree86-DRI
[    28.186] (II) LoadModule: "dri2"
[    28.186] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    28.187] (II) Module dri2: vendor="X.Org Foundation"
[    28.187] 	compiled for 1.12.4, module version = 1.2.0
[    28.187] 	ABI class: X.Org Server Extension, version 6.0
[    28.187] (II) Loading extension DRI2
[    28.187] (==) Matched ati as autoconfigured driver 0
[    28.187] (==) Matched vesa as autoconfigured driver 1
[    28.187] (==) Matched fbdev as autoconfigured driver 2
[    28.187] (==) Assigned the driver to the xf86ConfigLayout
[    28.187] (II) LoadModule: "ati"
[    28.187] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    28.187] (II) Module ati: vendor="X.Org Foundation"
[    28.187] 	compiled for 1.12.1.902, module version = 6.14.4
[    28.188] 	Module class: X.Org Video Driver
[    28.196] 	ABI class: X.Org Video Driver, version 12.0
[    28.196] (II) LoadModule: "radeon"
[    28.196] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    28.197] (II) Module radeon: vendor="X.Org Foundation"
[    28.197] 	compiled for 1.12.1.902, module version = 6.14.4
[    28.197] 	Module class: X.Org Video Driver
[    28.197] 	ABI class: X.Org Video Driver, version 12.0
[    28.197] (II) LoadModule: "vesa"
[    28.198] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    28.198] (II) Module vesa: vendor="X.Org Foundation"
[    28.198] 	compiled for 1.12.1, module version = 2.3.1
[    28.198] 	Module class: X.Org Video Driver
[    28.198] 	ABI class: X.Org Video Driver, version 12.0
[    28.198] (II) LoadModule: "fbdev"
[    28.199] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    28.200] (II) Module fbdev: vendor="X.Org Foundation"
[    28.200] 	compiled for 1.12.1, module version = 0.4.2
[    28.200] 	ABI class: X.Org Video Driver, version 12.0
[    28.200] (II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
	ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
	ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE),
	ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE),
	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
	ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
	ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
	ATI Mobility Radeon HD 4670, ATI FirePro M5750,
	ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI RV670,
	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
	ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
	ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
	ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
	ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
	ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
	ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
	SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
	ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
	AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Mobility Radeon HD 5800 Series,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
	ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
	ATI Mobility Radeon Graphics, CEDAR,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
	ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
	CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
	BARTS, BARTS, Mobility Radeon HD 6000 Series,
	Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
	AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA
[    28.223] (II) VESA: driver for VESA chipsets: vesa
[    28.223] (II) FBDEV: driver for framebuffer: fbdev
[    28.223] (++) using VT number 7

# 

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#14 Post by MightyMouse »

I don't know why, but if I copy-paste back into a text file what I have inside the `code' environment, wc returns:

Code: Select all

# wc temp.txt 
  355  2941 20007 temp.txt
# 
I am using a mac to post in the forum, but the new line characters (as a number) should not change between the two O/Ss. On the other hand `diff' supposedly returns differences between the two files that I created (one locally by redirecting the output, and the other one by copy-pasting back to a terminal in that machine what I posted above). However, when I read the lines I do not see any differences with `diff'.

sgcb
Posts: 70
Joined: 2013-01-02 02:14

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#15 Post by sgcb »

That's very odd. You've got me stumped. Nothing in syslog relating to the problem? Or perhaps a 'gdm' log? (Though I don't use gdm myself)

You could try issuing 'startx' from one of your initial tty[1-6]. If things are successful, you'll either get a blank screen with a mouse cursor or your original desktop (I'm not sure how default debian is configured). Otherwise a helpful Xorg log might also be produced this way

L_V
Posts: 1477
Joined: 2007-03-19 09:04
Been thanked: 11 times

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#16 Post by L_V »

Radeon 9200 rv280 should work out of the box in wheezy.

Code: Select all

# lsmod |grep ^drm
drm_kms_helper         22699  1 radeon
drm                   130145  4 drm_kms_helper,ttm,radeon

Code: Select all

# dmesg | egrep 'radeon:|R200'
 [drm] radeon: irq initialized.
 [drm] radeon: 128M of VRAM memory ready
 [drm] radeon: 64M of GTT memory ready.
 [drm] Loading R200 Microcode
 platform radeon_cp.0: firmware: agent loaded radeon/R200_cp.bin into memory
 [drm] radeon: ring at 0x00000000D0001000
 [drm] radeon: ib pool ready.
 [drm] radeon: ring at 0x00000000D0001000
libdrm-radeon1 should be installed
• /lib/firmware/radeon/R200_cp.bin necessary (provided by firmware-linux-nonfree).
• No xorg file necessary at all.
MightyMouse wrote: In the past I was not using the proprietary driver because there was a bug. However, in the ATIPropriety it is mentioned that the bug was fixed, so I followed the route mentioned in the link for Squeeze.
In my opinion, if you played before with the proprietary driver which is not available for rv280, you should first clean up everything related with previous driver installation.

=> http://wiki.cchtml.com/index.php/Hardwa ... _Source.29
Radeon Legacy (Open Source)
These cards are no longer actively supported by AMD as of the 8.28.8 fglrx driver.
Unless you run an ancient distro, using the open source drivers is your only option.
* RV280 Radeon 9200PRO/9200/9200SE/9250, M9+

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#17 Post by MightyMouse »

I booted on recovery mode and attempted to run startx from there. This indeed generated a log file that seems more relevant.

Code: Select all

$ cat Xorg.0.log.critical 
[   124.769] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[   124.769] X Protocol Version 11, Revision 0
[   124.769] Build Operating System: Linux 2.6.32-5-amd64 i686 Debian
[   124.769] Current Operating System: Linux damacon 3.2.0-4-686-pae #1 SMP Debian 3.2.35-2 i686
[   124.770] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=bc5b0222-e383-4c09-836b-9fbd44e9f3a6 ro single
[   124.770] Build Date: 29 November 2012  08:52:43PM
[   124.770] xorg-server 2:1.12.4-4 (Julien Cristau <jcristau@debian.org>) 
[   124.770] Current version of pixman: 0.26.0
[   124.771] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   124.771] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   124.772] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 12 09:41:56 2013
[   124.802] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   124.814] (==) No Layout section.  Using the first Screen section.
[   124.814] (==) No screen section available. Using defaults.
[   124.814] (**) |-->Screen "Default Screen Section" (0)
[   124.814] (**) |   |-->Monitor "<default monitor>"
[   124.828] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   124.829] (==) Automatically adding devices
[   124.829] (==) Automatically enabling devices
[   124.863] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[   124.863] 	Entry deleted from font path.
[   124.902] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[   124.903] 	Entry deleted from font path.
[   124.903] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[   124.903] (==) ModulePath set to "/usr/lib/xorg/modules"
[   124.903] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   124.903] (II) Loader magic: 0xb77a35a0
[   124.903] (II) Module ABI versions:
[   124.903] 	X.Org ANSI C Emulation: 0.4
[   124.903] 	X.Org Video Driver: 12.1
[   124.903] 	X.Org XInput driver : 16.0
[   124.903] 	X.Org Server Extension : 6.0
[   124.905] (--) PCI:*(0:1:2:0) 1002:5964:148c:2073 rev 1, Mem @ 0xc0000000/134217728, 0xdf000000/65536, I/O @ 0x0000c800/256, BIOS @ 0x????????/131072
[   124.905] (--) PCI: (0:1:2:1) 1002:5d44:148c:2072 rev 1, Mem @ 0xc8000000/134217728, 0xdf010000/65536
[   124.905] (--) PCI: (0:2:0:0) 10de:01a0:1462:3738 rev 177, Mem @ 0xdc000000/16777216, 0xd0000000/134217728, BIOS @ 0x????????/65536
[   124.905] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   124.905] (II) LoadModule: "extmod"
[   124.918] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[   124.938] (II) Module extmod: vendor="X.Org Foundation"
[   124.938] 	compiled for 1.12.4, module version = 1.0.0
[   124.938] 	Module class: X.Org Server Extension
[   124.938] 	ABI class: X.Org Server Extension, version 6.0
[   124.938] (II) Loading extension SELinux
[   124.938] (II) Loading extension MIT-SCREEN-SAVER
[   124.938] (II) Loading extension XFree86-VidModeExtension
[   124.938] (II) Loading extension XFree86-DGA
[   124.938] (II) Loading extension DPMS
[   124.938] (II) Loading extension XVideo
[   124.938] (II) Loading extension XVideo-MotionCompensation
[   124.939] (II) Loading extension X-Resource
[   124.939] (II) LoadModule: "dbe"
[   124.939] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[   124.940] (II) Module dbe: vendor="X.Org Foundation"
[   124.940] 	compiled for 1.12.4, module version = 1.0.0
[   124.941] 	Module class: X.Org Server Extension
[   124.941] 	ABI class: X.Org Server Extension, version 6.0
[   124.941] (II) Loading extension DOUBLE-BUFFER
[   124.941] (II) LoadModule: "glx"
[   124.941] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   124.974] (II) Module glx: vendor="X.Org Foundation"
[   124.974] 	compiled for 1.12.4, module version = 1.0.0
[   124.974] 	ABI class: X.Org Server Extension, version 6.0
[   124.974] (==) AIGLX enabled
[   124.974] (II) Loading extension GLX
[   124.974] (II) LoadModule: "record"
[   124.975] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[   124.976] (II) Module record: vendor="X.Org Foundation"
[   124.976] 	compiled for 1.12.4, module version = 1.13.0
[   124.976] 	Module class: X.Org Server Extension
[   124.976] 	ABI class: X.Org Server Extension, version 6.0
[   124.976] (II) Loading extension RECORD
[   124.976] (II) LoadModule: "dri"
[   124.976] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[   124.995] (II) Module dri: vendor="X.Org Foundation"
[   124.995] 	compiled for 1.12.4, module version = 1.0.0
[   124.995] 	ABI class: X.Org Server Extension, version 6.0
[   124.995] (II) Loading extension XFree86-DRI
[   124.995] (II) LoadModule: "dri2"
[   124.995] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   125.007] (II) Module dri2: vendor="X.Org Foundation"
[   125.007] 	compiled for 1.12.4, module version = 1.2.0
[   125.007] 	ABI class: X.Org Server Extension, version 6.0
[   125.007] (II) Loading extension DRI2
[   125.008] (==) Matched ati as autoconfigured driver 0
[   125.008] (==) Matched vesa as autoconfigured driver 1
[   125.008] (==) Matched fbdev as autoconfigured driver 2
[   125.008] (==) Assigned the driver to the xf86ConfigLayout
[   125.008] (II) LoadModule: "ati"
[   125.034] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[   125.046] (II) Module ati: vendor="X.Org Foundation"
[   125.046] 	compiled for 1.12.1.902, module version = 6.14.4
[   125.046] 	Module class: X.Org Video Driver
[   125.046] 	ABI class: X.Org Video Driver, version 12.0
[   125.046] (II) LoadModule: "radeon"
[   125.047] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[   125.102] (II) Module radeon: vendor="X.Org Foundation"
[   125.102] 	compiled for 1.12.1.902, module version = 6.14.4
[   125.102] 	Module class: X.Org Video Driver
[   125.102] 	ABI class: X.Org Video Driver, version 12.0
[   125.109] (II) LoadModule: "vesa"
[   125.118] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[   125.132] (II) Module vesa: vendor="X.Org Foundation"
[   125.132] 	compiled for 1.12.1, module version = 2.3.1
[   125.132] 	Module class: X.Org Video Driver
[   125.132] 	ABI class: X.Org Video Driver, version 12.0
[   125.132] (II) LoadModule: "fbdev"
[   125.133] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[   125.141] (II) Module fbdev: vendor="X.Org Foundation"
[   125.141] 	compiled for 1.12.1, module version = 0.4.2
[   125.141] 	ABI class: X.Org Video Driver, version 12.0
[   125.141] (II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
	ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
	ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE),
	ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE),
	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
	ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
	ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
	ATI Mobility Radeon HD 4670, ATI FirePro M5750,
	ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI RV670,
	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
	ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
	ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
	ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
	ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
	ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
	ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
	SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
	ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
	AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Mobility Radeon HD 5800 Series,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
	ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
	ATI Mobility Radeon Graphics, CEDAR,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
	ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
	CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
	BARTS, BARTS, Mobility Radeon HD 6000 Series,
	Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
	AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA
[   125.148] (II) VESA: driver for VESA chipsets: vesa
[   125.148] (II) FBDEV: driver for framebuffer: fbdev
[   125.148] (--) using VT number 2

[   125.159] (II) [KMS] drm report modesetting isn't supported.
[   125.159] (WW) Falling back to old probe method for vesa
[   125.159] (WW) Falling back to old probe method for fbdev
[   125.159] (II) Loading sub module "fbdevhw"
[   125.159] (II) LoadModule: "fbdevhw"
[   125.160] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[   125.175] (II) Module fbdevhw: vendor="X.Org Foundation"
[   125.175] 	compiled for 1.12.4, module version = 0.0.2
[   125.175] 	ABI class: X.Org Video Driver, version 12.1
[   125.175] (EE) open /dev/fb0: No such file or directory
[   125.175] (II) RADEON(0): TOTO SAYS 00000000df000000
[   125.175] (II) RADEON(0): MMIO registers at 0x00000000df000000: size 64KB
[   125.175] (II) RADEON(0): PCI bus 1 card 2 func 0
[   125.175] (II) RADEON(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   125.175] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[   125.195] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[   125.195] (==) RADEON(0): Default visual is TrueColor
[   125.195] (II) Loading sub module "vgahw"
[   125.195] (II) LoadModule: "vgahw"
[   125.195] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[   125.212] (II) Module vgahw: vendor="X.Org Foundation"
[   125.212] 	compiled for 1.12.4, module version = 0.1.0
[   125.212] 	ABI class: X.Org Video Driver, version 12.1
[   125.213] (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0
[   125.213] (==) RADEON(0): RGB weight 888
[   125.213] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[   125.213] (--) RADEON(0): Chipset: "ATI Radeon 9200SE 5964 (AGP)" (ChipID = 0x5964)
[   125.213] (--) RADEON(0): Linear framebuffer at 0x00000000c0000000
[   125.213] (II) RADEON(0): PCI card detected
[   125.213] (II) Loading sub module "int10"
[   125.213] (II) LoadModule: "int10"
[   125.214] (II) Loading /usr/lib/xorg/modules/libint10.so
[   125.220] (II) Module int10: vendor="X.Org Foundation"
[   125.220] 	compiled for 1.12.4, module version = 1.0.0
[   125.220] 	ABI class: X.Org Video Driver, version 12.1
[   125.220] (II) RADEON(0): initializing int10
[   125.226] (II) RADEON(0): Primary V_BIOS segment is: 0xc000
[   125.228] (II) RADEON(0): Legacy BIOS detected
[   125.246] drmOpenDevice: node name is /dev/dri/card0
[   125.756] drmOpenByBusid: Searching for BusID pci:0000:01:02.0
[   125.756] drmOpenDevice: node name is /dev/dri/card0
[   125.757] drmOpenDevice: open result is 8, (OK)
[   125.757] drmOpenByBusid: drmOpenMinor returns 8
[   125.757] drmOpenByBusid: drmGetBusid reports pci:0000:01:02.0
[   125.757] (EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version mismatch.
[dri] This chipset requires a kernel module version of 1.8.0,
[dri] but the kernel reports a version of 2.12.0.[dri] Make sure your module is loaded prior to starting X, and
[dri] that this driver was built with support for KMS.
[dri] Aborting.
[   125.757] (II) UnloadModule: "radeon"
[   125.757] (II) UnloadSubModule: "int10"
[   125.757] (II) Unloading int10
[   125.757] (II) UnloadSubModule: "vgahw"
[   125.757] (II) Unloading vgahw
[   125.757] (EE) Screen(s) found, but none have a usable configuration.
[   125.758] 
Fatal server error:
[   125.758] no screens found
[   125.758] 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[   125.758] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   125.758] 
[   125.910] Server terminated with error (1). Closing log file.
$ 


The other strange thing is that there are times where w reports a load average of 20-something and times (e.g. now) where w reports load-average 0.03. Moreover, I have way too many Xorg.X.log files generated under /var/log. For instance:

Code: Select all

$ ls -l /var/log/Xorg.*.log* | grep 'Jan 12' | wc -l
234
$ 
How can I make sure that everything related to my previous installation is clean? I believe it is clean because I removed the fglrx-driver and then a subsequent apt-get update/upgrade suggested that I should remove some packages which were no longer needed and I believe they were installed through the installation of the fglrx-driver. But other than that, I do not know how to check if everything is clean.

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#18 Post by MightyMouse »

I made some slight progress.

I made runlevel 3 to be my default runlevel by editing the file /etc/inittab (for other newbies like me see here). Then under the directory /etc/rc3.d I had the following files:

Code: Select all

root@damacon:/etc/rc3.d# ls -l
total 4
-rw-r--r-- 1 root root 677 Nov 16 14:52 README
lrwxrwxrwx 1 root root  14 Jan  6 01:05 S01motd -> ../init.d/motd
lrwxrwxrwx 1 root root  17 Jan  6 01:48 S13rpcbind -> ../init.d/rpcbind
lrwxrwxrwx 1 root root  20 Jan  6 01:48 S14nfs-common -> ../init.d/nfs-common
lrwxrwxrwx 1 root root  24 Jan  6 01:49 S16binfmt-support -> ../init.d/binfmt-support
lrwxrwxrwx 1 root root  17 Jan  6 01:48 S16rsyslog -> ../init.d/rsyslog
lrwxrwxrwx 1 root root  14 Jan  6 01:49 S16sudo -> ../init.d/sudo
lrwxrwxrwx 1 root root  17 Jan  6 01:49 S17apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root  15 Jan  6 01:49 S18acpid -> ../init.d/acpid
lrwxrwxrwx 1 root root  17 Jan  6 01:49 S18anacron -> ../init.d/anacron
lrwxrwxrwx 1 root root  13 Jan  6 01:49 S18atd -> ../init.d/atd
lrwxrwxrwx 1 root root  14 Jan  6 01:49 S18cron -> ../init.d/cron
lrwxrwxrwx 1 root root  14 Jan  6 01:49 S18dbus -> ../init.d/dbus
lrwxrwxrwx 1 root root  15 Jan  6 01:49 S18exim4 -> ../init.d/exim4
lrwxrwxrwx 1 root root  26 Jan  6 10:29 S18fglrx-atieventsd -> ../init.d/fglrx-atieventsd
lrwxrwxrwx 1 root root  15 Jan  6 02:39 S18rsync -> ../init.d/rsync
lrwxrwxrwx 1 root root  27 Jan  6 01:49 S18speech-dispatcher -> ../init.d/speech-dispatcher
lrwxrwxrwx 1 root root  13 Jan  6 01:50 S18ssh -> ../init.d/ssh
lrwxrwxrwx 1 root root  22 Jan  6 01:49 S19avahi-daemon -> ../init.d/avahi-daemon
lrwxrwxrwx 1 root root  19 Jan  6 01:49 S19bluetooth -> ../init.d/bluetooth
lrwxrwxrwx 1 root root  25 Jan  6 01:49 S19network-manager -> ../init.d/network-manager
lrwxrwxrwx 1 root root  14 Jan  6 01:49 S20cups -> ../init.d/cups
lrwxrwxrwx 1 root root  14 Jan  6 01:51 S20gdm3 -> ../init.d/gdm3
lrwxrwxrwx 1 root root  20 Jan  6 01:49 S20pulseaudio -> ../init.d/pulseaudio
lrwxrwxrwx 1 root root  15 Jan  6 01:51 S20saned -> ../init.d/saned
lrwxrwxrwx 1 root root  18 Jan  6 01:51 S21bootlogs -> ../init.d/bootlogs
lrwxrwxrwx 1 root root  19 Jan  6 01:51 S22minissdpd -> ../init.d/minissdpd
lrwxrwxrwx 1 root root  18 Jan  6 01:51 S22rc.local -> ../init.d/rc.local
lrwxrwxrwx 1 root root  19 Jan  6 01:51 S22rmnologin -> ../init.d/rmnologin
# 
I disabled the fglrx-atieventsd and gdm3 daemons by renaming these two links from Ssomething to Ksomething (as it is mentioned in the README file). Then I ran the following two commands which I believe gave me the expected two warnings:

Code: Select all

# update-rc.d fglrx-atieventsd defaults
update-rc.d: using dependency based boot sequencing
insserv: warning: current start runlevel(s) (2 4 5) of script `fglrx-atieventsd' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (0 1 3 6) of script `fglrx-atieventsd' overrides LSB defaults (0 1 6).
# update-rc.d gdm3 defaults
update-rc.d: using dependency based boot sequencing
insserv: warning: current start runlevel(s) (2 4 5) of script `gdm3' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (0 1 3 6) of script `gdm3' overrides LSB defaults (0 1 6).
#
Then I rebooted the machine and now I do have access to the terminals again through Ctrl+Alt+F[1-6]. The characters are wide. Again however, startx fails, and after the failure the characters in the terminals are now much smaller/finer.

Any ideas for improving the situation now?

The new dmesg is:

Code: Select all

# dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-686-pae (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.35-2
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 0000000000080000 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000002dff0000 (usable)
[    0.000000]  BIOS-e820: 000000002dff0000 - 000000002dff3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000002dff3000 - 000000002e000000 (ACPI data)
[    0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[    0.000000] DMI 2.3 present.
[    0.000000] DMI: NVIDIA Corporation. nFORCE-MCP/MS-6373, BIOS 6.00 PG 10/03/2002
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x2dff0 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-AFFFF uncachable
[    0.000000]   B0000-BFFFF write-combining
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 02E000000 mask FFE000000 uncachable
[    0.000000]   2 base 030000000 mask FF0000000 uncachable
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 base 0D8000000 mask FFC000000 write-combining
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] initial memory mapped : 0 - 01a00000
[    0.000000] Base memory trampoline at [c007c000] 7c000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-000000002dff0000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 002de00000 page 2M
[    0.000000]  002de00000 - 002dff0000 page 4k
[    0.000000] kernel direct mapping tables up to 2dff0000 @ 19f9000-1a00000
[    0.000000] RAMDISK: 2c755000 - 2d134000
[    0.000000] ACPI: RSDP 000f6490 00014 (v00 Nvidia)
[    0.000000] ACPI: RSDT 2dff3000 00028 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 2dff3040 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 2dff30c0 03E5E (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000C)
[    0.000000] ACPI: FACS 2dff0000 00040
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 735MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 2dff0000
[    0.000000]   low ram: 0 - 2dff0000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x0002dff0
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x00000080
[    0.000000]     0: 0x00000100 -> 0x0002dff0
[    0.000000] On node 0 totalpages: 188256
[    0.000000] free_area_init_node: node 0, pgdat c1412180, node_mem_map eda2f200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3920 pages, LIFO batch:0
[    0.000000]   Normal zone: 1440 pages used for memmap
[    0.000000]   Normal zone: 182864 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] Nvidia board detected. Ignoring ACPI timer override.
[    0.000000] If you got timer trouble try acpi_use_timer_override
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] nr_irqs_gsi: 16
[    0.000000] PM: Registered nosave memory: 0000000000080000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 2e000000 (gap: 2e000000:d2000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @eda1b000 s33280 r0 d24064 u57344
[    0.000000] pcpu-alloc: s33280 r0 d24064 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 186784
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=bc5b0222-e383-4c09-836b-9fbd44e9f3a6 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00000000:00000000)
[    0.000000] Memory: 730920k/753600k available (2845k kernel code, 22104k reserved, 1353k data, 416k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
[    0.000000]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000000]     vmalloc : 0xee7f0000 - 0xff9fe000   ( 274 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xedff0000   ( 735 MB)
[    0.000000]       .init : 0xc141a000 - 0xc1482000   ( 416 kB)
[    0.000000]       .data : 0xc12c7484 - 0xc1419a80   (1353 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12c7484   (2845 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=ed406000 soft=ed408000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1102.464 MHz processor.
[    0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 2204.92 BogoMIPS (lpj=4409856)
[    0.008016] pid_max: default: 32768 minimum: 301
[    0.008114] Security Framework initialized
[    0.008128] AppArmor: AppArmor disabled by boot time parameter
[    0.008166] Mount-cache hash table entries: 512
[    0.008484] Initializing cgroup subsys cpuacct
[    0.008498] Initializing cgroup subsys memory
[    0.008521] Initializing cgroup subsys devices
[    0.008527] Initializing cgroup subsys freezer
[    0.008532] Initializing cgroup subsys net_cls
[    0.008538] Initializing cgroup subsys blkio
[    0.008554] Initializing cgroup subsys perf_event
[    0.008618] mce: CPU supports 4 MCE banks
[    0.008686] SMP alternatives: switching to UP code
[    0.014296] Freeing SMP alternatives: 8k freed
[    0.014312] ACPI: Core revision 20110623
[    0.018880] ACPI: setting ELCR to 0200 (from 1820)
[    0.020163] weird, boot CPU (#0) not listed by the BIOS.
[    0.020168] SMP motherboard not detected.
[    0.020174] Local APIC not detected. Using dummy APIC emulation.
[    0.020178] SMP disabled
[    0.020183] Performance Events: 
[    0.020189] no APIC, boot with the "lapic" boot parameter to force-enable it.
[    0.020193] no hardware sampling interrupt available.
[    0.020200] AMD PMU driver.
[    0.020206] ... version:                0
[    0.020210] ... bit width:              48
[    0.020214] ... generic registers:      4
[    0.020218] ... value mask:             0000ffffffffffff
[    0.020222] ... max period:             00007fffffffffff
[    0.020226] ... fixed-purpose events:   0
[    0.020230] ... event mask:             000000000000000f
[    0.020738] NMI watchdog disabled (cpu0): not supported (no LAPIC?)
[    0.020782] Brought up 1 CPUs
[    0.020788] Total of 1 processors activated (2204.92 BogoMIPS).
[    0.021206] devtmpfs: initialized
[    0.021649] PM: Registering ACPI NVS region at 2dff0000 (12288 bytes)
[    0.024036] print_constraints: dummy: 
[    0.024180] NET: Registered protocol family 16
[    0.024458] ACPI: bus type pci registered
[    0.052704] PCI: PCI BIOS revision 2.10 entry at 0xfb360, last bus=2
[    0.052709] PCI: Using configuration type 1 for base access
[    0.054529] bio: create slab <bio-0> at 0
[    0.054722] ACPI: Added _OSI(Module Device)
[    0.054728] ACPI: Added _OSI(Processor Device)
[    0.054734] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.054739] ACPI: Added _OSI(Processor Aggregator Device)
[    0.056226] ACPI: EC: Look up EC in DSDT
[    0.061941] ACPI: Interpreter enabled
[    0.061961] ACPI: (supports S0 S1 S4 S5)
[    0.062013] ACPI: Using PIC for interrupt routing
[    0.071164] ACPI: No dock devices found.
[    0.071171] HEST: Table not found.
[    0.071184] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.071335] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.071631] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.071639] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.071647] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.071654] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
[    0.071660] pci_root PNP0A03:00: host bridge window [mem 0x2e000000-0xffefffff] (ignored)
[    0.071694] pci 0000:00:00.0: [10de:01a4] type 0 class 0x000600
[    0.071710] pci 0000:00:00.0: reg 10: [mem 0xd8000000-0xdbffffff pref]
[    0.071792] pci 0000:00:00.1: [10de:01ac] type 0 class 0x000500
[    0.071860] pci 0000:00:00.2: [10de:01ad] type 0 class 0x000500
[    0.071928] pci 0000:00:00.3: [10de:01ab] type 0 class 0x000500
[    0.072023] pci 0000:00:01.0: [10de:01b2] type 0 class 0x000601
[    0.072148] pci 0000:00:01.1: [10de:01b4] type 0 class 0x000c05
[    0.072171] pci 0000:00:01.1: reg 10: [io  0x5000-0x500f]
[    0.072185] pci 0000:00:01.1: reg 14: [io  0x5020-0x502f]
[    0.072200] pci 0000:00:01.1: reg 18: [io  0x6000-0x601f]
[    0.072266] pci 0000:00:01.1: PME# supported from D3hot D3cold
[    0.072306] pci 0000:00:02.0: [10de:01c2] type 0 class 0x000c03
[    0.072328] pci 0000:00:02.0: reg 10: [mem 0xe0002000-0xe0002fff]
[    0.072409] pci 0000:00:02.0: supports D1 D2
[    0.072414] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.072446] pci 0000:00:03.0: [10de:01c2] type 0 class 0x000c03
[    0.072468] pci 0000:00:03.0: reg 10: [mem 0xe0000000-0xe0000fff]
[    0.072550] pci 0000:00:03.0: supports D1 D2
[    0.072555] pci 0000:00:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.072586] pci 0000:00:04.0: [10de:01c3] type 0 class 0x000200
[    0.072608] pci 0000:00:04.0: reg 10: [mem 0xe0001000-0xe00013ff]
[    0.072622] pci 0000:00:04.0: reg 14: [io  0xd800-0xd807]
[    0.072695] pci 0000:00:04.0: supports D1 D2
[    0.072700] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.072732] pci 0000:00:08.0: [10de:01b8] type 1 class 0x000604
[    0.072793] pci 0000:00:09.0: [10de:01bc] type 0 class 0x000101
[    0.072847] pci 0000:00:09.0: reg 20: [io  0xe000-0xe00f]
[    0.072941] pci 0000:00:1e.0: [10de:01b7] type 1 class 0x000604
[    0.073016] pci 0000:01:00.0: [10ec:8185] type 0 class 0x000200
[    0.073043] pci 0000:01:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.073060] pci 0000:01:00.0: reg 14: [mem 0xdf020000-0xdf0201ff]
[    0.073156] pci 0000:01:00.0: supports D1 D2
[    0.073162] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.073200] pci 0000:01:01.0: [1102:0007] type 0 class 0x000401
[    0.073227] pci 0000:01:01.0: reg 10: [io  0xc400-0xc41f]
[    0.073334] pci 0000:01:01.0: supports D1 D2
[    0.073366] pci 0000:01:02.0: [1002:5964] type 0 class 0x000300
[    0.073393] pci 0000:01:02.0: reg 10: [mem 0xc0000000-0xc7ffffff pref]
[    0.073411] pci 0000:01:02.0: reg 14: [io  0xc800-0xc8ff]
[    0.073428] pci 0000:01:02.0: reg 18: [mem 0xdf000000-0xdf00ffff]
[    0.073479] pci 0000:01:02.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.073519] pci 0000:01:02.0: supports D1 D2
[    0.073553] pci 0000:01:02.1: [1002:5d44] type 0 class 0x000380
[    0.073580] pci 0000:01:02.1: reg 10: [mem 0xc8000000-0xcfffffff pref]
[    0.073597] pci 0000:01:02.1: reg 14: [mem 0xdf010000-0xdf01ffff]
[    0.073693] pci 0000:01:02.1: supports D1 D2
[    0.073764] pci 0000:00:08.0: PCI bridge to [bus 01-01]
[    0.073773] pci 0000:00:08.0:   bridge window [io  0xc000-0xcfff]
[    0.073781] pci 0000:00:08.0:   bridge window [mem 0xde000000-0xdfffffff]
[    0.073790] pci 0000:00:08.0:   bridge window [mem 0xc0000000-0xcfffffff pref]
[    0.073831] pci 0000:02:00.0: [10de:01a0] type 0 class 0x000300
[    0.073853] pci 0000:02:00.0: reg 10: [mem 0xdc000000-0xdcffffff]
[    0.073867] pci 0000:02:00.0: reg 14: [mem 0xd0000000-0xd7ffffff pref]
[    0.073910] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.073989] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
[    0.073998] pci 0000:00:1e.0:   bridge window [mem 0xdc000000-0xddffffff]
[    0.074006] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd7ffffff pref]
[    0.074023] pci_bus 0000:00: on NUMA node 0
[    0.074032] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.074287] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.074588] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
[    0.074705]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
[    0.103578] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11 *12 14 15)
[    0.103728] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 11 *12 14 15)
[    0.103875] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.104041] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.104197] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.104343] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.104489] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.104635] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.104778] ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.104924] ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.105069] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.105191] ACPI: PCI Interrupt Link [LUSB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.105351] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 10 11 *12 14 15)
[    0.105713] vgaarb: device added: PCI:0000:01:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.105725] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=none,locks=none
[    0.105731] vgaarb: loaded
[    0.105735] vgaarb: bridge control possible 0000:02:00.0
[    0.105739] vgaarb: bridge control possible 0000:01:02.0
[    0.105876] PCI: Using ACPI for IRQ routing
[    0.105886] PCI: pci_cache_line_size set to 32 bytes
[    0.105999] reserve RAM buffer: 000000002dff0000 - 000000002fffffff 
[    0.106351] Switching to clocksource pit
[    0.108569] pnp: PnP ACPI init
[    0.108623] ACPI: bus type pnp registered
[    0.109069] pnp 00:00: [mem 0x000d1800-0x000d3fff]
[    0.109077] pnp 00:00: [mem 0x000f0000-0x000f7fff]
[    0.109083] pnp 00:00: [mem 0x000f8000-0x000fbfff]
[    0.109089] pnp 00:00: [mem 0x000fc000-0x000fffff]
[    0.109095] pnp 00:00: [mem 0x2dff0000-0x2dffffff]
[    0.109100] pnp 00:00: [mem 0xffb00000-0xffffffff]
[    0.109106] pnp 00:00: [mem 0x00000000-0x0009ffff]
[    0.109112] pnp 00:00: [mem 0x00100000-0x2dfeffff]
[    0.109117] pnp 00:00: [mem 0xfec00000-0xfecfffff]
[    0.109123] pnp 00:00: [mem 0xfee00000-0xfeefffff]
[    0.109298] system 00:00: [mem 0x000d1800-0x000d3fff] has been reserved
[    0.109307] system 00:00: [mem 0x000f0000-0x000f7fff] could not be reserved
[    0.109314] system 00:00: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.109322] system 00:00: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.109329] system 00:00: [mem 0x2dff0000-0x2dffffff] could not be reserved
[    0.109337] system 00:00: [mem 0xffb00000-0xffffffff] has been reserved
[    0.109344] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.109352] system 00:00: [mem 0x00100000-0x2dfeffff] could not be reserved
[    0.109359] system 00:00: [mem 0xfec00000-0xfecfffff] has been reserved
[    0.109367] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.109378] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.109528] pnp 00:01: [bus 00-ff]
[    0.109535] pnp 00:01: [io  0x0cf0-0x0cf7]
[    0.109541] pnp 00:01: [io  0x0cf8-0x0cff]
[    0.109547] pnp 00:01: [io  0x0000-0x0cf7 window]
[    0.109553] pnp 00:01: [io  0x0d00-0xffff window]
[    0.109559] pnp 00:01: [mem 0x000a0000-0x000bffff window]
[    0.109569] pnp 00:01: [mem 0x000c0000-0x000dffff window]
[    0.109576] pnp 00:01: [mem 0x2e000000-0xffefffff window]
[    0.109776] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.109908] pnp 00:02: [io  0x4000-0x40fe]
[    0.109914] pnp 00:02: [io  0x40ff]
[    0.110038] system 00:02: [io  0x4000-0x40fe] has been reserved
[    0.110047] system 00:02: [io  0x40ff] has been reserved
[    0.110055] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.110479] pnp 00:03: [io  0x0010-0x001f]
[    0.110485] pnp 00:03: [io  0x0022-0x003f]
[    0.110491] pnp 00:03: [io  0x0044-0x005f]
[    0.110497] pnp 00:03: [io  0x0062-0x0063]
[    0.110502] pnp 00:03: [io  0x0065-0x006f]
[    0.110507] pnp 00:03: [io  0x0074-0x007f]
[    0.110512] pnp 00:03: [io  0x0091-0x0093]
[    0.110517] pnp 00:03: [io  0x00a2-0x00bf]
[    0.110523] pnp 00:03: [io  0x00e0-0x00ef]
[    0.110528] pnp 00:03: [io  0x0b78-0x0b7b]
[    0.110533] pnp 00:03: [io  0x0f78-0x0f7b]
[    0.110539] pnp 00:03: [io  0x0a78-0x0a7b]
[    0.110544] pnp 00:03: [io  0x0e78-0x0e7b]
[    0.110549] pnp 00:03: [io  0x0bbc-0x0bbf]
[    0.110555] pnp 00:03: [io  0x0fbc-0x0fbf]
[    0.110560] pnp 00:03: [io  0x04d0-0x04d1]
[    0.110565] pnp 00:03: [io  0x0294-0x0297]
[    0.110703] system 00:03: [io  0x0b78-0x0b7b] has been reserved
[    0.110712] system 00:03: [io  0x0f78-0x0f7b] has been reserved
[    0.110719] system 00:03: [io  0x0a78-0x0a7b] has been reserved
[    0.110726] system 00:03: [io  0x0e78-0x0e7b] has been reserved
[    0.110733] system 00:03: [io  0x0bbc-0x0bbf] has been reserved
[    0.110741] system 00:03: [io  0x0fbc-0x0fbf] has been reserved
[    0.110748] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.110755] system 00:03: [io  0x0294-0x0297] has been reserved
[    0.110763] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.110796] pnp 00:04: [dma 4]
[    0.110802] pnp 00:04: [io  0x0000-0x000f]
[    0.110807] pnp 00:04: [io  0x0080-0x0090]
[    0.110813] pnp 00:04: [io  0x0094-0x009f]
[    0.110818] pnp 00:04: [io  0x00c0-0x00df]
[    0.110904] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.110934] pnp 00:05: [io  0x0070-0x0073]
[    0.110944] pnp 00:05: [irq 8]
[    0.111033] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.111059] pnp 00:06: [io  0x0061]
[    0.111145] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.111171] pnp 00:07: [io  0x00f0-0x00ff]
[    0.111178] pnp 00:07: [irq 13]
[    0.111268] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.111517] pnp 00:08: [io  0x03f0-0x03f5]
[    0.111523] pnp 00:08: [io  0x03f7]
[    0.111529] pnp 00:08: [irq 6]
[    0.111534] pnp 00:08: [dma 2]
[    0.111656] pnp 00:08: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.112002] pnp 00:09: [io  0x03f8-0x03ff]
[    0.112008] pnp 00:09: [irq 4]
[    0.112180] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.112561] pnp 00:0a: [io  0x02f8-0x02ff]
[    0.112568] pnp 00:0a: [irq 3]
[    0.112727] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.113355] pnp 00:0b: [io  0x0378-0x037f]
[    0.113362] pnp 00:0b: [io  0x0778-0x077b]
[    0.113368] pnp 00:0b: [irq 7]
[    0.113525] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.113770] pnp 00:0c: [io  0x0060]
[    0.113776] pnp 00:0c: [io  0x0064]
[    0.113782] pnp 00:0c: [irq 1]
[    0.113881] pnp 00:0c: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.114234] pnp 00:0d: [io  0x0200-0x0207]
[    0.114348] pnp 00:0d: Plug and Play ACPI device, IDs PNPb02f (active)
[    0.114709] pnp 00:0e: [io  0x0330-0x0331]
[    0.114716] pnp 00:0e: [irq 10]
[    0.114871] pnp 00:0e: Plug and Play ACPI device, IDs PNPb006 (active)
[    0.114892] pnp: PnP ACPI: found 15 devices
[    0.114898] ACPI: ACPI bus type pnp unregistered
[    0.114907] PnPBIOS: Disabled by ACPI PNP
[    0.155016] Switching to clocksource acpi_pm
[    0.155092] PCI: max bus depth: 1 pci_try_num: 2
[    0.155159] pci 0000:01:02.0: BAR 6: assigned [mem 0xde000000-0xde01ffff pref]
[    0.155168] pci 0000:00:08.0: PCI bridge to [bus 01-01]
[    0.155175] pci 0000:00:08.0:   bridge window [io  0xc000-0xcfff]
[    0.155187] pci 0000:00:08.0:   bridge window [mem 0xde000000-0xdfffffff]
[    0.155196] pci 0000:00:08.0:   bridge window [mem 0xc0000000-0xcfffffff pref]
[    0.155211] pci 0000:02:00.0: BAR 6: assigned [mem 0xdd000000-0xdd00ffff pref]
[    0.155217] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
[    0.155226] pci 0000:00:1e.0:   bridge window [mem 0xdc000000-0xddffffff]
[    0.155235] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd7ffffff pref]
[    0.155260] pci 0000:00:08.0: setting latency timer to 64
[    0.155274] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.155281] pci_bus 0000:00: resource 1 [mem 0x00000000-0x3ffffffff]
[    0.155287] pci_bus 0000:01: resource 0 [io  0xc000-0xcfff]
[    0.155293] pci_bus 0000:01: resource 1 [mem 0xde000000-0xdfffffff]
[    0.155299] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref]
[    0.155306] pci_bus 0000:02: resource 1 [mem 0xdc000000-0xddffffff]
[    0.155312] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd7ffffff pref]
[    0.155452] NET: Registered protocol family 2
[    0.155620] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.156444] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.159239] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.160627] TCP: Hash tables configured (established 131072 bind 65536)
[    0.160635] TCP reno registered
[    0.160647] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.160689] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.160975] NET: Registered protocol family 1
[    0.161423] ACPI: PCI Interrupt Link [LUBA] enabled at IRQ 11
[    0.161431] PCI: setting IRQ 11 as level-triggered
[    0.161690] ACPI: PCI Interrupt Link [LUBB] enabled at IRQ 5
[    0.161696] PCI: setting IRQ 5 as level-triggered
[    0.161770] pci 0000:01:02.0: Boot video device
[    0.161794] PCI: CLS 32 bytes, default 32
[    0.161956] Unpacking initramfs...
[    0.775717] Freeing initrd memory: 10108k freed
[    0.799858] audit: initializing netlink socket (disabled)
[    0.799893] type=2000 audit(1357987180.795:1): initialized
[    0.830296] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.830879] VFS: Disk quotas dquot_6.5.2
[    0.830949] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.831125] msgmni has been set to 1447
[    0.831516] alg: No test for stdrng (krng)
[    0.831588] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.831597] io scheduler noop registered
[    0.831602] io scheduler deadline registered
[    0.831621] io scheduler cfq registered (default)
[    0.831918] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.831992] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.831998] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.833023] ERST: Table is not found!
[    0.833029] GHES: HEST is not enabled!
[    0.833063] isapnp: Scanning for PnP cards...
[    1.188228] isapnp: No Plug & Play device found
[    1.188472] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.208986] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.229520] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.250548] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.271158] 00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.271660] Linux agpgart interface v0.103
[    1.271923] agpgart: Detected NVIDIA nForce chipset
[    1.278469] agpgart-nvidia 0000:00:00.0: AGP aperture is 64M @ 0xd8000000
[    1.278845] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.278852] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.279640] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.279927] mousedev: PS/2 mouse device common for all mice
[    1.280089] rtc_cmos 00:05: RTC can wake from S4
[    1.280307] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.280340] rtc0: alarms up to one year, y3k, 242 bytes nvram
[    1.280371] cpuidle: using governor ladder
[    1.280376] cpuidle: using governor menu
[    1.280928] TCP cubic registered
[    1.280980] NET: Registered protocol family 10
[    1.282228] Mobile IPv6
[    1.282236] NET: Registered protocol family 17
[    1.282246] Registering the dns_resolver key type
[    1.282294] Using IPI No-Shortcut mode
[    1.282599] PM: Hibernation image not present or could not be loaded.
[    1.282628] registered taskstats version 1
[    1.283348] rtc_cmos 00:05: setting system clock to 2013-01-12 10:39:42 UTC (1357987182)
[    1.283435] Initializing network drop monitor service
[    1.283720] Freeing unused kernel memory: 416k freed
[    1.284715] Write protecting the kernel text: 2848k
[    1.284822] Write protecting the kernel read-only data: 1092k
[    1.298184] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.324504] udevd[44]: starting version 175
[    1.459597] ACPI: Fan [FAN] (on)
[    1.479385] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[    1.479758] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 11
[    1.479776] forcedeth 0000:00:04.0: setting latency timer to 64
[    1.515307] thermal LNXTHERM:00: registered as thermal_zone0
[    1.515316] ACPI: Thermal Zone [THRM] (45 C)
[    1.575240] Floppy drive(s): fd0 is 1.44M
[    1.582435] usbcore: registered new interface driver usbfs
[    1.582507] usbcore: registered new interface driver hub
[    1.602011] usbcore: registered new device driver usb
[    1.603837] FDC 0 is a post-1991 82077
[    1.614658] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.615550] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.744662] SCSI subsystem initialized
[    1.813515] libata version 3.00 loaded.
[    1.828069] Refined TSC clocksource calibration: 1102.499 MHz.
[    1.828088] Switching to clocksource tsc
[    2.005485] forcedeth 0000:00:04.0: ifname eth0, PHY OUI 0x57d @ 1, addr 00:10:dc:cf:4a:50
[    2.005494] forcedeth 0000:00:04.0: timirq lnktim desc-v1
[    2.005879] ohci_hcd 0000:00:02.0: setting latency timer to 64
[    2.005887] ohci_hcd 0000:00:02.0: OHCI Host Controller
[    2.005965] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 1
[    2.006016] ohci_hcd 0000:00:02.0: irq 11, io mem 0xe0002000
[    2.062239] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    2.062250] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.062257] usb usb1: Product: OHCI Host Controller
[    2.062262] usb usb1: Manufacturer: Linux 3.2.0-4-686-pae ohci_hcd
[    2.062268] usb usb1: SerialNumber: 0000:00:02.0
[    2.062854] hub 1-0:1.0: USB hub found
[    2.062873] hub 1-0:1.0: 3 ports detected
[    2.063074] pata_amd 0000:00:09.0: version 0.4.1
[    2.063230] pata_amd 0000:00:09.0: setting latency timer to 64
[    2.064571] scsi0 : pata_amd
[    2.064948] scsi1 : pata_amd
[    2.066383] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xe000 irq 14
[    2.066391] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xe008 irq 15
[    2.066683] ohci_hcd 0000:00:03.0: setting latency timer to 64
[    2.066692] ohci_hcd 0000:00:03.0: OHCI Host Controller
[    2.066737] ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
[    2.066790] ohci_hcd 0000:00:03.0: irq 5, io mem 0xe0000000
[    2.122101] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.122111] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.122118] usb usb2: Product: OHCI Host Controller
[    2.122123] usb usb2: Manufacturer: Linux 3.2.0-4-686-pae ohci_hcd
[    2.122128] usb usb2: SerialNumber: 0000:00:03.0
[    2.124706] hub 2-0:1.0: USB hub found
[    2.124740] hub 2-0:1.0: 3 ports detected
[    2.236525] ata1.00: ATA-6: WDC WD800BB-56JKC0, 05.01C05, max UDMA/100
[    2.236536] ata1.00: 156301488 sectors, multi 16: LBA 
[    2.237502] ata1.01: ATA-5: WDC WD400BB-00DEA0, 05.03E05, max UDMA/100
[    2.237510] ata1.01: 78165360 sectors, multi 16: LBA 
[    2.237529] ata1: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc6c600c0) ACPI=0x3f01f (20:20:0x15)
[    2.237542] ata1: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc6c600c0) ACPI=0x3f01f (20:20:0x15)
[    2.244467] ata1.00: configured for UDMA/100
[    2.261260] ata1.01: configured for UDMA/100
[    2.261601] scsi 0:0:0:0: Direct-Access     ATA      WDC WD800BB-56JK 05.0 PQ: 0 ANSI: 5
[    2.262548] scsi 0:0:1:0: Direct-Access     ATA      WDC WD400BB-00DE 05.0 PQ: 0 ANSI: 5
[    2.432421] ata2.01: ATAPI: ATAPI-CD ROM-DRIVE-56MAX, VER 56JA, max UDMA/33
[    2.432443] ata2: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc6c600c0) ACPI=0x701f (600:60:0x14)
[    2.436041] usb 1-1: new low-speed USB device number 2 using ohci_hcd
[    2.440347] ata2.01: configured for UDMA/33
[    2.441740] scsi 1:0:1:0: CD-ROM            ATAPI-CD ROM-DRIVE-56MAX  56JA PQ: 0 ANSI: 5
[    2.473947] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    2.474093] sd 0:0:0:0: [sda] Write Protect is off
[    2.474101] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.474163] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.475621] sr0: scsi3-mmc drive: 0x/56x cd/rw xa/form2 cdda tray
[    2.475633] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.476827] sr 1:0:1:0: Attached scsi CD-ROM sr0
[    2.483863] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.484198] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    2.484390] sr 1:0:1:0: Attached scsi generic sg2 type 5
[    2.526119] sd 0:0:1:0: [sdb] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    2.526268] sd 0:0:1:0: [sdb] Write Protect is off
[    2.526276] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    2.526339] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.539771]  sda: sda1 sda2 sda3 < sda5 sda6 >
[    2.562527]  sdb: sdb1 < sdb5 >
[    2.563581] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.563823] sd 0:0:1:0: [sdb] Attached SCSI disk
[    2.649888] usb 1-1: New USB device found, idVendor=045e, idProduct=0040
[    2.649899] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[    2.649906] usb 1-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[    2.649912] usb 1-1: Manufacturer: Microsoft
[    2.677081] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:02.0/usb1/1-1/1-1:1.0/input/input1
[    2.677481] generic-usb 0003:045E:0040.0001: input,hidraw0: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1/input0
[    2.678008] usbcore: registered new interface driver usbhid
[    2.678015] usbhid: USB HID core driver
[    3.527491] PM: Starting manual resume from disk
[    3.527505] PM: Hibernation image partition 8:5 present
[    3.527509] PM: Looking for hibernation image.
[    3.549130] PM: Image not found (code -22)
[    3.549135] PM: Hibernation image not present or could not be loaded.
[    3.686051] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[    3.686685] SGI XFS Quota Management subsystem
[    3.696443] XFS (sda2): Mounting Filesystem
[    3.875014] XFS (sda2): Ending clean mount
[    6.260342] udevd[326]: starting version 175
[    7.295756] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
[    7.295774] ACPI: Power Button [PWRB]
[    7.295980] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    7.295989] ACPI: Power Button [PWRF]
[    7.397706] parport_pc 00:0b: reported by Plug and Play ACPI
[    7.397782] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    7.508352] gameport gameport0: NS558 PnP Gameport is pnp00:0d/gameport0, io 0x200, speed 701kHz
[    7.686011] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    7.866996] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    8.443461] cfg80211: Calling CRDA to update world regulatory domain
[    8.682624] ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 12
[    8.682635] PCI: setting IRQ 12 as level-triggered
[    9.027369] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    9.028808] ieee80211 phy0: hwaddr 0013f782058d, RTL8185vD + rtl8225
[    9.512555] ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 12
[    9.512617] snd-ca0106: Model 100a Rev 00000000 Serial 100a1102
[    9.975813] cfg80211: World regulatory domain updated:
[    9.975827] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    9.975835] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    9.975842] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    9.975849] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    9.975855] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    9.975862] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   11.973909] Adding 3807228k swap on /dev/sda5.  Priority:-1 extents:1 across:3807228k 
[   12.703128] loop: module loaded
[   17.364721] RPC: Registered named UNIX socket transport module.
[   17.364731] RPC: Registered udp transport module.
[   17.364736] RPC: Registered tcp transport module.
[   17.364740] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   17.458113] FS-Cache: Loaded
[   17.550986] FS-Cache: Netfs 'nfs' registered for caching
[   17.581035] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   22.918167] forcedeth 0000:00:04.0: eth0: no link during initialization
[   22.919006] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.280602] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   27.191874] Bluetooth: Core ver 2.16
[   27.191951] NET: Registered protocol family 31
[   27.191957] Bluetooth: HCI device and connection manager initialized
[   27.191966] Bluetooth: HCI socket layer initialized
[   27.191971] Bluetooth: L2CAP socket layer initialized
[   27.193241] Bluetooth: SCO socket layer initialized
[   27.253544] Bluetooth: RFCOMM TTY layer initialized
[   27.253561] Bluetooth: RFCOMM socket layer initialized
[   27.253567] Bluetooth: RFCOMM ver 1.11
[   27.273934] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   27.273943] Bluetooth: BNEP filters: protocol multicast
[   27.674636] lp0: using parport0 (interrupt-driven).
[   27.688981] ppdev: user-space parallel port driver
[   29.916071] wlan0: authenticate with 00:1b:2f:d5:c4:c2 (try 1)
[   29.930906] wlan0: authenticated
[   30.056130] wlan0: associate with 00:1b:2f:d5:c4:c2 (try 1)
[   30.065715] wlan0: RX AssocResp from 00:1b:2f:d5:c4:c2 (capab=0x401 status=0 aid=1)
[   30.065727] wlan0: associated
[   30.067693] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   40.640028] wlan0: no IPv6 routers present
[   58.504470] ACPI: PCI Interrupt Link [LNK3] enabled at IRQ 11
[   58.691840] [drm] Initialized drm 1.1.0 20060810
[   58.816073] [drm] radeon kernel modesetting enabled.
[   58.819725] [drm] initializing kernel modesetting (RV280 0x1002:0x5964 0x148C:0x2073).
[   58.819812] [drm] register mmio base: 0xDF000000
[   58.819817] [drm] register mmio size: 65536
[   58.824391] [drm] Generation 2 PCI interface, using max accessible memory
[   58.824411] radeon 0000:01:02.0: VRAM: 128M 0x00000000C0000000 - 0x00000000C7FFFFFF (128M used)
[   58.824420] radeon 0000:01:02.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   58.828458] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   58.828470] [drm] Driver supports precise vblank timestamp query.
[   58.828509] [drm] radeon: irq initialized.
[   58.828807] [drm] Detected VRAM RAM=128M, BAR=128M
[   58.828817] [drm] RAM width 64bits DDR
[   58.829658] [TTM] Zone  kernel: Available graphics memory: 370726 kiB.
[   58.829664] [TTM] Initializing pool allocator.
[   58.829730] [drm] radeon: 128M of VRAM memory ready
[   58.829737] [drm] radeon: 512M of GTT memory ready.
[   58.829783] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   58.844366] [drm] PCIE GART of 512M enabled (table at 0x000000002B800000).
[   58.844464] radeon 0000:01:02.0: WB disabled
[   58.846020] [drm] Loading R200 Microcode
[   58.893330] platform radeon_cp.0: firmware: agent loaded radeon/R200_cp.bin into memory
[   58.893806] [drm] radeon: ring at 0x00000000A0001000
[   58.893834] [drm] ring test succeeded in 0 usecs
[   58.894087] [drm] radeon: ib pool ready.
[   58.894268] [drm] ib test succeeded in 0 usecs
[   58.894955] [drm] Radeon Display Connectors
[   58.894960] [drm] Connector 0:
[   58.894964] [drm]   VGA
[   58.894971] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[   58.894976] [drm]   Encoders:
[   58.894980] [drm]     CRT1: INTERNAL_DAC1
[   58.894984] [drm] Connector 1:
[   58.894987] [drm]   DVI-I
[   58.894991] [drm]   HPD1
[   58.894996] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[   58.895000] [drm]   Encoders:
[   58.895004] [drm]     CRT2: INTERNAL_DAC2
[   58.895008] [drm]     DFP1: INTERNAL_TMDS1
[   58.895011] [drm] Connector 2:
[   58.895015] [drm]   S-video
[   58.895018] [drm]   Encoders:
[   58.895021] [drm]     TV1: INTERNAL_DAC2
[   59.041889] [drm] fb mappable at 0xC0040000
[   59.041896] [drm] vram apper at 0xC0000000
[   59.041901] [drm] size 4177920
[   59.041904] [drm] fb depth is 24
[   59.041908] [drm]    pitch is 5440
[   59.043619] fbcon: radeondrmfb (fb0) is primary device
[   59.045783] Console: switching to colour frame buffer device 170x48
[   59.045812] fb0: radeondrmfb frame buffer device
[   59.045816] drm: registered panic notifier
[   59.045842] [drm] Initialized radeon 2.12.0 20080528 for 0000:01:02.0 on minor 0
# 

MightyMouse
Posts: 63
Joined: 2007-03-21 19:51

(Continuation from the above post)

#19 Post by MightyMouse »

The new Xorg.0.log is:

Code: Select all

# cat /var/log/Xorg.0.log
[    58.060] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[    58.060] X Protocol Version 11, Revision 0
[    58.060] Build Operating System: Linux 2.6.32-5-amd64 i686 Debian
[    58.060] Current Operating System: Linux damacon 3.2.0-4-686-pae #1 SMP Debian 3.2.35-2 i686
[    58.060] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=bc5b0222-e383-4c09-836b-9fbd44e9f3a6 ro quiet
[    58.061] Build Date: 29 November 2012  08:52:43PM
[    58.061] xorg-server 2:1.12.4-4 (Julien Cristau <jcristau@debian.org>) 
[    58.061] Current version of pixman: 0.26.0
[    58.062] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    58.062] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    58.063] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 12 10:40:39 2013
[    58.101] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    58.114] (==) No Layout section.  Using the first Screen section.
[    58.114] (==) No screen section available. Using defaults.
[    58.114] (**) |-->Screen "Default Screen Section" (0)
[    58.114] (**) |   |-->Monitor "<default monitor>"
[    58.128] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    58.128] (==) Automatically adding devices
[    58.128] (==) Automatically enabling devices
[    58.162] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    58.162] 	Entry deleted from font path.
[    58.201] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[    58.201] 	Entry deleted from font path.
[    58.201] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[    58.201] (==) ModulePath set to "/usr/lib/xorg/modules"
[    58.201] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    58.201] (II) Loader magic: 0xb77485a0
[    58.202] (II) Module ABI versions:
[    58.202] 	X.Org ANSI C Emulation: 0.4
[    58.202] 	X.Org Video Driver: 12.1
[    58.202] 	X.Org XInput driver : 16.0
[    58.202] 	X.Org Server Extension : 6.0
[    58.203] (--) PCI:*(0:1:2:0) 1002:5964:148c:2073 rev 1, Mem @ 0xc0000000/134217728, 0xdf000000/65536, I/O @ 0x0000c800/256, BIOS @ 0x????????/131072
[    58.204] (--) PCI: (0:1:2:1) 1002:5d44:148c:2072 rev 1, Mem @ 0xc8000000/134217728, 0xdf010000/65536
[    58.204] (--) PCI: (0:2:0:0) 10de:01a0:1462:3738 rev 177, Mem @ 0xdc000000/16777216, 0xd0000000/134217728, BIOS @ 0x????????/65536
[    58.208] (II) Open ACPI successful (/var/run/acpid.socket)
[    58.208] (II) LoadModule: "extmod"
[    58.226] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    58.246] (II) Module extmod: vendor="X.Org Foundation"
[    58.246] 	compiled for 1.12.4, module version = 1.0.0
[    58.246] 	Module class: X.Org Server Extension
[    58.246] 	ABI class: X.Org Server Extension, version 6.0
[    58.246] (II) Loading extension SELinux
[    58.246] (II) Loading extension MIT-SCREEN-SAVER
[    58.246] (II) Loading extension XFree86-VidModeExtension
[    58.246] (II) Loading extension XFree86-DGA
[    58.246] (II) Loading extension DPMS
[    58.246] (II) Loading extension XVideo
[    58.246] (II) Loading extension XVideo-MotionCompensation
[    58.246] (II) Loading extension X-Resource
[    58.246] (II) LoadModule: "dbe"
[    58.246] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    58.248] (II) Module dbe: vendor="X.Org Foundation"
[    58.248] 	compiled for 1.12.4, module version = 1.0.0
[    58.248] 	Module class: X.Org Server Extension
[    58.248] 	ABI class: X.Org Server Extension, version 6.0
[    58.248] (II) Loading extension DOUBLE-BUFFER
[    58.248] (II) LoadModule: "glx"
[    58.248] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    58.281] (II) Module glx: vendor="X.Org Foundation"
[    58.281] 	compiled for 1.12.4, module version = 1.0.0
[    58.281] 	ABI class: X.Org Server Extension, version 6.0
[    58.282] (==) AIGLX enabled
[    58.282] (II) Loading extension GLX
[    58.282] (II) LoadModule: "record"
[    58.282] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    58.283] (II) Module record: vendor="X.Org Foundation"
[    58.283] 	compiled for 1.12.4, module version = 1.13.0
[    58.283] 	Module class: X.Org Server Extension
[    58.283] 	ABI class: X.Org Server Extension, version 6.0
[    58.283] (II) Loading extension RECORD
[    58.283] (II) LoadModule: "dri"
[    58.283] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    58.302] (II) Module dri: vendor="X.Org Foundation"
[    58.302] 	compiled for 1.12.4, module version = 1.0.0
[    58.303] 	ABI class: X.Org Server Extension, version 6.0
[    58.303] (II) Loading extension XFree86-DRI
[    58.303] (II) LoadModule: "dri2"
[    58.303] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    58.315] (II) Module dri2: vendor="X.Org Foundation"
[    58.315] 	compiled for 1.12.4, module version = 1.2.0
[    58.315] 	ABI class: X.Org Server Extension, version 6.0
[    58.315] (II) Loading extension DRI2
[    58.315] (==) Matched ati as autoconfigured driver 0
[    58.315] (==) Matched vesa as autoconfigured driver 1
[    58.315] (==) Matched fbdev as autoconfigured driver 2
[    58.315] (==) Assigned the driver to the xf86ConfigLayout
[    58.315] (II) LoadModule: "ati"
[    58.341] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    58.354] (II) Module ati: vendor="X.Org Foundation"
[    58.354] 	compiled for 1.12.1.902, module version = 6.14.4
[    58.354] 	Module class: X.Org Video Driver
[    58.354] 	ABI class: X.Org Video Driver, version 12.0
[    58.354] (II) LoadModule: "radeon"
[    58.354] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    58.409] (II) Module radeon: vendor="X.Org Foundation"
[    58.409] 	compiled for 1.12.1.902, module version = 6.14.4
[    58.409] 	Module class: X.Org Video Driver
[    58.410] 	ABI class: X.Org Video Driver, version 12.0
[    58.416] (II) LoadModule: "vesa"
[    58.425] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    58.440] (II) Module vesa: vendor="X.Org Foundation"
[    58.440] 	compiled for 1.12.1, module version = 2.3.1
[    58.440] 	Module class: X.Org Video Driver
[    58.440] 	ABI class: X.Org Video Driver, version 12.0
[    58.440] (II) LoadModule: "fbdev"
[    58.440] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    58.448] (II) Module fbdev: vendor="X.Org Foundation"
[    58.448] 	compiled for 1.12.1, module version = 0.4.2
[    58.448] 	ABI class: X.Org Video Driver, version 12.0
[    58.448] (II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
	ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
	ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE),
	ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE),
	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
	ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
	ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
	ATI Mobility Radeon HD 4670, ATI FirePro M5750,
	ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI RV670,
	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
	ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
	ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
	ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
	ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
	ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
	ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
	SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
	ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
	AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Mobility Radeon HD 5800 Series,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
	ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
	ATI Mobility Radeon Graphics, CEDAR,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
	ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
	CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
	BARTS, BARTS, Mobility Radeon HD 6000 Series,
	Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
	AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA
[    58.455] (II) VESA: driver for VESA chipsets: vesa
[    58.455] (II) FBDEV: driver for framebuffer: fbdev
[    58.455] (--) using VT number 7

[    58.479] (II) [KMS] drm report modesetting isn't supported.
[    58.479] (WW) Falling back to old probe method for vesa
[    58.479] (WW) Falling back to old probe method for fbdev
[    58.479] (II) Loading sub module "fbdevhw"
[    58.479] (II) LoadModule: "fbdevhw"
[    58.479] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    58.499] (II) Module fbdevhw: vendor="X.Org Foundation"
[    58.499] 	compiled for 1.12.4, module version = 0.0.2
[    58.499] 	ABI class: X.Org Video Driver, version 12.1
[    58.499] (EE) open /dev/fb0: No such file or directory
[    58.499] (II) RADEON(0): TOTO SAYS 00000000df000000
[    58.499] (II) RADEON(0): MMIO registers at 0x00000000df000000: size 64KB
[    58.499] (II) RADEON(0): PCI bus 1 card 2 func 0
[    58.499] (II) RADEON(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    58.499] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[    58.500] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    58.500] (==) RADEON(0): Default visual is TrueColor
[    58.501] (II) Loading sub module "vgahw"
[    58.501] (II) LoadModule: "vgahw"
[    58.501] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[    58.503] (II) Module vgahw: vendor="X.Org Foundation"
[    58.503] 	compiled for 1.12.4, module version = 0.1.0
[    58.503] 	ABI class: X.Org Video Driver, version 12.1
[    58.503] (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0
[    58.503] (==) RADEON(0): RGB weight 888
[    58.503] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[    58.503] (--) RADEON(0): Chipset: "ATI Radeon 9200SE 5964 (AGP)" (ChipID = 0x5964)
[    58.503] (--) RADEON(0): Linear framebuffer at 0x00000000c0000000
[    58.503] (II) RADEON(0): PCI card detected
[    58.504] (II) Loading sub module "int10"
[    58.504] (II) LoadModule: "int10"
[    58.504] (II) Loading /usr/lib/xorg/modules/libint10.so
[    58.510] (II) Module int10: vendor="X.Org Foundation"
[    58.510] 	compiled for 1.12.4, module version = 1.0.0
[    58.510] 	ABI class: X.Org Video Driver, version 12.1
[    58.510] (II) RADEON(0): initializing int10
[    58.517] (II) RADEON(0): Primary V_BIOS segment is: 0xc000
[    58.519] (II) RADEON(0): Legacy BIOS detected
[    58.536] drmOpenDevice: node name is /dev/dri/card0
[    59.047] drmOpenByBusid: Searching for BusID pci:0000:01:02.0
[    59.047] drmOpenDevice: node name is /dev/dri/card0
[    59.047] drmOpenDevice: open result is 9, (OK)
[    59.047] drmOpenByBusid: drmOpenMinor returns 9
[    59.047] drmOpenByBusid: drmGetBusid reports pci:0000:01:02.0
[    59.048] (EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version mismatch.
[dri] This chipset requires a kernel module version of 1.8.0,
[dri] but the kernel reports a version of 2.12.0.[dri] Make sure your module is loaded prior to starting X, and
[dri] that this driver was built with support for KMS.
[dri] Aborting.
[    59.048] (II) UnloadModule: "radeon"
[    59.048] (II) UnloadSubModule: "int10"
[    59.048] (II) Unloading int10
[    59.048] (II) UnloadSubModule: "vgahw"
[    59.048] (II) Unloading vgahw
[    59.048] (EE) Screen(s) found, but none have a usable configuration.
[    59.048] 
Fatal server error:
[    59.048] no screens found
[    59.048] 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[    59.048] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    59.048] 
[    59.197] Server terminated with error (1). Closing log file.
# 

L_V
Posts: 1477
Joined: 2007-03-19 09:04
Been thanked: 11 times

Re: ATI RV280 [Radeon 9200SE] on Wheezy

#20 Post by L_V »

Did you really read here ? Image

Post Reply