Thinkpad T520 - 4239CTO cold vs warm boot menu (Windows 7 Pro)

I have a curious situation. I replaced the hard disk in the above named Thinkpad with and Intel 530 SSD (250 MB). The OS is a fully patched Windows 7 Pro. Just for the record, to ensure full details are revealed: The new disk was, as recommended on the Lenovo site, activated as a GPT disk, the original was MBR. The BIOS option is Legacy boot (MBR) or UEFI (no MBR) or both. If I selected the UEFI only, I could not boot to or install the OS from the recovery disks. If I selected both, with legacy first or UEFI first, the recovery DVD's would boot and the inbstall would proceed without issue. This si where the trouble starts: Upon completion of the install, a number of anomalies appear. Regardless of the legacy/UEFI setting on the BIOS, if I warm boot, the options menu appears (tabbed with boot options and application options). I have no way out of this as another warm boot just returns me to that menu. If I cold boot, the proper boot sequence occurs and Windows loads properly, but only if the BIOS is set to BOTH for Legacy/UEFI. If it is set to either Legacy only or UEFI only on a cold boot, I get the option menu with the boot/applications tabs but the applications tab now includes the BIOS menu. If I cold boot with both Legacy and UEFI enabled, it boots to Windows and disk manager reveals that the disk is GPT but it appears to have an MBR. My conclusion is that the BIOS is confused because the disk is in some sort of amorphous MBR AND GPT state or something. I am concerned about aggressively pursuing one path or another (forcing a GPT disk by removing the MBR, for example) and getting into more trouble. I wonder if the Lenovo factory recovery disks are incapable of installing on a GPT disk and if that is the issue. Any comments or help is appreciated. Thank you

Hi Ran,
Thanks!
I haven't tried it yet.
In the meantime i did more testing and found out that even with only Power Manager version 2.41a installed the latest Intel Pro wireless driver also supported by lenovo is not stabel and FN-F5 or windows network connection also fails to switch the radio back on after a reboot when the radio has been turned off first ;-(
Reading http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-67283
over and over I decide to revert back to the old Intel wireless driver listed on this page.
http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-67256
Reinstalled ThinkVantage Access Connections for Window Vista version 5.12
I tested it again........ IT WORKS!!!
Please try this combination:
BIOS Version: 1.15
Bluetooth with Enhanced Data Rate Software II for Windows Vista Version: 6.2.0.5000
ThinkVantage Active Protection System for Windows Vista 32-bit, XP, 2000 Version: 1.62
ThinkPad Power Management driver for Windows Vista, XP, 2000, Me, 98 SE Version: 1.52
ThinkVantage Productivity Center Pack Version: 3.02
Power Manager for Windows Vista Version: 2.41a
ThinkVantage Access Connections for Windows Vista Version 5.12 !!
Intel Wireless LAN (11abgn, abg, bg) for Windows Vista 11.05.0 API
Regards,
Ritchy
Message Edited by Ritchy on 01-14-2009 11:56 PM

Similar Messages

  • Dual boot Arch / Windows 8 with grub, uefi and gpt

    hi,
    (my aplogies for my bad english)
    after a fresh installation without worries I have one last problem : starting w8
    Partitions :
    [root@ToshCM christian]# gdisk -l /dev/sda
    GPT fdisk (gdisk) version 0.8.7
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/sda: 1465149168 sectors, 698.6 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): BAE3660C-FC6F-11E1-9C45-C6B1BB081CD7
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1465149134
    Partitions will be aligned on 2048-sector boundaries
    Total free space is 3757 sectors (1.8 MiB)
    Number Start (sector) End (sector) Size Code Name
    1 2048 923647 450.0 MiB 2700 Basic data partition
    2 923648 1456127 260.0 MiB EF00 Basic data partition
    3 1456128 1718271 128.0 MiB 0C01 Basic data partition
    4 1718272 1230518271 585.9 GiB 0700 Basic data partition
    5 1445343232 1465147391 9.4 GiB 2700 Basic data partition
    6 1230518272 1250998271 9.8 GiB 8200
    7 1250998272 1291958271 19.5 GiB 8300
    8 1291958272 1445343231 73.1 GiB 8300
    2 = efi (fat32)
    4 = Windows (ntfs)
    6 = swap
    7 = /
    8 = /home
    EFI partition is mounted in /boot/efi
    [root@ToshCM christian]# grep efi /etc/fstab
    UUID=7CD3-EE8E /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    For now I have a grub that works perfectly without Windows
    Now I try to follow this page
    [root@ToshCM christian]# grub-probe --target=fs_uuid /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
    7CD3-EE8E
    [root@ToshCM christian]# grub-probe --target=hints_string /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
    --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2
    I put the result in /etc//grub.d/40_custom
    [root@ToshCM christian]# cat /etc/grub.d/40_custom
    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    menuentry "Microsoft Windows Vista/7/8 x86_64 UEFI-GPT" {
    insmod part_gpt
    insmod fat
    insmod search_fs_uuid
    insmod chain
    search --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 7CD3-EE8E
    chainloader /EFI/Microsoft/Boot/bootmgfw.efi
    I regenerates grub.cfg
    grub-mkconfig -o /boot/grub/grub.cfg
    I check the result in /boot/grub/grub.cfg
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    menuentry "Microsoft Windows Vista/7/8 x86_64 UEFI-GPT" {
    insmod part_gpt
    insmod fat
    insmod search_fs_uuid
    insmod chain
    search --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 7CD3-EE8E
    chainloader /EFI/Microsoft/Boot/bootmgfw.efi
    ### END /etc/grub.d/40_custom ###
    After reboot I can see a fine line with Windows but it has no effect, neither start nor error message
    The computer is a Toshiba Satellite C855-1TM
    In the BIOS Advanced page "Boot Mode" is [UEFI Boot]
    In the Security page "Secure Boot" is [Disabled]
    Thanks in advance

    vintherine wrote:
    the.ridikulus.rat wrote:
    @vintherine: Everything you mentioned in the 1st post is correct. In your case the correct commands should be:
    grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub --recheck
    grub-mkconfig -o /boot/grub/grub.cfg
    Thanks. I've tried that, get now a single line with Windows, which does not work
    EDIT: Are you able to boot Windows independent of GRUB, ie. directly from the firmware boot menu?
    I've tried F12 key, found a menu, started on the HD, found a new menu corresponding with the EFI directories (arch_grub, Microsoft....). Microsoft entry sent me on... grub menu
    EDIT: Can you try (note the extra line : "set gfxpayload=keep")
    It's time for diner (i'm in France). I'll see this in the next hour.
    Many thanks
    Seems like the actual Windows bootmgfw.efi was overwritten by grubx64.efi or something else. In the boot menu Windows's entry (created by Windows installer) is usually titled "Windows Boot Manager".
    EDIT:
    Try this. Copy the files from Windows's C:\Windows\Boot\EFI to <EFISYS>/EFI/Microsoft/Boot/ . Overwrite any exisitng files, and make sure <EFISYS>/EFI/Microsoft/Boot/BCD file exists. That is the Windows equivalent of grub.cfg (although BCD cannot be read easily since it is not a text file). Try your menuentry again.
    Last edited by the.ridikulus.rat (2013-09-27 18:29:09)

  • Lenovo Thinkpad T520 doesn't boot with GPT slices on FreeBSD 9-BETA3 - BIOS bug?

    Hi!
    I've bought a brand new Lenovo Thinkpad T520 laptop and decided to install FreeBSD 9 Beta 3 following this guide.
    But when I rebooted the system, it simply doesn't boot (turns out to the BIOS boot menu).
    It's even doesn't boot with default FreeBSD 9 UFS-on-GPT installation scheme through bsdInstaller
    Changing BIOS (latest, 1.31) settings BIOS Startup->UEFI/Legacy Boot from "Both" to "Legacy only" has no effect. As FreeBSD AFAIK doesn't support UEFI boot, legacy boot should work picking up and starting pmbr (protected MBR record), but it doesn't.
    However, FreeBSD 9 UFS-on-MBR installation (with mbr boot record and FreeBSD slice in MBR partition instead of  GPT) works fine.
    It seems to me that UEFI/Legacy Boot "Legacy" setting actually has no effect if 0xEE type Primary partition entry is present on disk.
    First of all, has anyone installed Linux or FreeBSD with GPT partitioning scheme on latest Thinkpads?
    And the second one, as I've saw similar problem on FreeBSD forum thread about T420s laptop I believe that this may be a bug in the BIOS. How can I fill the bugreport or send an e-mail to support or developers, as, obvious, phone support can consult only about Windows OS.

    Volker1 wrote:
     I've got a suspicion that the Thinkpad bios/efi is not simply executing the first stage bootloader, but looking around on the GPT disk and then crapping its pants when it doesn't find Windows.
    Right now I have a MBR-formatted harddisk in the ultrabay with the bootloader in the MBR. Once I get the bootloader off the MBR disk, I can easily continue to boot from my GPT-formatted SSD.
    Yes, it seems that it's a BIOS bug at least on T520, T420s and W520 laptops. Even in "Legacy" mode first stage bootloader doesn't execute if partition type is 0xEE (GPT).
    Hope Lenovo developers will fix it. They fixed something on BIOS 1.31
    [Problem fixes]
    - Fixed an issue where the computer might not be booted from bootloader program.
     but it doesn't work for now. Pity.

  • ATI Graphics card not detected on cold boot, works on warm boot

    Hi All,
    I hope you can help me out with this.
    I'm using Radeon HD7850 with ATI-Catalyst.
    The issue is, if I do a cold boot (physically turn off the power, turn back on) the system won't boot into X, only tty.
    At this point, a reboot works fine.
    Or if I don't turn off the power, just shutdown and reboot (warm boot), it works ok.
    Here's the Xorg log on cold boot:
    [ 2.226]
    X.Org X Server 1.12.4
    Release Date: 2012-08-27
    [ 2.226] X Protocol Version 11, Revision 0
    [ 2.226] Build Operating System: Linux 3.4.8-1-ARCH x86_64
    [ 2.226] Current Operating System: Linux dmanPC 3.5.3-1-ARCH #1 SMP PREEMPT Sun Aug 26 09:14:51 CEST 2012 x86_64
    [ 2.226] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=3766a71b-dbfe-4cc2-b7bd-948878b5da67 ro nomodeset quiet
    [ 2.226] Build Date: 27 August 2012 08:04:39AM
    [ 2.226]
    [ 2.226] Current version of pixman: 0.26.2
    [ 2.226] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2.226] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2.226] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep 28 05:57:41 2012
    [ 2.227] (==) Using config file: "/etc/X11/xorg.conf"
    [ 2.228] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2.228] (==) ServerLayout "aticonfig Layout"
    [ 2.228] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 2.228] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 2.229] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 2.229] (==) Automatically adding devices
    [ 2.229] (==) Automatically enabling devices
    [ 2.231] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2.231] Entry deleted from font path.
    [ 2.231] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2.231] Entry deleted from font path.
    [ 2.231] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2.231] Entry deleted from font path.
    [ 2.231] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2.232] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2.232] Entry deleted from font path.
    [ 2.232] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2.232] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 2.232] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2.232] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2.232] (II) Loader magic: 0x7c8b00
    [ 2.232] (II) Module ABI versions:
    [ 2.232] X.Org ANSI C Emulation: 0.4
    [ 2.232] X.Org Video Driver: 12.1
    [ 2.232] X.Org XInput driver : 16.0
    [ 2.232] X.Org Server Extension : 6.0
    [ 2.232] (--) PCI:*(0:7:0:0) 1002:6819:1462:2730 rev 0, Mem @ 0xe0000000/268435456, 0xf7b00000/262144, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
    [ 2.232] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2.232] (II) "extmod" will be loaded by default.
    [ 2.232] (II) "dbe" will be loaded by default.
    [ 2.232] (II) "glx" will be loaded by default.
    [ 2.232] (II) "record" will be loaded by default.
    [ 2.232] (II) "dri" will be loaded by default.
    [ 2.232] (II) "dri2" will be loaded by default.
    [ 2.232] (II) LoadModule: "extmod"
    [ 2.233] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 2.233] (II) Module extmod: vendor="X.Org Foundation"
    [ 2.233] compiled for 1.12.4, module version = 1.0.0
    [ 2.233] Module class: X.Org Server Extension
    [ 2.233] ABI class: X.Org Server Extension, version 6.0
    [ 2.233] (II) Loading extension MIT-SCREEN-SAVER
    [ 2.233] (II) Loading extension XFree86-VidModeExtension
    [ 2.233] (II) Loading extension XFree86-DGA
    [ 2.233] (II) Loading extension DPMS
    [ 2.233] (II) Loading extension XVideo
    [ 2.233] (II) Loading extension XVideo-MotionCompensation
    [ 2.233] (II) Loading extension X-Resource
    [ 2.233] (II) LoadModule: "dbe"
    [ 2.233] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 2.234] (II) Module dbe: vendor="X.Org Foundation"
    [ 2.234] compiled for 1.12.4, module version = 1.0.0
    [ 2.234] Module class: X.Org Server Extension
    [ 2.234] ABI class: X.Org Server Extension, version 6.0
    [ 2.234] (II) Loading extension DOUBLE-BUFFER
    [ 2.234] (II) LoadModule: "glx"
    [ 2.234] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2.236] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 2.236] compiled for 6.9.0, module version = 1.0.0
    [ 2.236] (II) Loading extension GLX
    [ 2.236] (II) LoadModule: "record"
    [ 2.236] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 2.237] (II) Module record: vendor="X.Org Foundation"
    [ 2.237] compiled for 1.12.4, module version = 1.13.0
    [ 2.237] Module class: X.Org Server Extension
    [ 2.237] ABI class: X.Org Server Extension, version 6.0
    [ 2.237] (II) Loading extension RECORD
    [ 2.237] (II) LoadModule: "dri"
    [ 2.237] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 2.237] (II) Module dri: vendor="X.Org Foundation"
    [ 2.237] compiled for 1.12.4, module version = 1.0.0
    [ 2.237] ABI class: X.Org Server Extension, version 6.0
    [ 2.237] (II) Loading extension XFree86-DRI
    [ 2.237] (II) LoadModule: "dri2"
    [ 2.238] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 2.238] (II) Module dri2: vendor="X.Org Foundation"
    [ 2.238] compiled for 1.12.4, module version = 1.2.0
    [ 2.238] ABI class: X.Org Server Extension, version 6.0
    [ 2.238] (II) Loading extension DRI2
    [ 2.238] (II) LoadModule: "fglrx"
    [ 2.238] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 2.262] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 2.262] compiled for 1.4.99.906, module version = 8.98.2
    [ 2.262] Module class: X.Org Video Driver
    [ 2.262] (II) Loading sub module "fglrxdrm"
    [ 2.262] (II) LoadModule: "fglrxdrm"
    [ 2.262] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 2.263] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 2.263] compiled for 1.4.99.906, module version = 8.98.2
    [ 2.263] (II) AMD Proprietary Linux Driver Version Identifier:8.98.2
    [ 2.263] (II) AMD Proprietary Linux Driver Release Identifier: 8.982
    [ 2.263] (II) AMD Proprietary Linux Driver Build Date: Jul 27 2012 20:37:56
    [ 2.263] (++) using VT number 8
    [ 2.264] (WW) Falling back to old probe method for fglrx
    [ 2.269] (II) Loading PCS database from /etc/ati/amdpcsdb
    [ 2.271] (WW) fglrx: No matching Device section for instance (BusID ) found
    [ 2.271] (EE) No devices detected.
    [ 2.271]
    Fatal server error:
    [ 2.271] no screens found
    [ 2.271]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 2.271] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 2.271]
    Here's the same log for warm boot:
    [ 2.289] (++) using VT number 8
    [ 2.290] (WW) Falling back to old probe method for fglrx
    [ 2.295] (II) Loading PCS database from /etc/ati/amdpcsdb
    [ 2.296] (--) Chipset Supported AMD Graphics Processor (0x6819) found
    [ 2.296] (WW) fglrx: No matching Device section for instance (BusID PCI:0@6:0:1) found
    [ 2.297] (II) AMD Video driver is running on a device belonging to a group targeted for this release
    [ 2.297] (II) AMD Video driver is signed
    [ 2.297] (II) fglrx(0): pEnt->device->identifier=0x82b7a0
    [ 2.297] (II) fglrx(0): === [xdl_xs112_atiddxPreInit] === begin
    [ 2.297] (II) Loading sub module "vgahw"
    [ 2.297] (II) LoadModule: "vgahw"
    [ 2.298] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 2.298] (II) Module vgahw: vendor="X.Org Foundation"
    [ 2.298] compiled for 1.12.4, module version = 0.1.0
    [ 2.298] ABI class: X.Org Video Driver, version 12.1
    [ 2.298] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 2.298] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 2.298] (==) fglrx(0): Default visual is TrueColor
    [ 2.298] (**) fglrx(0): Option "OpenGLOverlay" "0"
    [ 2.298] (**) fglrx(0): Option "DPMS" "true"
    [ 2.298] (==) fglrx(0): RGB weight 888
    [ 2.298] (II) fglrx(0): Using 8 bits per RGB
    [ 2.298] (==) fglrx(0): Buffer Tiling is ON
    [ 2.299] (II) Loading sub module "fglrxdrm"
    [ 2.299] (II) LoadModule: "fglrxdrm"
    [ 2.299] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 2.299] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 2.299] compiled for 1.4.99.906, module version = 8.98.2
    [ 2.299] ukiDynamicMajor: found major device number 251
    [ 2.299] ukiDynamicMajor: found major device number 251
    [ 2.299] ukiOpenByBusid: Searching for BusID PCI:6:0:0
    [ 2.299] ukiOpenDevice: node name is /dev/ati/card0
    [ 2.299] ukiOpenDevice: open result is 11, (OK)
    [ 2.299] ukiOpenByBusid: ukiOpenMinor returns 11
    [ 2.299] ukiOpenByBusid: ukiGetBusid reports PCI:6:0:0
    [ 2.299] (**) fglrx(0): NoAccel = NO
    [ 2.299] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 2.299] (--) fglrx(0): Chipset: "AMD Radeon HD 7800 Series " (Chipset = 0x6819)
    [ 2.299] (--) fglrx(0): (PciSubVendor = 0x1462, PciSubDevice = 0x2730)
    [ 2.299] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 2.299] (--) fglrx(0): Linear framebuffer (phys) at 0xe0000000
    [ 2.299] (--) fglrx(0): MMIO registers at 0xf7c00000
    [ 2.299] (--) fglrx(0): I/O port at 0x0000c000
    [ 2.299] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 2.300] (II) fglrx(0): AC Adapter is used
    [ 2.303] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    [ 2.303] (II) Loading sub module "vbe"
    [ 2.303] (II) LoadModule: "vbe"
    [ 2.303] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 2.304] (II) Module vbe: vendor="X.Org Foundation"
    [ 2.304] compiled for 1.12.4, module version = 1.1.0
    [ 2.304] ABI class: X.Org Video Driver, version 12.1
    [ 2.304] (II) fglrx(0): VESA BIOS detected
    [ 2.304] (II) fglrx(0): VESA VBE Version 3.0
    [ 2.304] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    [ 2.304] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
    [ 2.304] (II) fglrx(0): VESA VBE OEM Software Rev: 15.17
    [ 2.304] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, Advanced Micro Devices, Inc.
    [ 2.304] (II) fglrx(0): VESA VBE OEM Product: PITCAIRN
    [ 2.304] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    [ 2.309] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
    [ 2.309] (--) fglrx(0): Video RAM: 2097152 kByte, Type: GDDR5
    [ 2.309] (II) fglrx(0): PCIE card detected
    [ 2.309] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 2.309] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 2.311] (II) fglrx(0): Using adapter: 6:0.0.
    [ 2.320] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0x80000000)
    [ 2.458] (II) fglrx(0): Interrupt handler installed at IRQ 48.
    [ 2.458] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 2.458] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 2.458] (==) fglrx(0): Center Mode is disabled
    [ 2.458] (II) Loading sub module "fb"
    [ 2.458] (II) LoadModule: "fb"
    [ 2.458] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2.461] (II) Module fb: vendor="X.Org Foundation"
    [ 2.461] compiled for 1.12.4, module version = 1.0.0
    [ 2.461] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2.461] (II) Loading sub module "ddc"
    [ 2.461] (II) LoadModule: "ddc"
    [ 2.461] (II) Module "ddc" already built-in
    [ 2.571] (II) fglrx(0): Finished Initialize PPLIB!
    [ 2.577] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
    [ 2.577] (II) fglrx(0): Output DFP2 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP3 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP4 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP5 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP6 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP7 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP8 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP9 has no monitor section
    [ 2.577] (II) fglrx(0): Output DFP10 has no monitor section
    [ 2.577] (II) fglrx(0): Output CRT1 has no monitor section
    [ 2.578] (II) Loading sub module "ddc"
    [ 2.578] (II) LoadModule: "ddc"
    [ 2.578] (II) Module "ddc" already built-in
    [ 2.578] (II) fglrx(0): Connected Display0: DFP10
    [ 2.578] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 2.578] (II) fglrx(0): Manufacturer: SAM Model: 524 Serial#: 1280455218
    [ 2.578] (II) fglrx(0): Year: 2009 Week: 20
    [ 2.578] (II) fglrx(0): EDID Version: 1.3
    [ 2.578] (II) fglrx(0): Digital Display Input
    [ 2.578] (II) fglrx(0): Max Image Size [cm]: horiz.: 48 vert.: 27
    [ 2.578] (II) fglrx(0): Gamma: 2.20
    [ 2.578] (II) fglrx(0): DPMS capabilities: Off
    [ 2.578] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 2.578] (II) fglrx(0): First detailed timing is preferred mode
    [ 2.578] (II) fglrx(0): redX: 0.648 redY: 0.339 greenX: 0.143 greenY: 0.070
    [ 2.578] (II) fglrx(0): blueX: 0.282 blueY: 0.603 whiteX: 0.312 whiteY: 0.329
    [ 2.578] (II) fglrx(0): Supported established timings:
    [ 2.578] (II) fglrx(0): 640x480@60Hz
    [ 2.578] (II) fglrx(0): 800x600@56Hz
    [ 2.578] (II) fglrx(0): 800x600@60Hz
    [ 2.578] (II) fglrx(0): 1024x768@60Hz
    [ 2.578] (II) fglrx(0): Manufacturer's mask: 0
    [ 2.578] (II) fglrx(0): Supported standard timings:
    [ 2.578] (II) fglrx(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 2.578] (II) fglrx(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 2.578] (II) fglrx(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2.578] (II) fglrx(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 2.578] (II) fglrx(0): #4: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 2.578] (II) fglrx(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 2.578] (II) fglrx(0): Ranges: V min: 56 V max: 60 Hz, H min: 30 H max: 81 kHz, PixClock max 175 MHz
    [ 2.578] (II) fglrx(0): Monitor name: SyncMaster
    [ 2.578] (II) fglrx(0): Serial No: HMBS500385
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 74.2 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 74.2 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 27.0 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 720 h_sync: 732 h_sync_end 796 h_blank_end 864 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 576 v_sync: 581 v_sync_end 586 v_blanking: 625 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 27.0 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 2.578] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 2.578] (II) fglrx(0): EDID (in hex):
    [ 2.578] (II) fglrx(0): 00ffffffffffff004c2d24053232524c
    [ 2.578] (II) fglrx(0): 1413010380301b782a3851a656241248
    [ 2.578] (II) fglrx(0): 9a50542308008100814081809500a940
    [ 2.578] (II) fglrx(0): b30001010101023a801871382d40582c
    [ 2.578] (II) fglrx(0): 4500dd0c1100001e000000fd00383c1e
    [ 2.578] (II) fglrx(0): 5111000a202020202020000000fc0053
    [ 2.578] (II) fglrx(0): 796e634d61737465720a2020000000ff
    [ 2.578] (II) fglrx(0): 00484d42533530303338350a20200168
    [ 2.578] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 2.578] (II) fglrx(0): EDID for output DFP1
    [ 2.578] (II) fglrx(0): EDID for output DFP2
    [ 2.578] (II) fglrx(0): EDID for output DFP3
    [ 2.578] (II) fglrx(0): EDID for output DFP4
    [ 2.578] (II) fglrx(0): EDID for output DFP5
    [ 2.578] (II) fglrx(0): EDID for output DFP6
    [ 2.578] (II) fglrx(0): EDID for output DFP7
    [ 2.578] (II) fglrx(0): EDID for output DFP8
    [ 2.578] (II) fglrx(0): EDID for output DFP9
    [ 2.578] (II) fglrx(0): EDID for output DFP10
    [ 2.578] (II) fglrx(0): Manufacturer: SAM Model: 524 Serial#: 1280455218
    [ 2.578] (II) fglrx(0): Year: 2009 Week: 20
    [ 2.578] (II) fglrx(0): EDID Version: 1.3
    [ 2.578] (II) fglrx(0): Digital Display Input
    [ 2.578] (II) fglrx(0): Max Image Size [cm]: horiz.: 48 vert.: 27
    [ 2.578] (II) fglrx(0): Gamma: 2.20
    [ 2.578] (II) fglrx(0): DPMS capabilities: Off
    [ 2.578] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 2.578] (II) fglrx(0): First detailed timing is preferred mode
    [ 2.578] (II) fglrx(0): redX: 0.648 redY: 0.339 greenX: 0.143 greenY: 0.070
    [ 2.578] (II) fglrx(0): blueX: 0.282 blueY: 0.603 whiteX: 0.312 whiteY: 0.329
    [ 2.578] (II) fglrx(0): Supported established timings:
    [ 2.578] (II) fglrx(0): 640x480@60Hz
    [ 2.578] (II) fglrx(0): 800x600@56Hz
    [ 2.578] (II) fglrx(0): 800x600@60Hz
    [ 2.578] (II) fglrx(0): 1024x768@60Hz
    [ 2.578] (II) fglrx(0): Manufacturer's mask: 0
    [ 2.578] (II) fglrx(0): Supported standard timings:
    [ 2.578] (II) fglrx(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 2.578] (II) fglrx(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 2.578] (II) fglrx(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2.578] (II) fglrx(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 2.578] (II) fglrx(0): #4: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 2.578] (II) fglrx(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 2.578] (II) fglrx(0): Ranges: V min: 56 V max: 60 Hz, H min: 30 H max: 81 kHz, PixClock max 175 MHz
    [ 2.578] (II) fglrx(0): Monitor name: SyncMaster
    [ 2.578] (II) fglrx(0): Serial No: HMBS500385
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 74.2 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 74.2 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 27.0 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 720 h_sync: 732 h_sync_end 796 h_blank_end 864 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 576 v_sync: 581 v_sync_end 586 v_blanking: 625 v_border: 0
    [ 2.578] (II) fglrx(0): Supported detailed timing:
    [ 2.578] (II) fglrx(0): clock: 27.0 MHz Image Size: 477 x 268 mm
    [ 2.578] (II) fglrx(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 2.578] (II) fglrx(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 2.578] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 2.578] (II) fglrx(0): EDID (in hex):
    [ 2.578] (II) fglrx(0): 00ffffffffffff004c2d24053232524c
    [ 2.578] (II) fglrx(0): 1413010380301b782a3851a656241248
    [ 2.578] (II) fglrx(0): 9a50542308008100814081809500a940
    [ 2.578] (II) fglrx(0): b30001010101023a801871382d40582c
    [ 2.578] (II) fglrx(0): 4500dd0c1100001e000000fd00383c1e
    [ 2.578] (II) fglrx(0): 5111000a202020202020000000fc0053
    [ 2.578] (II) fglrx(0): 796e634d61737465720a2020000000ff
    [ 2.578] (II) fglrx(0): 00484d42533530303338350a20200168
    [ 2.579] (II) fglrx(0): Printing probed modes for output DFP10
    [ 2.579] (II) fglrx(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1920x1080"x50.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1776x1000"x50.0 148.50 1776 2304 2348 2640 1000 1004 1009 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1680x1050"x50.0 148.50 1680 2448 2492 2640 1050 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1400x1050"x60.0 162.00 1400 1664 1856 2160 1050 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1400x1050"x50.0 148.50 1400 2448 2492 2640 1050 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1600x900"x60.0 162.00 1600 1664 1856 2160 900 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1600x900"x50.0 148.50 1600 2448 2492 2640 900 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x1024"x50.0 148.50 1280 2448 2492 2640 1024 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1440x900"x50.0 148.50 1440 2448 2492 2640 900 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1440x900"x60.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x960"x50.0 148.50 1280 2448 2492 2640 960 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x800"x50.0 148.50 1280 2448 2492 2640 800 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x800"x60.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x768"x50.0 148.50 1280 2448 2492 2640 768 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x768"x60.0 83.50 1280 1352 1480 1680 768 803 809 831 -hsync +vsync (49.7 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1024x768"x50.0 148.50 1024 2448 2492 2640 768 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 2.579] (II) fglrx(0): Modeline "1152x648"x50.0 74.25 1152 1592 1632 1980 648 653 658 750 +hsync +vsync (37.5 kHz)
    [ 2.579] (II) fglrx(0): Modeline "800x600"x50.0 148.50 800 2448 2492 2640 600 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 2.579] (II) fglrx(0): Modeline "800x600"x56.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "720x576"x60.0 148.50 720 2008 2052 2200 576 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 2.579] (II) fglrx(0): Modeline "720x576"x50.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "720x480"x50.0 148.50 720 2448 2492 2640 480 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz)
    [ 2.579] (II) fglrx(0): Modeline "640x480"x50.0 148.50 640 2448 2492 2640 480 1084 1089 1125 +hsync +vsync (56.2 kHz)
    [ 2.579] (II) fglrx(0): Modeline "640x480"x60.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 2.579] (II) fglrx(0): EDID for output CRT1
    [ 2.579] (II) fglrx(0): Output DFP1 disconnected
    [ 2.579] (II) fglrx(0): Output DFP2 disconnected
    [ 2.579] (II) fglrx(0): Output DFP3 disconnected
    [ 2.579] (II) fglrx(0): Output DFP4 disconnected
    [ 2.579] (II) fglrx(0): Output DFP5 disconnected
    [ 2.579] (II) fglrx(0): Output DFP6 disconnected
    [ 2.579] (II) fglrx(0): Output DFP7 disconnected
    [ 2.579] (II) fglrx(0): Output DFP8 disconnected
    [ 2.579] (II) fglrx(0): Output DFP9 disconnected
    [ 2.579] (II) fglrx(0): Output DFP10 connected
    [ 2.579] (II) fglrx(0): Output CRT1 disconnected
    [ 2.579] (II) fglrx(0): Using exact sizes for initial modes
    [ 2.579] (II) fglrx(0): Output DFP10 using initial mode 1920x1080
    [ 2.579] (II) fglrx(0): DPI set to (96, 96)
    [ 2.579] (II) fglrx(0): Eyefinity capable adapter detected.
    [ 2.579] (II) fglrx(0): Adapter AMD Radeon HD 7800 Series has 6 configurable heads and 1 displays connected.
    [ 2.579] (==) fglrx(0): PseudoColor visuals disabled
    [ 2.579] (II) Loading sub module "ramdac"
    [ 2.579] (II) LoadModule: "ramdac"
    [ 2.579] (II) Module "ramdac" already built-in
    [ 2.579] (==) fglrx(0): NoDRI = NO
    [ 2.579] (==) fglrx(0): Capabilities: 0x00000000
    [ 2.579] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 2.579] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 2.579] (==) fglrx(0): UseFastTLS=0
    [ 2.579] (II) fglrx(0): Desktop Vsync is enabled.
    [ 2.579] (--) Depth 24 pixmap format is 32 bpp
    [ 2.579] (II) Loading extension ATIFGLRXDRI
    [ 2.579] (II) fglrx(0): doing swlDriScreenInit
    [ 2.579] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 2.579] ukiDynamicMajor: found major device number 251
    [ 2.579] ukiDynamicMajor: found major device number 251
    [ 2.579] ukiDynamicMajor: found major device number 251
    [ 2.579] ukiOpenByBusid: Searching for BusID PCI:6:0:0
    [ 2.579] ukiOpenDevice: node name is /dev/ati/card0
    [ 2.579] ukiOpenDevice: open result is 12, (OK)
    [ 2.579] ukiOpenByBusid: ukiOpenMinor returns 12
    [ 2.579] ukiOpenByBusid: ukiGetBusid reports PCI:6:0:0
    [ 2.579] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 2.579] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:6:0:0"
    [ 2.579] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
    [ 2.579] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0x7f1426d74000
    [ 2.579] (II) fglrx(0): [uki] framebuffer handle = 0x3000
    [ 2.579] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 2.579] (II) fglrx(0): swlDriScreenInit done
    [ 2.579] (II) fglrx(0): Kernel Module Version Information:
    [ 2.579] (II) fglrx(0): Name: fglrx
    [ 2.579] (II) fglrx(0): Version: 8.98.2
    [ 2.579] (II) fglrx(0): Date: Jul 27 2012
    [ 2.579] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
    [ 2.579] (II) fglrx(0): Kernel Module version matches driver.
    [ 2.579] (II) fglrx(0): Kernel Module Build Time Information:
    [ 2.579] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.5.3-1-ARCH
    [ 2.579] (II) fglrx(0): Build-Kernel MODVERSIONS: no
    [ 2.579] (II) fglrx(0): Build-Kernel __SMP__: no
    [ 2.579] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 2.579] (II) fglrx(0): [uki] register handle = 0x00004000
    [ 2.589] (II) fglrx(0): DRI initialization successfull
    [ 2.590] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x010e0000
    [ 2.591] (==) fglrx(0): Backing store disabled
    [ 2.591] (II) Loading extension FGLRXEXTENSION
    [ 2.591] (**) fglrx(0): DPMS enabled
    [ 2.591] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 2.591] (**) fglrx(0): Textured Video is enabled.
    [ 2.591] (II) LoadModule: "glesx"
    [ 2.591] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 2.601] (II) Module glesx: vendor="X.Org Foundation"
    [ 2.601] compiled for 1.4.99.906, module version = 1.0.0
    [ 2.601] (II) Loading extension GLESX
    [ 2.601] (II) fglrx(0): GLESX enableFlags = 592
    [ 2.602] (II) fglrx(0): GLESX is enabled
    [ 2.602] (II) LoadModule: "amdxmm"
    [ 2.602] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 2.603] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 2.603] compiled for 1.4.99.906, module version = 2.0.0
    [ 2.615] (II) Loading extension AMDXVOPL
    [ 2.615] (II) Loading extension AMDXVBA
    [ 2.617] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 2.618] (II) fglrx(0): Enable composite support successfully
    [ 2.618] (WW) fglrx(0): Option "VendorName" is not used
    [ 2.618] (WW) fglrx(0): Option "ModelName" is not used
    [ 2.618] (II) fglrx(0): X context handle = 0x1
    [ 2.618] (II) fglrx(0): [DRI] installation complete
    [ 2.618] (==) fglrx(0): Silken mouse enabled
    [ 2.618] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 2.618] (II) fglrx(0): Disabling in-server RandR and enabling in-driver RandR 1.2.
    [ 2.735] (II) fglrx(0): Framebuffer compression enabled: mcAddr=0xf407a40000 width=0xa00 height=0x3267
    [ 2.735] (--) RandR disabled
    [ 2.735] (II) Initializing built-in extension Generic Event Extension
    [ 2.735] (II) Initializing built-in extension SHAPE
    [ 2.735] (II) Initializing built-in extension MIT-SHM
    [ 2.735] (II) Initializing built-in extension XInputExtension
    [ 2.735] (II) Initializing built-in extension XTEST
    [ 2.735] (II) Initializing built-in extension BIG-REQUESTS
    [ 2.735] (II) Initializing built-in extension SYNC
    [ 2.735] (II) Initializing built-in extension XKEYBOARD
    [ 2.735] (II) Initializing built-in extension XC-MISC
    [ 2.735] (II) Initializing built-in extension SECURITY
    [ 2.735] (II) Initializing built-in extension XINERAMA
    [ 2.735] (II) Initializing built-in extension XFIXES
    [ 2.735] (II) Initializing built-in extension RENDER
    [ 2.735] (II) Initializing built-in extension RANDR
    [ 2.735] (II) Initializing built-in extension COMPOSITE
    [ 2.735] (II) Initializing built-in extension DAMAGE
    [ 2.736] ukiDynamicMajor: found major device number 251
    [ 2.736] ukiDynamicMajor: found major device number 251
    [ 2.736] ukiOpenByBusid: Searching for BusID PCI:6:0:0
    [ 2.736] ukiOpenDevice: node name is /dev/ati/card0
    [ 2.736] ukiOpenDevice: open result is 13, (OK)
    [ 2.736] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 2.736] ukiOpenByBusid: ukiGetBusid reports PCI:6:0:0
    [ 2.842] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 2.857] (II) fglrx(0): Enable the clock gating!
    [ 2.872] (II) fglrx(0): Desktop Vsync is enabled.
    [ 2.872] (II) fglrx(0): Setting screen physical size to 508 x 285
    [ 2.901] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2.901] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2.901] (II) LoadModule: "evdev"
    [ 2.901] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2.902] (II) Module evdev: vendor="X.Org Foundation"
    [ 2.902] compiled for 1.12.3.901, module version = 2.7.3
    [ 2.902] Module class: X.Org XInput Driver
    [ 2.902] ABI class: X.Org XInput driver, version 16.0
    [ 2.902] (II) Using input driver 'evdev' for 'Power Button'
    [ 2.902] (**) Power Button: always reports core events
    [ 2.902] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2.902] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2.902] (--) evdev: Power Button: Found keys
    [ 2.902] (II) evdev: Power Button: Configuring as keyboard
    [ 2.902] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
    [ 2.902] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 2.902] (**) Option "xkb_rules" "evdev"
    [ 2.902] (**) Option "xkb_model" "evdev"
    [ 2.902] (**) Option "xkb_layout" "us"
    [ 2.902] (**) Option "xkb_variant" "dvp"
    [ 2.913] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 2.913] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2.913] (II) Using input driver 'evdev' for 'Power Button'
    [ 2.913] (**) Power Button: always reports core events
    [ 2.913] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 2.913] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2.913] (--) evdev: Power Button: Found keys
    [ 2.913] (II) evdev: Power Button: Configuring as keyboard
    [ 2.913] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
    [ 2.913] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2.913] (**) Option "xkb_rules" "evdev"
    [ 2.913] (**) Option "xkb_model" "evdev"
    [ 2.913] (**) Option "xkb_layout" "us"
    [ 2.913] (**) Option "xkb_variant" "dvp"
    [ 2.913] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event14)
    [ 2.913] (II) No input driver specified, ignoring this device.
    [ 2.913] (II) This device may have been added with another device file.
    [ 2.913] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event15)
    [ 2.913] (II) No input driver specified, ignoring this device.
    [ 2.913] (II) This device may have been added with another device file.
    [ 2.913] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event16)
    [ 2.913] (II) No input driver specified, ignoring this device.
    [ 2.913] (II) This device may have been added with another device file.
    [ 2.913] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event17)
    [ 2.913] (II) No input driver specified, ignoring this device.
    [ 2.913] (II) This device may have been added with another device file.
    [ 2.913] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event18)
    [ 2.913] (II) No input driver specified, ignoring this device.
    [ 2.913] (II) This device may have been added with another device file.
    [ 2.913] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event19)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event10)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event11)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event4)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event5)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event6)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event7)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event8)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
    [ 2.914] (II) No input driver specified, ignoring this device.
    [ 2.914] (II) This device may have been added with another device file.
    [ 2.914] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event12)
    [ 2.914] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 2.914] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 2.914] (**) Logitech USB Receiver: always reports core events
    [ 2.914] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event12"
    [ 2.914] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc52f
    [ 2.914] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [ 2.914] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 2.914] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 2.914] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 2.914] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 2.914] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 2.914] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 2.914] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2.914] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.7/4-1.7:1.0/input/input12/event12"
    [ 2.914] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 8)
    [ 2.914] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 2.915] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 2.915] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 2.915] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 2.915] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 2.915] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 2.915] (II) No input driver specified, ignoring this device.
    [ 2.915] (II) This device may have been added with another device file.
    [ 2.915] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event13)
    [ 2.915] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 2.915] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 2.915] (**) Logitech USB Receiver: always reports core events
    [ 2.915] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event13"
    [ 2.915] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc52f
    [ 2.915] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [ 2.915] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 2.915] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 2.915] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [ 2.915] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 2.915] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 2.915] (--) evdev: Logitech USB Receiver: Found keys
    [ 2.915] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 2.915] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 2.915] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 2.915] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 2.915] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2.915] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.7/4-1.7:1.1/input/input13/event13"
    [ 2.915] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 9)
    [ 2.915] (**) Option "xkb_rules" "evdev"
    [ 2.915] (**) Option "xkb_model" "evdev"
    [ 2.915] (**) Option "xkb_layout" "us"
    [ 2.915] (**) Option "xkb_variant" "dvp"
    [ 2.915] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 2.915] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 2.915] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 2.915] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 2.915] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 2.915] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 2.915] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2.915] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2.915] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2.915] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2.915] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2.915] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2.915] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2.915] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2.915] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2.915] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
    [ 2.915] (**) Option "xkb_rules" "evdev"
    [ 2.915] (**) Option "xkb_model" "evdev"
    [ 2.915] (**) Option "xkb_layout" "us"
    [ 2.915] (**) Option "xkb_variant" "dvp"
    [ 2.915] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 2.915] (II) No input driver specified, ignoring this device.
    [ 2.915] (II) This device may have been added with another device file.
    [ 2.917] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 7.513] (II) fglrx(0): EDID vendor "SAM", prod id 1316
    [ 7.513] (II) fglrx(0): Using EDID range info for horizontal sync
    [ 7.513] (II) fglrx(0): Using EDID range info for vertical refresh
    [ 7.513] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 7.513] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 7.513] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 7.513] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 10.738] (II) fglrx(0): EDID vendor "SAM", prod id 1316
    [ 10.738] (II) fglrx(0): Using hsync ranges from config file
    [ 10.738] (II) fglrx(0): Using vrefresh ranges from config file
    [ 10.738] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 10.738] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 10.738] (II) fglrx(0): Modeline "1920x1080"x0.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 10.738] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    Here's the Xorg.conf:
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:6:0:0"
    Option "OpenGLOverlay" "0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Setting the PCI BusID in Xorg.conf seems to have no effect, even if I set it to 6:0:0 or 7:0:0, its still the same.
    Do I need to set AutoAddDevices off?

    MisterAnderson wrote:Does the same happen with the opensource radeon drivers? (xf86-video-ati)
    Thanks for the reply!
    The open source driver doesn't support my card yet. I tried installing it first since its the recommended driver, but Xorg couldn't detect any display at all.
    It seems the PCI BusID is not being read from the xorg.conf file. There's auto detection everytime the PC boots.
    Last edited by hdhiman (2012-10-04 00:43:52)

  • Thinkpad t520 dual boot win 7 and arch + optimus issue

    --today I got my first laptop and first thinkpad..... thinkpad t520 with the following specifications:-
    intel i5 2520M - HD+ AG display (1600*900) - 4 gigs of ram - nvidia optimus -Hard disk 500Gigs 7200rpm - windows 7  and some other windows applications unfortunately a friend bought it for me so he bought it with alot of applications
    --the problem is that I've been using arch linux for a year now, and I love it, no experience with laptops, and I intend to keep windows because I purchased for it and I want dual boot with arch so what is the right disk partitioning to install linux and keep windows untouched............ in my old desktop it was only arch and it was like that:
    128 mb ext2 boot
    2048 swap
    50000 mb / ext4   and the rest of the disk for home folder, now with dual boot what is the right partitoning?
    the second question Does bumblebee work fine with archlinux?
    how to access bios?
    Is there any thread to help to install arch on thinkpad t520 in details ?
    Do I leave the battery always installed or what?
    Last edited by big mac (2012-02-04 13:46:40)

    the Arch partition should take some space from the windows7_os partition. You should keep the Lenovo_Recovery partition if you don't have a Windows installation DVD, or if you think you may want to reset your hard drive to its original state someday. In my laptop I have completely removed it.
    I have a dual boot of Archlinux/Windows7, and I use the following partitioning
    /dev/sda1   ntfs   60.0GiB   /media/C (for windows os)
    /dev/sda2 (extended partition)
          /dev/sda3   swap   4.0GiB swap
          /dev/sda4   ext4    30.0GiB root
          /dev/sda5   ext4    30.0GiB home
    /dev/sda6   ntfs   376GiB   /media/D
    I use the last partition as a shared partition between Arch and Windows, for storing music and videos... I use it also for installing games, so that I  can play them either from windows or from Arch by using wine.
    I'm not saying this is the best way to do it, but this has been working for me, also I don't use a separate /boot partition, I used to have it when I had multiple Linux distros, but with Arch alone I don't find it necessary.

  • "No Sound" on Cold Boots with X-Fi (warm boots or mode changes fix

    I recently built a system with the following specs and the computer is ?Cold Booting? with ?no sound? in Entertainment Mode or ?Noise? for sound if the X-Fi is cold booted from Game Mode. A warm boot or Mode change usually fixes it but the problem comes back upon cold booting. The computer Specs are: Windows XP Pro. (SP2)AMD X2 4800+ASUS A8N5X nForce4 Motherboard (latest BIOS)Corsair TWINX2048-3500LLeVGA 7900GTX (latest Drivers)OCZ 600W GameXstream PSSound Blaster X-Fi Platinum (latest Drivers, etc.)
    I have no IRQ Conflicts and the onboard sound is ?disabled?. The problem seemed to appear after a week or so working with the system. Everything else is perfect on the system and it'ss very frustrating to have this issue. I am not convinced that the sound card is bad, I think it'ss a Creative driver/software issue. Does anyone else have this problem and or is there a fix ?
    !!! PLEASE HELP !!!

    EXACTLY THE SAME PROBLEM HERE!
    I havent got another motherboard to test my x-fi xtreme music on, but it's a very frustrating problem, if i boot up from cold the soundcard is either not recognised or is recognised but there's no sound output.
    My motherboard is ASUS P5E3 Pro,
    Memory: 8GB OCZ DDR3 600
    Cpu: x9650 extreme @ stock 3.0GHz
    Psu: Coolermaster 850w modular
    Gfx: HD 5770 (will be changing this to a HD4890 soon as it's rubbish)
    Ive tried all sorts of combinations to try and get this soundcard working properly, stick of ram, etc... NOTHING WORKS AND IM ANNOYED!
    Ive played about with just about every bios setting i can find (theres a lot on this board) and still no luck, i've got the latest bios flashed and everything is upto date, as a musician this problem is very irritating, having to reboot the computer about 3 times to get the sound working! even then theres problems with sound drop-outs.
    Makes no difference if i use windowsXP or windows7 the problem still remains, i might ask asus to make a bios update for this problem because im not sure if creative have the answers.

  • Z97 Gaming 5 :: Warm restart settings/boot menu problems

    If I perform a warm restart (Restart via OS) and attempt to enter the UEFI/BIOS settings menu OR access the boot menu, the system locks up and I need to forcible power off. This is repeatable 100% of the time.
    If, I shutdown fully, power off and power on, I am able to enter the UEFI/BIOS settings menu OR access the boot menu without any problems 100% of the time.
    Latest BIOS.
    Regards,
    A

      -> >>Posting Guide<<

  • Cold boot but won't warm boot

    I have a system with a 648 Max MSI-6585 Mainboard.
    It works fine once its running
    BUT
    it won't warm boot.
    If I try to reboot or sometimes even power it up normally
    I just get an initial beep and not the final POST beep
    The D-Bracket lights say it is at the floppy seek stage.
    To boot it I can:
    (a) Turn the power off at the wall
    (b) disconnect the ATX power from the mainboard
    (c) clear the CMOS
    (a) usually works, (b) generally works if (a) doesn't and if neither of them helps (c) always works.
    If I write ANYTHING to CMOS (ie change BIOS settings or even if Windows sets the clock) then I HAVE to clear the CMOS.
    This problem developed BEFORE I flashed the BIOS but I ave now flashed it (twice) to v 1.5.  No problems with the flashing, and I'm experienced at flashing bios's.
    Any ideas?
    Stats:
    Using a P4 2.4 GHz CPU
    With 512 Megs PC3200 DDR RAM
    Hercules ATI All-in-Wonder Radeon 7500
    Hercules Firewire DV card.
    120 Gig 7200 rpm ATA 100 WD HDD with 8 meb cache
    Pioneer Slot-in DVD
    Aopen 52x CD-RW
    Realtek Ethernet Card.

    Since the last post I tried the system with different PSU's, different ram and different video - different everything in effect.  Eventually I gave up and took the motherboard back for replacement.  The new board is HT ready but I have HT disabled as the CPU is not HT capable.
    The new motherboard worked at first then started doing the same thing.
    I notice that when the cmos is cleared it detects the CPU as a 1.8 and not a 2.4 GHz.  I have had some success in getting the system to reboot by changing some memory settings.  Even though I am using PC3200 DDR RAM it seems to boot more often if I set the RAM at 333 MHz instead.
    I have also set the performance timing to safe and altered the CAS setting and another  timing (MT I think?)
    The system rebooted with these a few times but has since reverted to lights on, no action mode, with the D Bracket lights stuck at 'floppy initialisation'or sometimes 'memory'.
    I am at my wits end with this problem.

  • Yoga 3 Pro - Accessing BIOS, boot menu and System Recovery

    The following tutorial will explain the following topics
    How to access the BIOS Setup
    Choosing a boot menu
    Start a system recovery
    It is not the idea to explain every single option of the above, since many of them are complex and it would be too extensive for such a tutorial like this. 
    To execute any of the tasks above you need to press the button marked with the red arrow in the picture below:
    Press the button when the Y3P is off! Use a small pointing device, I use the tablet pen of one of my Thinkpad tablets
    Once you press the button you will be presented with the following screen:
    Use the cursor keys to move up and down, press Enter to choose an option.
    1) BIOS Setup
    The BIOS is where you can get technical information about your device, as well to change boot parameters and setting up security passwords. Be very careful when changing certain values, since it can affect the way the Y3P works and/or affect performance and security settings.
    Information Screen
    It gives the hardware details of the Y3P, like CPU, installed RAM, SSD capacity and so on. This is a display only screen, no settings can be changed here:
    Configuration Screen
    Time and date can be changed in this screen. Furthermore to deactivate the Wireless LAN and enable the Intel Virtual Technology. If you plan to use Virtual Machine software in your Y3P this setting must be enabled
    Passwords can be set up in this section. Secure Boot settings can be changed here.
    Primarily designed to protect users from rootkits and other malware attacks by blocking unauthorized executables and drivers from being loaded during the boot process, it must be deactivated if you plan to install Linux or having paralel operating systems
    Boot Screen
    Boot modes can be selected in this screen, you can disable booting from a USB stick or from a network for example
    2) Boot Menu
    This option is useful if you have Linux installed (using managers like LILO, GRUB, etc).
    If you only use Win8 or higher there 's no much you can change.
    3) System Recovery
    This option will allow you to restore the system to either its factory setup, or to a previous backup done within Windows
    A factory set up will leave the Y3P as it was shipped from Lenovo your private data and installed apps and/or programs will be wiped out. So make sure you have an external backup before such a reset

    OK article. Doesn't answer my questions.

  • Windows 7 32bit - will not load on warm boot.

    I have the same problem on two PCs. They are both HP Workstations xw4600. I have the latest BIOS (786F3 1.22 A) and have tried with the older BIOS as well before upgrading. They will not start Windows 7 with a warm boot (restart). They just repeatedly restart over and over again. I have to turn off the computer and cold start in order to log into Windows, which after doing so Windows works just fine.
    UPDATE:
    I solved this issue by fixing the startup with the Windows 7 disk (took a couple of tries)) now it works normally.

    This issue can be caused by corrupted cookies or cookies that are blocked.
    *check the permissions on the about:permissions page and in "Tools > Page Info > Permissions"
    *https://support.mozilla.org/kb/fix-login-issues-on-websites-require-passwords
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • How to get to boot menu with W530?

    If I switch on the W530, it boots to windows in about 5s.  I have tried hitting the F12 and think vangage buttons as fast and as frequently as I can on switching on, but nothing seems to work.   I want to boot of the drive in the ulta-bay, but dont know how.  With the old W520, it was very easy. 
    Has something radical changed?  E.g. was the 520 using Bios, and the 530 not using bios but using something else (I see UEFI mentioned, but have no idea how to us it).
    So the question is, on a W530, which may or may not be using UEFI (how do you tell?), how do I temporarily change the boot order?
    I also tried hitting F1 on boot, does nothing also.  This is a factory lenovo, with nothing installed, with no devices atttached.
    Thanks!

    Just went through my own W530 BIOS settings, with Win7 installed (as it was origially pre-installed by Lenovo when I bought it).
    Thinkpad Setup:
    (1) Security -password
    (a) Supervisor password - DISABLED
    (b) lock UEFI BIOS setting - DISABLED
    (2) Security - UEFI BIOS update option
    (a) flash BIOS updating by end-users - ENABLED
    (3) Startup
    (a) UEFI/legacy boot - BOTH, UEFI/legacy priority - LEGACY FIRST
    (b) option key display - ENABLED
    (c) boot device list F12 option - ENABLED
    (d) boot order lock - DISABLED
    These settings produce the "To interrupt normal startup, press Enter" message following the Thinkpad logo at boot time.
    According to Lenovo's instructions for problem-solving when attempting to apply BIOS updates, BIOS Initialization is suggested for some problems. To initialize the BIOS settings for Window 8:
    (1) turn on the computer to start Windows
    (2) hold down the Windows logo key and press C to open the Charm bar on the screen
    (3) Select Settings, then Power, from the menu
    (4) Select Reboot, to restart the computer 

  • TPT2 will not load Windows 8, stuck on boot menu

    Hello all,
    It's my first post on this forum, and I'm having issues with a Thinkpad Tablet 2.  I can power on the device but then it goes to the boot menu, which is empty.  From here I don't know what else to do, as I cannot find any way to access Windows 8.  I took it to a shop here in Toronto and they said that the boot menu being empty means that it isn't detecting any of the hardware that is connected to it and that it is most likely a hardware issue.  They told me to go to Lenovo for assistance, but I wanted to check here first to see if you folks have got any advice for me.  I've attached photographs of the empty boot menu anfd main screen of the Thinkpad setup, not sure if there is any relevant information in there.  What should be my next step?  Thanks in advance.

    Hi there !!! I have exactly the same problem with my Thinkpad Tablet 2 (64MB). The only difference is that in my BIOS option UEFI safe boot is OFF. I tried to use recovery tool, Lenovo Diagnostic tool and even WindowsPE, but tablet simply cannot see any USB or any other devices. in startup/boot section is ONLY ONE POSITION: ! 1. Windows Boot Manager and I cannot boot from USB... I will be very grateful for any kind of suggestion (well, perhaps except suggestion to throw it out through a window). With kind regards Marco Polo

  • X61 Windows setup [ems aktiviert] - how to deactivate in boot menu?

    I have a x61 thinkpad with Vista. Recently I installed Win 7 via a bootable USB stick. For this I had to set the boot menu so that the computer starts from the USB stick. After installing Win 7 I reset the Boot order to default.
    Now everytime I start my computer a boot selection appears:
    1. Win 7 Professional
    2. Windows Setup (EMS aktiviert)
    This is very annoying as I dont want to enter the windows setup. How can I deactivate this selection so that the computer directly starts Win 7 without entering the boot menu?
    Thanks for any help!

    Thanx for the rapid response. I had tried that prior to posting and it didn't help. I went to System preferences>Desktop & Screen saver and there is was sitting in Desktop, the image of Windows boot manager screen. No clue as to how it got there ut changing the desktop image cleared it from my screen.
    Thanks again for trying to help.

  • New Lenovo E540 stuck on Boot Menu?

    My new Lenovo arrived today and I can't even start it. 
    I press the power button and it goes straight to Boot Menu and App Menu. 
    I don't want to mess around with the settings because I don't know much about computers. 
    How do I get to Windows?
    Please help!!

    Hi Ktkt2289,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing the issue with not Booting to Windows on your ThinkPad E540.
    Please check if the system is shipped with pre-loaded Windows OS.
    Keep tapping F2 key after switching ON the system this will take you to BIOS option and there go to Boot option and check if you are able to see HDD there.
    Check and confirm if there is any Windows COA sticker at the bottom of the laptop.
    Please provide the system MTM (Machine Type Model) number which will be at the back of the system written on the white sticker.
    Hope to hear back soon!
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Thinkpad Yoga - disable f12 beep on boot

    Hi,
    I would like to know if it is possible to fully disable system beeps on the Thinkpad Yoga. In particular I'm interested in disabling the loud beep that you hear by pressing the f12 key on start up (in order to open the boot menu).
    Thank you

    Hi
    As far as I know you cannot disable this in the BIOS.
    But the F12 boot menu option belongs to the BIOS and maybe you could secure this setting using the supervisor or user password.
    Please check the Toshiba preinstalled Toshiba Assist and there go to tab Secure.
    There you will find the tools for user or supervisor password.
    Greets

Maybe you are looking for