[SOLVED] Intel Fortran Compiler v11.1.072 installation failed

hi everyone!
i have some problems with the intel fortran installation. i try to install both ia32 and intel64 version, but without success. i launch from the shell the file "install.sh" and i follow the instructions on the screen, it says that i have missing optional pre-requisites, but also in other linux distribution such as ubuntu or debian, i always skip missing optional pre-requisites and go on. so i do that, but in the step no. 6 when the installation begins, there are a lot of errors:
Installing Intel(R) Fortran Compiler for applications running on IA-32
component...
Intel(R) Fortran Compiler for applications running on IA-32 component
installation failed.
Installing Intel(R) Math Kernel Library for applications running on IA-32
component...
Intel(R) Math Kernel Library for applications running on IA-32 component
installation failed.
what happens?
thanks all for your replies, i'm here for other infos if you want.
Last edited by zeruel85 (2010-06-28 07:56:26)

ok, i solved the problem, but with another ifort version. first of all, install these required packages:
sudo pacman -S glibc libstdc++5
then download from aur the package "intel-compilers-common 11.0.074-2" and extract it. now:
cd /PATH/intel-compilers-common
makepkg
sudo pacman -U intel-compilers-common-11.0.074-2-x86_64.pkg.tar.xz
always from aur, download "ifort" and extract it. before compiling it, copy the file "l_cprof_p_11.0.074_intel64.tgz" from the "intel-compilers-common" folder into the "ifort" folder. now we must have the license file. we can get it from the official intel site:
https://registrationcenter.intel.com/Re … NCOM&lang=
just insert your email, select your country and click "Continue". we'll receive an email with the license key attached. now copy the file into the "ifort" folder. open a shell and do this:
cd /PATH/ifort
md5sum LICENSE.lic
where "LICENSE.lic" is the name of your license key. after that, we have to modify the "PKGBUILD" file, always into the "ifort" folder. in line 19, write the correct license file name. in line 24 write the correct md5sum result. save and exit. now we can compile:
cd /PATH/ifort
makepkg
sudo pacman -U ifort-11.0.074-2-x86_64.pkg.tar.xz
now we have ifort installed! just logout/login to complete the installation! then type:
ifort -help
to verify if ifort was correctly installed. if the ifort guide appears, well done!

Similar Messages

  • Intel Fortran compiler - ifortbin: No such file or.. [solved]

    Dear all!
    I am running arch64 with updated packages (I updated this morning). I am trying to install the intel fortran compiler. I took the "ifort" PKGBUILD file from AUR and I edited it to use the "em64t" packages instead of the "i386" packages. The package building and the installation went fine, but when I launch ifort, I get the following error:
    /opt/intel/fc/9.1.036/bin/ifort: line 42: /opt/intel/fc/9.1.036/bin/ifortbin: No such file or directory
    /opt/intel/fc/9.1.036/bin/ifort: line 42: /opt/intel/fc/9.1.036/bin/ifortbin: Success
    Instead, I should get a message saying that I gave no input files (I had the compiler working on Suse, that's how I know).
    Does anyone know why this is happening?
    Thanks for your help
              Valerio
    Last edited by valmar (2007-04-03 16:41:08)

    Thank to all those who looked at the thread. It seems that even if you install a 64 bit version on a 64 bit machine, you still have to have the following packages installed:
    lib32-glibc lib32-gcc.
    Which means that the 64 bit compiler is actually designed to run in a mixed system, and not a pure 64 bit system... very bizarre
             Valerio

  • Intel Fortran compiler broken under Mavericks

    After upgrading to OS 9 on a Mac Pro and a MacBook Pro, and installing Xcode 5.0.1 on both, my Intel Fortran compiler (vs 12.0.5) no longer works.  I have updated the command line tools.  When I try compiling a source file it fails with the message:
    ifort: error #10001: could not find directory in which g++ resides
    There is a compiler option to specify the location of g++ "-gxx-name=" but this doesn't help - same error message.  I'm not sure if I need to set a system variable or if I need to go back to an earlier version of Xcode.  Has anyone managed to get their Intel Fortran compiler working under Mavericks?

    I haven't found this topic in the other Categories, so I'll reply here:
    I'm having the same problem!!! Leopard has crashed ifort 32 bits! So I can't run my programs on my macbook core duo (32 bits), although it's ok with the ifort 64 bits version. But I really REALLY need the 32 version working on Leopard. Anyone has any clue about how to solve it? I've tried some 9.1 ifort's versions and the new 10.1 version. You can find evaluation versions on the intel's site.
    Please someone help us.
    Thanks,
    Filipe

  • Leopard broke Intel Fortran Compiler, both ver9 and 10

    Intel Fortran Compiler for Mac OS X Ver 9.1 and 10.0 is broken under Leopard. It can compile code, but the created executable segfaults with messages like these.
    forrtl: severe (174): SIGSEGV, segmentation fault occurred
    Image PC Routine Line Source
    read.out 0005B601 Unknown Unknown Unknown
    read.out 0005AAA3 Unknown Unknown Unknown
    read.out 00031A4A Unknown Unknown Unknown
    read.out 0000F664 Unknown Unknown Unknown
    read.out 00015FDE Unknown Unknown Unknown
    libSystem.B.dylib 94BF997B Unknown Unknown Unknown
    The program can be as easy as:
    parameter(ilon=144,ilat=73,igrid=ilon*ilat)
    parameter(iday=365)
    real*4 :: data(igrid), ave(igrid)
    open(10,file='u.bin',form='unformatted',access='direct',recl=igrid*4)
    open(11,file='u-daily.bin',form='unformatted',access='direct',recl=igrid*4)
    do it = 1, 365
    write(6,*) it
    read(10,rec=it) data
    ave = ave + data
    end do
    ave = ave / 365
    write(11,rec=1) ave
    stop
    end
    The program crashes at line 9 or 11 where vectorization comes into place.
    I went to the Intel homepage, and they acknowledge this as a problem but they are only willing to update IFC ver10 and leave the users of ver9 in the cold.
    Does anyone have a solution to this?
    (At least I will leave this message up so that hopefully someone at Apple will notice.)

    I haven't found this topic in the other Categories, so I'll reply here:
    I'm having the same problem!!! Leopard has crashed ifort 32 bits! So I can't run my programs on my macbook core duo (32 bits), although it's ok with the ifort 64 bits version. But I really REALLY need the 32 version working on Leopard. Anyone has any clue about how to solve it? I've tried some 9.1 ifort's versions and the new 10.1 version. You can find evaluation versions on the intel's site.
    Please someone help us.
    Thanks,
    Filipe

  • Installation of Intel C++ Compiler

    I've been trying to get the Intel C++ compiler (icc) running on my new machine, but have run into nothing but problems.
    When following the Intel install script I receive the following errors:
    Missing optional pre-requisite
    -- cannot determine operating system type
    -- system glibc or kernel version not supported or not detectable
    -- binutils version not supported or not detectable
    Despite being listed as optional, the installation fails immediately after this. My kernel is up to date (2.6.33) as is glibc (2.11.1) and both detectable, so I assumed this was simply Arch not being among the official supported distributions.
    Any help getting around whatever this problem is would be appreciated.
    note: I tried installing the version on AUR via yaourt but run into trouble, specifically:
    ==> directory with a database of unpacked files. This is useless.
    ==> You might want to delete this folder:
    ==> /home/radio/intel
    ==> Removing '/tmp/yaourt-tmp-radio/aur-icc/icc/pkg' from all files containing it
    grep: /tmp/yaourt-tmp-radio/aur-icc/icc/pkg/opt/intel/Compiler/11.1/069/*: No such file or directory
    sed: no input files
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build icc package.
    Last edited by radioactivist (2010-05-29 12:58:37)

    I have tried that as well. The same error occurs. I looked into modifying te installation script myself but couldn't manage to fix anything.
    Last edited by radioactivist (2010-05-29 12:59:29)

  • Mistery around Intel Fortran/C compilers and my Macbook

    Hi all,
    First post here. I do not want to write a long post here but I really need some enlightenment about a strange problem.
    My Macbook came with Tiger and Xcode 2.4. Being a Fortran programmer, I installed Intel compilers without much hassle. Then Leopard arrived but I decided to not upgrade until receiving the green light from Intel (for months their compilers were broken for first-time Leopard users). A few months back most of issues seemed to be gone (I successfully installed the new compilers on 3 Mac Pros and 1 Intel iMac) and I was able to upgrade my Macbook to Leopard and the new compilers.
    Here starts the drama : last week I had to upgrade my hard drive so I backup everything and did a clean Leopard install on a new and bigger HD (Hitachi 200Gb 7200rpm). Everything went fine except the fortran/C compilers. The error message I get is unique (try Google) :
    ifort: error fatalerrorterminated: Fatal error in /opt/intel/fc/10.1.014/bin/ifortia32, terminated by segmentation violation
    (I got similar message if I setup 64 bit compiler)
    I can not compile anything. Even a simple hello.f. I even update to 10.5.4 but nothing changed. In fact, it was so frustrating that I decided to do another clean install of Tiger. Yes, I downgraded Mac OSX to 10.4, downloaded the old Fortran compiler (the one I had) and guess what ? I got the SAME message.
    I triple checked my shell environment, looked over all libraries but nothing seems wrong. The ONLY thing that caught my attention was during the installation, when I selected to format the new disk using HFS+ journaled (non case sensitive). I do not believe that my old original drive had a case sensitive system but I did not checked it.
    If you can help, it would be very much appreciated !

    Here is the crash log file I am getting :
    Process: ifortia32 [441]
    Path: /opt/intel/fc/10.1.007/bin/ifortia32
    Identifier: ifortia32
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: ifortbin [440]
    Date/Time: 2008-07-14 10:04:53.262 -0500
    OS Version: Mac OS X 10.5 (9A581)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000002820659e
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ifortia32 0x0006ccf4 lmaster_listlfp + 297
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x28206572 ebx: 0x00068cfe ecx: 0x282065a2 edx: 0x00000002
    edi: 0x0080eed3 esi: 0x00000000 ebp: 0xbfffbfd8 esp: 0xbfffaf80
    ss: 0x0000001f efl: 0x00010202 eip: 0x0006ccf4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x2820659e
    Binary Images:
    0x1000 - 0x1ddfe2 +ifortia32 ??? (???) /opt/intel/fc/10.1.007/bin/ifortia32
    0x266000 - 0x266ffd libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90011ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90655000 - 0x9067ffef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x906da000 - 0x906e1fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x92edd000 - 0x92edefef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94211000 - 0x94349ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x948f6000 - 0x9497ffff com.apple.framework.IOKit 1.5.0 (???) <5d9b85c55183f9732eb9efc38d18ba53> /System/Library/Frameworks/IOKit.framework/Versi
    ons/A/IOKit
    0x94e11000 - 0x94ef0fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x95559000 - 0x956b3fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x95f4b000 - 0x95fa8ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x966c2000 - 0x967f4fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework
    /Versions/A/CoreFoundation
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Kernel26-icc compiled with Intel's compiler instead of gcc

    I'm working on kernel26-icc, it's the kernel26 but compiled with Intel's compiler. Can't seem to upload it to AUR ("Invalid name: only lowercase letters are allowed.")
    http://www.linuxdna.com/
    So far I've this:
    PKGBUILD
    # Maintainer: Mathias Burén <[email protected]>
    pkgname=('kernel26-icc' 'kernel26-icc-firmware' 'kernel26-icc-headers') # Build icc kernel
    _kernelname=${pkgname#kernel26-icc}
    _basekernel=2.6.33
    pkgver=${_basekernel}
    pkgrel=1
    arch=(x86_64)
    license=('GPL2')
    url="http://www.linuxdna.com/"
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
    # the main kernel config files
    config.x86_64
    # standard config files for mkinitcpio ramdisk
    kernel26-icc.preset
    http://www.linuxdna.com/dna-2.6.33-intel64.patch)
    makedepends=('icc')
    md5sums=('c3883760b18d50e8d78819c54d579b00'
    '5c91374d56f115ba4324978d5b002711'
    'a4fd3c59751194bc118c70d1348436ab'
    'a307beb562eb7e68a6f3e2fb5fc216a3')
    build() {
    cd ${srcdir}/linux-$_basekernel
    cat ../config.x86_64 >./.config
    patch -p1 < ../dna-2.6.33-intel64.patch || return 1
    if [ "${_kernelname}" != "" ]; then
    sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
    fi
    # get kernel version
    make prepare
    # load configuration
    # Configure the kernel. Replace the line below with one of your choice.
    make menuconfig # CLI menu for configuration
    #make xconfig # X-based configuration
    #make oldconfig # using old config from previous kernel version
    # ... or manually edit .config
    # stop here
    # this is useful to configure the kernel
    #msg "Stopping build"
    #return 1
    yes "" | make config
    # build!
    make bzImage modules || return 1
    package_kernel26-icc() {
    pkgdesc="The Linux Kernel and modules built with ICC"
    backup=(etc/mkinitcpio.d/${pkgname}.preset)
    depends=('coreutils' 'kernel26-icc-firmware>=2.6.33' 'module-init-tools' 'mkinitcpio>=0.5.20')
    install=kernel26-icc.install
    optdepends=('crda: to set the correct wireless channels of your country')
    KARCH=x86
    cd ${srcdir}/linux-$_basekernel
    # get kernel version
    _kernver="$(make kernelrelease)"
    mkdir -p ${pkgdir}/{lib/modules,boot}
    make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
    cp System.map ${pkgdir}/boot/System.map26${_kernelname}
    cp arch/$KARCH/boot/bzImage ${pkgdir}/boot/vmlinuz26${_kernelname}
    # # add vmlinux
    install -m644 -D vmlinux ${pkgdir}/usr/src/linux-${_kernver}/vmlinux
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -m644 -D ${srcdir}/kernel26.preset ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset || return 1
    # set correct depmod command for install
    sed \
    -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
    -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
    -i $startdir/kernel26.install
    sed \
    -e "s|source .*|source /etc/mkinitcpio.d/kernel26${_kernelname}.kver|g" \
    -e "s|default_image=.*|default_image=\"/boot/${pkgname}.img\"|g" \
    -e "s|fallback_image=.*|fallback_image=\"/boot/${pkgname}-fallback.img\"|g" \
    -i ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset
    echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${pkgdir}/etc/mkinitcpio.d/${pkgname}.kver
    # remove build and source links
    rm -f ${pkgdir}/lib/modules/${_kernver}/{source,build}
    # remove the firmware
    rm -rf ${pkgdir}/lib/firmware
    package_kernel26-icc-headers() {
    pkgdesc="Header files and scripts for building modules for kernel26-icc"
    mkdir -p ${pkgdir}/lib/modules/${_kernver}
    cd ${pkgdir}/lib/modules/${_kernver}
    ln -sf ../../../usr/src/linux-${_kernver} build
    cd ${srcdir}/linux-$_basekernel
    install -D -m644 Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Makefile
    install -D -m644 kernel/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile
    install -D -m644 .config \
    ${pkgdir}/usr/src/linux-${_kernver}/.config
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound trace video; do
    cp -a include/$i ${pkgdir}/usr/src/linux-${_kernver}/include/
    done
    # copy arch includes for external modules
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/x86
    cp -a arch/x86/include ${pkgdir}/usr/src/linux-${_kernver}/arch/x86/
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers ${pkgdir}/usr/src/linux-${_kernver}
    cp -a scripts ${pkgdir}/usr/src/linux-${_kernver}
    # fix permissions on scripts dir
    chmod og-w -R ${pkgdir}/usr/src/linux-${_kernver}/scripts
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel
    cp arch/$KARCH/Makefile ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    if [ "$CARCH" = "i686" ]; then
    cp arch/$KARCH/Makefile_32.cpu ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    fi
    cp arch/$KARCH/kernel/asm-offsets.s ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
    # add headers for lirc package
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video
    cp drivers/media/video/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102 usbvideo zc0301; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    cp -a drivers/media/video/$i/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    done
    # add docbook makefile
    install -D -m644 Documentation/DocBook/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile
    # add dm headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    cp drivers/md/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    # add inotify.h
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/linux
    cp include/linux/inotify.h ${pkgdir}/usr/src/linux-${_kernver}/include/linux/
    # add wireless headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    cp net/mac80211/*.h ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core
    cp drivers/media/dvb/dvb-core/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/11194
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    cp include/config/dvb/*.h ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
    # in reference to:
    # http://bugs.archlinux.org/task/13146
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/dvb/frontends/lgdt330x.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/video/msp3400-driver.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    # add xfs and shmem for aufs building
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/mm
    cp fs/xfs/xfs_sb.h ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h
    # add headers vor virtualbox
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/drm $pkgdir/usr/src/linux-${_kernver}/include/
    # add headers for broadcom wl
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/trace $pkgdir/usr/src/linux-${_kernver}/include/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
    cp $i ${pkgdir}/usr/src/linux-${_kernver}/$i
    done
    cd ${pkgdir}/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
    # add header for aufs2-util
    cp -a ${srcdir}/linux-$_basekernel/include/asm-generic/bitsperlong.h ${pkgdir}/usr/src/linux-${_kernver}/include/asm/
    chown -R root.root ${pkgdir}/usr/src/linux-${_kernver}
    find ${pkgdir}/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
    # remove unneeded architectures
    rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    package_kernel26-icc-firmware() {
    pkgdesc="The included firmware files of kernel26-icc"
    cd ${srcdir}/linux-$_basekernel
    make firmware || return 1
    make INSTALL_MOD_PATH=${pkgdir} firmware_install || return 1
    kernel26-icc.preset
    # mkinitcpio preset file for kernel26-icc
    # DO NOT EDIT THIS LINE:
    source /etc/mkinitcpio.d/kernel26-icc.kver
    ALL_config="/etc/mkinitcpio.conf"
    PRESETS=('default' 'fallback')
    #default_config="/etc/mkinitcpio.conf"
    default_image="/boot/kernel26-icc.img"
    #default_options=""
    #fallback_config="/etc/mkinitcpio.conf"
    fallback_image="/boot/kernel26-icc-fallback.img"
    fallback_options="-S autodetect"
    kernel26-icc.install
    # arg 1: the new package version
    # arg 2: the old package version
    KERNEL_NAME=-icc
    KERNEL_VERSION=2.6.33-icc
    post_install () {
    # updating module dependencies
    echo ">>> Updating module dependencies. Please wait ..."
    depmod $KERNEL_VERSION
    # generate init ramdisks
    echo ">>> MKINITCPIO SETUP"
    echo ">>> ----------------"
    echo ">>> If you use LVM2, Encrypted root or software RAID,"
    echo ">>> Ensure you enable support in /etc/mkinitcpio.conf ."
    echo ">>> More information about mkinitcpio setup can be found here:"
    echo ">>> http://wiki.archlinux.org/index.php/Mkinitcpio"
    echo ""
    echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
    /sbin/mkinitcpio -p kernel26${KERNEL_NAME}
    post_upgrade() {
    pacman -Q grub &>/dev/null
    hasgrub=$?
    pacman -Q grub2 &>/dev/null
    hasgrub2=$?
    pacman -Q lilo &>/dev/null
    haslilo=$?
    # reminder notices
    if [ $haslilo -eq 0 ]; then
    echo ">>>"
    if [ $hasgrub -eq 0 -o $hasgrub2 -eq 0 ]; then
    echo ">>> If you use the LILO bootloader, you should run 'lilo' before rebooting."
    else
    echo ">>> You appear to be using the LILO bootloader. You should run"
    echo ">>> 'lilo' before rebooting."
    fi
    echo ">>>"
    fi
    if grep "^[^#]*/boot" /etc/fstab 2>&1 >/dev/null; then
    if ! grep "/boot" /etc/mtab 2>&1 >/dev/null; then
    echo "WARNING: /boot appears to be a seperate partition but is not mounted"
    echo " This is most likely not what you want. Please mount your /boot"
    echo " partition and reinstall the kernel unless you are sure this is OK"
    fi
    fi
    if [ "`vercmp $2 2.6.13`" -lt 0 ]; then
    # important upgrade notice
    echo ">>>"
    echo ">>> IMPORTANT KERNEL UPGRADE NOTICE"
    echo ">>> -------------------------------"
    echo ">>> As of kernel 2.6.13, DevFS is NO LONGER AVAILABLE!"
    echo ">>> If you still use DevFS, please make the transition to uDev before"
    echo ">>> rebooting. If you really need to stay with DevFS for some reason,"
    echo ">>> then you can manually downgrade to an older version:"
    echo ">>>"
    echo ">>> # pacman -U http://archlinux.org/~judd/kernel/kernel26-scsi-2.6.12.2-1.pkg.tar.gz"
    echo ">>>"
    echo ">>> If you choose to downgrade, don't forget to add kernel26-scsi to your"
    echo ">>> IgnorePkg list in /etc/pacman.conf"
    echo ">>>"
    echo ">>> (NOTE: The following portion applies to uDev users as well!)"
    echo ">>>"
    echo ">>> If you use any DevFS paths in your GRUB menu.lst, then you will not"
    echo ">>> be able to boot! Change your root= parameter to use the classic"
    echo ">>> naming scheme."
    echo ">>>"
    echo ">>> EXAMPLES:"
    echo ">>> - change root=/dev/discs/disc0/part3 to root=/dev/sda3"
    echo ">>> - change root=/dev/md/0 to root=/dev/md0"
    echo ">>>"
    fi
    # generate new init ramdisk
    if [ "`vercmp $2 2.6.18`" -lt 0 ]; then
    echo ">>> --------------------------------------------------------------"
    echo ">>> | WARNING: |"
    echo ">>> |mkinitrd is not supported anymore in kernel >=2.6.18 series!|"
    echo ">>> | Please change to Mkinitcpio setup. |"
    echo ">>> --------------------------------------------------------------"
    echo ">>>"
    fi
    # updating module dependencies
    echo ">>> Updating module dependencies. Please wait ..."
    depmod $KERNEL_VERSION
    echo ">>> MKINITCPIO SETUP"
    echo ">>> ----------------"
    if [ "`vercmp $2 2.6.18`" -lt 0 ]; then
    echo ">>> Please change your bootloader config files:"
    echo ">>> Grub: /boot/grub/menu.lst | Lilo: /etc/lilo.conf"
    echo "------------------------------------------------"
    echo "| - initrd26.img to kernel26${KERNEL_NAME}.img |"
    echo "| - initrd26-full.img to kernel26${KERNEL_NAME}-fallback.img |"
    echo "------------------------------------------------"
    fi
    if [ "`vercmp $2 2.6.19`" -lt 0 ]; then
    echo ""
    echo ">>> New PATA/IDE subsystem - EXPERIMENTAL"
    echo ">>> ----------"
    echo ">>> To use the new pata drivers, change the 'ide' hook "
    echo ">>> to 'pata' in /etc/mkinicpio.conf HOOKS="
    echo ">>> The new system changes: /dev/hd? to /dev/sd?"
    echo ">>> Don't forget to modify GRUB, LILO and fstab to the"
    echo ">>> new naming system. "
    echo ">>> eg: hda3 --> sda3, hdc8 --> sdc8"
    echo ""
    echo ">>> piix/ata_piix (Intel chipsets) - IMPORTANT"
    echo "----------"
    echo ">>> If you have enabled ide/pata/sata HOOKs in /etc/mkinitcpio.conf"
    echo ">>> the 'ata_piix' module will be used."
    echo ">>> This may cause your devices to shift names, eg:"
    echo ">>> - IDE: devices from hd? to sd?"
    echo ">>> - SATA: sda might shift to sdc if you have 2 other disks on a PIIX IDE port."
    echo ">>> To check if this will affect you, check 'mkinitcpio -M' for piix/ata_piix"
    echo ""
    fi
    echo ">>> If you use LVM2, Encrypted root or software RAID,"
    echo ">>> Ensure you enable support in /etc/mkinitcpio.conf ."
    echo ">>> More information about mkinitcpio setup can be found here:"
    echo ">>> http://wiki.archlinux.org/index.php/Mkinitcpio"
    echo ""
    echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
    if [ "`vercmp $2 2.6.19`" -lt 0 ]; then
    /sbin/mkinitcpio -p kernel26${KERNEL_NAME} -m "ATTENTION:\nIf you get a kernel panic below
    and are using an Intel chipset, append 'earlymodules=piix' to the
    kernel commandline"
    else
    /sbin/mkinitcpio -p kernel26${KERNEL_NAME}
    fi
    if [ "`vercmp $2 2.6.21`" -lt 0 ]; then
    echo ""
    echo "Important ACPI Information:"
    echo ">>> Since 2.6.20.7 all possible ACPI parts are modularized."
    echo ">>> The modules are located at:"
    echo ">>> /lib/modules/$(uname -r)/kernel/drivers/acpi"
    echo ">>> For more information about ACPI modules check this wiki page:"
    echo ">>> 'http://wiki.archlinux.org/index.php/ACPI_modules'"
    fi
    post_remove() {
    rm -f /boot/kernel26${KERNEL_NAME}.img
    rm -f /boot/kernel26${KERNEL_NAME}-fallback.img
    Then there's of course the config, it's based on kernel26 at the moment,.
    I'm building it now, to test. I had to install icc manually because the AUR package for icc didn't work for me. I had to install icc manually (run the installer), but that wasn't enough. Before makepkg, you have to add the icc to $PATH e.g.
    PATH=$PATH:/opt/intel/Compiler/11.1/064/bin/intel64
    and execute iccvars_intel64.sh which is in that folder.
    Last edited by Fackamato (2010-02-25 23:43:38)

    Ashren wrote:So there is a significant performance gain with ICC? Compilation time wise or?
    icc kernel compiles in similar time as gcc kernel, or if there any differences these may be negligible. To be honest I was not really interested in compiling times (was doing somethig else as it takes ~12 min on my system to finish kernel compilation), but rather with overall kernel performance. This is not the same as OS performance, but I am planning to compile firefox with icc and maybe some other stuff (if I am bored enough).
    If you have 32-bit OS (I have no idea how it will work on 64-bit), try it. I can't post PKGBUILD for 32-bit icc kernel because I don't use PKGBUILD for kernels or nvidia as I have found it limiting/cumbersome/unnecessary (while PKGBUILDs work great for anything else on Arch).
    The only part really annoying is intel server speed. Downloading icc sources (710MB for 32-bit only) tahes two hours. If you try to get 32/64bit sources even longer (1GB download).
    32-bit icc PKGBUILD package requires only one modification related to Release Notes otherwise makepkg will fail. Once installed export icc path, edit kernel Makefile and change one line related to compiler: change gcc to icc. You can also add some compiling optimizations.
    Pretty easy if you did compile kernel before.
    note added:
    actually combination of icc and zen seems to have nice effect on desktop responsiveness (this is 2.6.33)
    Last edited by broch (2010-02-26 19:54:57)

  • Bug report for SS10U1 fortran compiler

    I am getting an internal error when compiling a larger fortran source file:
    f90: Internal Error, code=fw-assert-einln-835, last src=mbd.f:14
    If I first split the file and then compile the separate routines, the compiler survives:
    fsplit mbd.f
    f95 -c addblk.f fperio.f getblk.f mbbwi.f mgmbwi.f puta2blk.f putblk.f
    I'll be happy to provide a tar-ball to a Sun engineer.
    f90 -V
    Intel(R) Fortran Compiler for 32-bit applications, Version 8.1 Build 20050309Z Package ID: l_fc_pc_8.1.025
    Copyright (C) 1985-2005 Intel Corporation. All rights reserved.
    FOR NON-COMMERCIAL USE ONLY
    GNU ld version 2.15.90.0.1.1 20040303 (SuSE Linux)
    Supported emulations:
    elf_i386
    i386linux
    elf_x86_64
    best regards
    Dieter

    uups.
    sorry for printing the intel compiler version I am running.
    I veryfied that the problem persists
    This is the release of the Sun compiler causing the problem:
    /opt/sun/sunstudio10u1/bin/f90 -V
    f90: Sun Fortran 95 8.3 __version_f9x_patch_linux Build2_0 2005/08/01

  • G95 - Fortran Compiler (Based of g77)

    Hey everyone,
    I'm working on a Macbook Pro Retina of mid 2014 running OS X 10.10 Yosemite.
    Recently I tried installing the g95 fortran compiler, derived from the older g77.  I simply moved the binary file to the right folder and performed a make install. Command line instructions seemed to work fine, but when I tried to run my compiled code it gave me the following error:
    dyld: no valid entry point
    Trace/BPT trap: 5
    I figured I was missing certain gcc-libs, so I dug into my usr/local/lib folder and copied all the gcc-lib files I didn't already have (that came with the tarball for installing g95) there. However, it still doesn't work.
    When I use otool on my binary file I get this:
    g95:
      /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.0.1)
    I know there should be another path specified there, but I have no idea as to what I could do to solve my problem. (I'm new to unix systems and the file system is challenging to say the least ;-))
    PS: When I googled the error, it seemed to be a common problem with g77 that could only be solved by downgrading to an earlier version of OS X because of something named "Rosetta" that was no longer included. However, since g95 is "new" unlike g77, I think this rather an error caused by my inaptitude than an actual problem with my system.

    Eventually, we will, Xiangyun.
    It�s not simple to just switch it overnight. As a global enterprise, it�s a long and weary process in our shop to switch compilers, since we have to build, evaluate, compare outputs between old and new compilers, benchmark them, before we can put them into production, globally.
    Not to mention that I always have problems with code-related, system-libraries related, undefined symbols, linking errors, etc. and etc. when switching compilers.
    Therefore, if we can keep the reliable and proven compilers in the work, then we would keep it. So, if you could provide a patch to our current version; we�d keep it a year or so longer, then that would be a great great help, while we'll be working on pushing the new compilers out.
    Thanks,
    lhn

  • [SOLVED] intel 855GM, Xorg 1.6.1 and black screen

    Just installed Arch on my desktop and have the following problem:
    I have generated x.conf.new using X -configure and that resulted in two Device sections for
    cards - "0:2:0" and "0:2:1" Bus ID. With this configuration X refused to load with message
    "Can not set Bus ID", buy either removing section with "0:2:1" completely or by just removing
    "Bus ID" parameter I was able to start X, but it presents only black screen and hangs.
    I have seen several issues like mine on this boards but neither has a solution to fix my problem:
    1) I tried to switch to xf86-video-intel-legacy - same behavior
    2) Tried to use i810 driver instead of intel - "no devices found"
    3) Tried to start X without config file (only using hal) - just hangs badly, black screen and non responsive
    4) Tried disabling autoconfiguration - black screen
    5) Tried disabling DRI - black screen
    6) Tried switching to XAA - black screen
    7) Tried "ForceEnablePipeA "true" - black screen
    8) Tried ignoring one of the monitors using "monitor-VGA", "monitor-LVDS" in device section - black screen
    Anything else I can try? Video Adapter is Intel 82852/855GM at 00:02.0
    Xorg log file with "ModeDebug" true
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux darkzone-mobile 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 29 14:25:30 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 9 20:32:36 2009
    (++) Using config file: "xorg.conf.new"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Internal LCD"
    (**) | |-->Device "Card0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/134217728, 0xfeb00000/524288, I/O @ 0x0000dc00/8
    (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/134217728, 0xfea80000/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.6.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile IntelВ® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "AccelMethod" "XAA"
    (**) intel(0): Option "DRI" "False"
    (**) intel(0): Option "ModeDebug" "True"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GM
    (--) intel(0): Chipset: "852GM/855GM"
    (--) intel(0): Linear framebuffer at 0xF0000000
    (--) intel(0): IO registers at addr 0xFEB00000
    (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
    (**) intel(0): Using XAA for acceleration
    (II) intel(0): Hardware state on X startup:
    (II) intel(0): DumpRegsBegin
    (II) intel(0): CHDECMISC: 0x00000000 (none, ch2 enh disabled, ch1 enh disabled, ch0 enh disabled, flex disabled, ep not present)
    (II) intel(0): C0DRB0: 0x00000000 (0x0000)
    (II) intel(0): C0DRB1: 0x00000000 (0x0000)
    (II) intel(0): C0DRB2: 0x00000000 (0x0000)
    (II) intel(0): C0DRB3: 0x00000000 (0x0000)
    (II) intel(0): C1DRB0: 0x00000000 (0x0000)
    (II) intel(0): C1DRB1: 0x00000000 (0x0000)
    (II) intel(0): C1DRB2: 0x00000000 (0x0000)
    (II) intel(0): C1DRB3: 0x00000000 (0x0000)
    (II) intel(0): C0DRA01: 0x00000000 (0x0000)
    (II) intel(0): C0DRA23: 0x00000000 (0x0000)
    (II) intel(0): C1DRA01: 0x00000000 (0x0000)
    (II) intel(0): C1DRA23: 0x00000000 (0x0000)
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406 (n = 3, m1 = 20, m2 = 6)
    (II) intel(0): VCLK_POST_DIV: 0x0000888b (vga0 p1 = 13, p2 = 4, vga1 p1 = 10, p2 = 4)
    (II) intel(0): DPLL_TEST: 0x00000000 (, DPLLA input buffer disabled, DPLLB input buffer disabled)
    (II) intel(0): CACHE_MODE_0: 0x00000000
    (II) intel(0): D_STATE: 0x0000030f
    (II) intel(0): DSPCLK_GATE_D: 0x00000000 (clock gates disabled:)
    (II) intel(0): RENCLK_GATE_D1: 0x00000000
    (II) intel(0): RENCLK_GATE_D2: 0x00000000
    (II) intel(0): SDVOB: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOC: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOUDI: 0x00000000
    (II) intel(0): DSPARB: 0x00015455
    (II) intel(0): DSPFW1: 0x00000000
    (II) intel(0): DSPFW2: 0x00000000
    (II) intel(0): DSPFW3: 0x00000000
    (II) intel(0): ADPA: 0x00001c18 (disabled, pipe A, +hsync, +vsync)
    (II) intel(0): LVDS: 0xc0000300 (enabled, pipe B, 18 bit, 1 channel)
    (II) intel(0): DVOA: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOB: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOC: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOA_SRCDIM: 0x00000000
    (II) intel(0): DVOB_SRCDIM: 0x00000000
    (II) intel(0): DVOC_SRCDIM: 0x00000000
    (II) intel(0): PP_CONTROL: 0x00000001 (power target: on)
    (II) intel(0): PP_STATUS: 0xc0000008 (on, ready, sequencing idle)
    (II) intel(0): PP_ON_DELAYS: 0x019007d0
    (II) intel(0): PP_OFF_DELAYS: 0x01f407d0
    (II) intel(0): PP_DIVISOR: 0x00270f04
    (II) intel(0): PFIT_CONTROL: 0x80000668
    (II) intel(0): PFIT_PGM_RATIOS: 0x00000000
    (II) intel(0): PORT_HOTPLUG_EN: 0x00000000
    (II) intel(0): PORT_HOTPLUG_STAT: 0x00000000
    (II) intel(0): DSPACNTR: 0x00000000 (disabled, pipe A)
    (II) intel(0): DSPASTRIDE: 0x00000000 (0 bytes)
    (II) intel(0): DSPAPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPASIZE: 0x00000000 (1, 1)
    (II) intel(0): DSPABASE: 0x00000000
    (II) intel(0): DSPASURF: 0x00000000
    (II) intel(0): DSPATILEOFF: 0x00000000
    (II) intel(0): PIPEACONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEASRC: 0x027f01df (640, 480)
    (II) intel(0): PIPEASTAT: 0x80000207 (status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS)
    (II) intel(0): FPA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): FPA1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_A: 0x808b0000 (enabled, non-dvo, VGA, default clock, DAC/serial mode, p1 = 13, p2 = 4)
    (II) intel(0): DPLL_A_MD: 0x00000000
    (II) intel(0): HTOTAL_A: 0x031f027f (640 active, 800 total)
    (II) intel(0): HBLANK_A: 0x03170287 (648 start, 792 end)
    (II) intel(0): HSYNC_A: 0x02ef028f (656 start, 752 end)
    (II) intel(0): VTOTAL_A: 0x020c01df (480 active, 525 total)
    (II) intel(0): VBLANK_A: 0x020401e7 (488 start, 517 end)
    (II) intel(0): VSYNC_A: 0x01eb01e9 (490 start, 492 end)
    (II) intel(0): BCLRPAT_A: 0x00000000
    (II) intel(0): VSYNCSHIFT_A: 0x00000000
    (II) intel(0): DSPBCNTR: 0x49000000 (disabled, pipe B)
    (II) intel(0): DSPBSTRIDE: 0x00000280 (640 bytes)
    (II) intel(0): DSPBPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPBSIZE: 0x01df027f (640, 480)
    (II) intel(0): DSPBBASE: 0x00000000
    (II) intel(0): DSPBSURF: 0x00000000
    (II) intel(0): DSPBTILEOFF: 0x00000000
    (II) intel(0): PIPEBCONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEBSRC: 0x027f018f (640, 400)
    (II) intel(0): PIPEBSTAT: 0x80000202 (status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS)
    (II) intel(0): FPB0: 0x00021406 (n = 2, m1 = 20, m2 = 6)
    (II) intel(0): FPB1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_B: 0x90020000 (enabled, non-dvo, default clock, LVDS mode, p1 = 2, p2 = 14)
    (II) intel(0): DPLL_B_MD: 0x00000000
    (II) intel(0): HTOTAL_B: 0x053f03ff (1024 active, 1344 total)
    (II) intel(0): HBLANK_B: 0x053f03ff (1024 start, 1344 end)
    (II) intel(0): HSYNC_B: 0x048c0407 (1032 start, 1165 end)
    (II) intel(0): VTOTAL_B: 0x02700257 (600 active, 625 total)
    (II) intel(0): VBLANK_B: 0x02700257 (600 start, 625 end)
    (II) intel(0): VSYNC_B: 0x0260025a (603 start, 609 end)
    (II) intel(0): BCLRPAT_B: 0x00000000
    (II) intel(0): VSYNCSHIFT_B: 0x00000000
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406
    (II) intel(0): VCLK_POST_DIV: 0x0000888b
    (II) intel(0): VGACNTRL: 0x2204008e (enabled)
    (II) intel(0): TV_CTL: 0x00000000
    (II) intel(0): TV_DAC: 0x00000000
    (II) intel(0): TV_CSC_Y: 0x00000000
    (II) intel(0): TV_CSC_Y2: 0x00000000
    (II) intel(0): TV_CSC_U: 0x00000000
    (II) intel(0): TV_CSC_U2: 0x00000000
    (II) intel(0): TV_CSC_V: 0x00000000
    (II) intel(0): TV_CSC_V2: 0x00000000
    (II) intel(0): TV_CLR_KNOBS: 0x00000000
    (II) intel(0): TV_CLR_LEVEL: 0x00000000
    (II) intel(0): TV_H_CTL_1: 0x00000000
    (II) intel(0): TV_H_CTL_2: 0x00000000
    (II) intel(0): TV_H_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_1: 0x00000000
    (II) intel(0): TV_V_CTL_2: 0x00000000
    (II) intel(0): TV_V_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_4: 0x00000000
    (II) intel(0): TV_V_CTL_5: 0x00000000
    (II) intel(0): TV_V_CTL_6: 0x00000000
    (II) intel(0): TV_V_CTL_7: 0x00000000
    (II) intel(0): TV_SC_CTL_1: 0x00000000
    (II) intel(0): TV_SC_CTL_2: 0x00000000
    (II) intel(0): TV_SC_CTL_3: 0x00000000
    (II) intel(0): TV_WIN_POS: 0x00000000
    (II) intel(0): TV_WIN_SIZE: 0x00000000
    (II) intel(0): TV_FILTER_CTL_1: 0x00000000
    (II) intel(0): TV_FILTER_CTL_2: 0x00000000
    (II) intel(0): TV_FILTER_CTL_3: 0x00000000
    (II) intel(0): TV_CC_CONTROL: 0x00000000
    (II) intel(0): TV_CC_DATA: 0x00000000
    (II) intel(0): TV_H_LUMA_0: 0x00000000
    (II) intel(0): TV_H_LUMA_59: 0x00000000
    (II) intel(0): TV_H_CHROMA_0: 0x00000000
    (II) intel(0): TV_H_CHROMA_59: 0x00000000
    (II) intel(0): FBC_CFB_BASE: 0x00000000
    (II) intel(0): FBC_LL_BASE: 0x00000000
    (II) intel(0): FBC_CONTROL: 0x00000000
    (II) intel(0): FBC_COMMAND: 0x00000000
    (II) intel(0): FBC_STATUS: 0x20000000
    (II) intel(0): FBC_CONTROL2: 0x00000000
    (II) intel(0): FBC_FENCE_OFF: 0x00000000
    (II) intel(0): FBC_MOD_NUM: 0x00000000
    (II) intel(0): MI_MODE: 0x00000000
    (II) intel(0): MI_ARB_STATE: 0x00000000
    (II) intel(0): MI_RDRET_STATE: 0x00000000
    (II) intel(0): ECOSKPD: 0x00000307
    (II) intel(0): DP_B: 0x00000000
    (II) intel(0): DPB_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_C: 0x00000000
    (II) intel(0): DPC_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_D: 0x00000000
    (II) intel(0): DPD_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA5: 0x00000000
    (II) intel(0): pipe A dot 25153 n 2 m1 18 m2 7 p1 13 p2 4
    (II) intel(0): pipe B dot 50571 n 2 m1 20 m2 6 p1 2 p2 14
    (II) intel(0): DumpRegsEnd
    (II) intel(0): 2 display pipes available.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section External VGA
    (**) intel(0): Option "Ignore" "True"
    (II) intel(0): Output LVDS using monitor section Internal LCD
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): found backlight control method /sys/class/backlight/asus-laptop
    (II) intel(0): I2C bus "DVODDC_D" initialized.
    (II) Loading sub module "sil164"
    (II) LoadModule: "sil164"
    (II) Loading /usr/lib/xorg/modules/drivers//sil164.so
    (II) Module sil164: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ch7xxx"
    (II) LoadModule: "ch7xxx"
    (II) Loading /usr/lib/xorg/modules/drivers//ch7xxx.so
    (II) Module ch7xxx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ivch"
    (II) LoadModule: "ivch"
    (II) Loading /usr/lib/xorg/modules/drivers//ivch.so
    (II) Module ivch: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_B" initialized.
    (II) Loading sub module "tfp410"
    (II) LoadModule: "tfp410"
    (II) Loading /usr/lib/xorg/modules/drivers//tfp410.so
    (II) Module tfp410: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_B" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ch7017"
    (II) LoadModule: "ch7017"
    (II) Loading /usr/lib/xorg/modules/drivers//ch7017.so
    (II) Module ch7017: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVODDC_D" removed.
    (II) intel(0): Resizable framebuffer: not available (0 2)
    (II) intel(0): EDID for output LVDS
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1152x864" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "832x624" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions)
    (II) intel(0): Printing probed modes for output LVDS
    (II) intel(0): Modeline "1024x600"x60.0 50.40 1024 1032 1165 1344 600 603 609 625 (37.5 kHz)
    (II) intel(0): Modeline "800x600"x85.1 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz)
    (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz)
    (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz)
    (II) intel(0): Output LVDS connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1024x600
    (II) intel(0): detected 128 kB GTT.
    (II) intel(0): detected 8060 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.2.1
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 50176 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 200700 kB available
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 131072 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (WW) intel(0): xf86AllocateGARTMemory: allocation of 1536 pages failed
    (Cannot allocate memory)
    (WW) intel(0): Allocation error, framebuffer compression disabled
    (WW) intel(0): xf86AllocateGARTMemory: allocation of 10 pages failed
    (Cannot allocate memory)
    (II) intel(0): Allocating 3072 scanlines for pixmap cache
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): adjusting plane->pipe mappings to allow for framebuffer compression
    (II) intel(0): Page Flipping disabled
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) intel(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Horizontal and Vertical Lines
    Setting up tile and stipple cache:
    32 128x128 slots
    16 256x256 slots
    6 512x512 slots
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e0000 (pgoffset 2016)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x01000000 (pgoffset 4096)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x0011ffff: fake bufmgr (1024 kB)
    (II) intel(0): 0x00120000-0x0012ffff: xaa scratch (64 kB)
    (II) intel(0): 0x007df000: end of stolen memory
    (II) intel(0): 0x007df000-0x007dffff: Core cursor (4 kB, 0x000000000d6b8000 physical
    (II) intel(0): 0x007e0000-0x007e3fff: ARGB cursor (16 kB, 0x000000000b04c000 physical
    (II) intel(0): 0x007e4000-0x007e4fff: Core cursor (4 kB, 0x000000000b08d000 physical
    (II) intel(0): 0x007e5000-0x007e8fff: ARGB cursor (16 kB, 0x000000000b040000 physical
    (II) intel(0): 0x007e9000-0x007e9fff: overlay registers (4 kB, 0x000000000d7fa000 physical
    (II) intel(0): 0x01000000-0x01ffffff: front buffer (16384 kB)
    (II) intel(0): 0x08000000: end of aperture
    (WW) intel(0): Chosen PLL clock of 48.0 Mhz more than 2% away from desired 50.4 Mhz
    (II) intel(0): Mode for pipe B:
    (II) intel(0): Modeline "1024x600"x60.0 50.40 1024 1032 1165 1344 600 603 609 625 (37.5 kHz)
    (II) intel(0): chosen: dotclock 48000 vco 1344000 ((m 140, m1 23, m2 13), n 3, (p 28, p1 2, p2 14))
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Mode for pipe A:
    (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    (II) intel(0): chosen: dotclock 31500 vco 1008000 ((m 126, m1 20, m2 14), n 4, (p 32, p1 8, p2 4))
    (II) intel(0): Hardware state at EnterVT:
    (II) intel(0): DumpRegsBegin
    (II) intel(0): CHDECMISC: 0x00000000 (none, ch2 enh disabled, ch1 enh disabled, ch0 enh disabled, flex disabled, ep not present)
    (II) intel(0): C0DRB0: 0x00000000 (0x0000)
    (II) intel(0): C0DRB1: 0x00000000 (0x0000)
    (II) intel(0): C0DRB2: 0x00000000 (0x0000)
    (II) intel(0): C0DRB3: 0x00000000 (0x0000)
    (II) intel(0): C1DRB0: 0x00000000 (0x0000)
    (II) intel(0): C1DRB1: 0x00000000 (0x0000)
    (II) intel(0): C1DRB2: 0x00000000 (0x0000)
    (II) intel(0): C1DRB3: 0x00000000 (0x0000)
    (II) intel(0): C0DRA01: 0x00000000 (0x0000)
    (II) intel(0): C0DRA23: 0x00000000 (0x0000)
    (II) intel(0): C1DRA01: 0x00000000 (0x0000)
    (II) intel(0): C1DRA23: 0x00000000 (0x0000)
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406 (n = 3, m1 = 20, m2 = 6)
    (II) intel(0): VCLK_POST_DIV: 0x0000888b (vga0 p1 = 13, p2 = 4, vga1 p1 = 10, p2 = 4)
    (II) intel(0): DPLL_TEST: 0x00000000 (, DPLLA input buffer disabled, DPLLB input buffer disabled)
    (II) intel(0): CACHE_MODE_0: 0x00000000
    (II) intel(0): D_STATE: 0x0000030f
    (II) intel(0): DSPCLK_GATE_D: 0x00000000 (clock gates disabled:)
    (II) intel(0): RENCLK_GATE_D1: 0x00000001
    (II) intel(0): RENCLK_GATE_D2: 0x00000000
    (II) intel(0): SDVOB: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOC: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOUDI: 0x00000000
    (II) intel(0): DSPARB: 0x0001feff
    (II) intel(0): DSPFW1: 0x00000000
    (II) intel(0): DSPFW2: 0x00000000
    (II) intel(0): DSPFW3: 0x00000000
    (II) intel(0): ADPA: 0x00001c18 (disabled, pipe A, +hsync, +vsync)
    (II) intel(0): LVDS: 0xc0000300 (enabled, pipe B, 18 bit, 1 channel)
    (II) intel(0): DVOA: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOB: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOC: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOA_SRCDIM: 0x00000000
    (II) intel(0): DVOB_SRCDIM: 0x00000000
    (II) intel(0): DVOC_SRCDIM: 0x00000000
    (II) intel(0): PP_CONTROL: 0x00000001 (power target: on)
    (II) intel(0): PP_STATUS: 0xd000000a (on, ready, sequencing on)
    (II) intel(0): PP_ON_DELAYS: 0x019007d0
    (II) intel(0): PP_OFF_DELAYS: 0x01f407d0
    (II) intel(0): PP_DIVISOR: 0x00270f04
    (II) intel(0): PFIT_CONTROL: 0x00000008
    (II) intel(0): PFIT_PGM_RATIOS: 0x00000000
    (II) intel(0): PORT_HOTPLUG_EN: 0x00000000
    (II) intel(0): PORT_HOTPLUG_STAT: 0x00000000
    (II) intel(0): DSPACNTR: 0xd9000000 (enabled, pipe B)
    (II) intel(0): DSPASTRIDE: 0x00001000 (4096 bytes)
    (II) intel(0): DSPAPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPASIZE: 0x025703ff (1024, 600)
    (II) intel(0): DSPABASE: 0x01000000
    (II) intel(0): DSPASURF: 0x00000000
    (II) intel(0): DSPATILEOFF: 0x00000000
    (II) intel(0): PIPEACONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEASRC: 0x027f01df (640, 480)
    (II) intel(0): PIPEASTAT: 0x80000207 (status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS)
    (II) intel(0): FPA0: 0x0004140e (n = 4, m1 = 20, m2 = 14)
    (II) intel(0): FPA1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_A: 0x90860000 (enabled, non-dvo, default clock, DAC/serial mode, p1 = 8, p2 = 4)
    (II) intel(0): DPLL_A_MD: 0x00000000
    (II) intel(0): HTOTAL_A: 0x033f027f (640 active, 832 total)
    (II) intel(0): HBLANK_A: 0x033f027f (640 start, 832 end)
    (II) intel(0): HSYNC_A: 0x02bf0297 (664 start, 704 end)
    (II) intel(0): VTOTAL_A: 0x020701df (480 active, 520 total)
    (II) intel(0): VBLANK_A: 0x020701df (480 start, 520 end)
    (II) intel(0): VSYNC_A: 0x01ea01e8 (489 start, 491 end)
    (II) intel(0): BCLRPAT_A: 0x00000000
    (II) intel(0): VSYNCSHIFT_A: 0x00000000
    (II) intel(0): DSPBCNTR: 0x58000000 (disabled, pipe A)
    (II) intel(0): DSPBSTRIDE: 0x00001000 (4096 bytes)
    (II) intel(0): DSPBPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPBSIZE: 0x01df027f (640, 480)
    (II) intel(0): DSPBBASE: 0x01000000
    (II) intel(0): DSPBSURF: 0x00000000
    (II) intel(0): DSPBTILEOFF: 0x00000000
    (II) intel(0): PIPEBCONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEBSRC: 0x03ff0257 (1024, 600)
    (II) intel(0): PIPEBSTAT: 0x80000202 (status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS)
    (II) intel(0): FPB0: 0x0003170d (n = 3, m1 = 23, m2 = 13)
    (II) intel(0): FPB1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_B: 0x90020000 (enabled, non-dvo, default clock, LVDS mode, p1 = 2, p2 = 14)
    (II) intel(0): DPLL_B_MD: 0x00000000
    (II) intel(0): HTOTAL_B: 0x053f03ff (1024 active, 1344 total)
    (II) intel(0): HBLANK_B: 0x053f03ff (1024 start, 1344 end)
    (II) intel(0): HSYNC_B: 0x048c0407 (1032 start, 1165 end)
    (II) intel(0): VTOTAL_B: 0x02700257 (600 active, 625 total)
    (II) intel(0): VBLANK_B: 0x02700257 (600 start, 625 end)
    (II) intel(0): VSYNC_B: 0x0260025a (603 start, 609 end)
    (II) intel(0): BCLRPAT_B: 0x00000000
    (II) intel(0): VSYNCSHIFT_B: 0x00000000
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406
    (II) intel(0): VCLK_POST_DIV: 0x0000888b
    (II) intel(0): VGACNTRL: 0xa204008e (disabled)
    (II) intel(0): TV_CTL: 0x00000000
    (II) intel(0): TV_DAC: 0x00000000
    (II) intel(0): TV_CSC_Y: 0x00000000
    (II) intel(0): TV_CSC_Y2: 0x00000000
    (II) intel(0): TV_CSC_U: 0x00000000
    (II) intel(0): TV_CSC_U2: 0x00000000
    (II) intel(0): TV_CSC_V: 0x00000000
    (II) intel(0): TV_CSC_V2: 0x00000000
    (II) intel(0): TV_CLR_KNOBS: 0x00000000
    (II) intel(0): TV_CLR_LEVEL: 0x00000000
    (II) intel(0): TV_H_CTL_1: 0x00000000
    (II) intel(0): TV_H_CTL_2: 0x00000000
    (II) intel(0): TV_H_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_1: 0x00000000
    (II) intel(0): TV_V_CTL_2: 0x00000000
    (II) intel(0): TV_V_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_4: 0x00000000
    (II) intel(0): TV_V_CTL_5: 0x00000000
    (II) intel(0): TV_V_CTL_6: 0x00000000
    (II) intel(0): TV_V_CTL_7: 0x00000000
    (II) intel(0): TV_SC_CTL_1: 0x00000000
    (II) intel(0): TV_SC_CTL_2: 0x00000000
    (II) intel(0): TV_SC_CTL_3: 0x00000000
    (II) intel(0): TV_WIN_POS: 0x00000000
    (II) intel(0): TV_WIN_SIZE: 0x00000000
    (II) intel(0): TV_FILTER_CTL_1: 0x00000000
    (II) intel(0): TV_FILTER_CTL_2: 0x00000000
    (II) intel(0): TV_FILTER_CTL_3: 0x00000000
    (II) intel(0): TV_CC_CONTROL: 0x00000000
    (II) intel(0): TV_CC_DATA: 0x00000000
    (II) intel(0): TV_H_LUMA_0: 0x00000000
    (II) intel(0): TV_H_LUMA_59: 0x00000000
    (II) intel(0): TV_H_CHROMA_0: 0x00000000
    (II) intel(0): TV_H_CHROMA_59: 0x00000000
    (II) intel(0): FBC_CFB_BASE: 0x00000000
    (II) intel(0): FBC_LL_BASE: 0x00000000
    (II) intel(0): FBC_CONTROL: 0x00000000
    (II) intel(0): FBC_COMMAND: 0x00000000
    (II) intel(0): FBC_STATUS: 0x20000000
    (II) intel(0): FBC_CONTROL2: 0x00000000
    (II) intel(0): FBC_FENCE_OFF: 0x00000000
    (II) intel(0): FBC_MOD_NUM: 0x00000000
    (II) intel(0): MI_MODE: 0x00000000
    (II) intel(0): MI_ARB_STATE: 0x00000000
    (II) intel(0): MI_RDRET_STATE: 0x00000000
    (II) intel(0): ECOSKPD: 0x00000307
    (II) intel(0): DP_B: 0x00000000
    (II) intel(0): DPB_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_C: 0x00000000
    (II) intel(0): DPC_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_D: 0x00000000
    (II) intel(0): DPD_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA5: 0x00000000
    (II) intel(0): pipe A dot 31500 n 4 m1 20 m2 14 p1 8 p2 4
    (II) intel(0): pipe B dot 48000 n 3 m1 23 m2 13 p1 2 p2 14
    (II) intel(0): DumpRegsEnd
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane B is now disabled and connected to pipe A.
    (WW) intel(0): Hardware claims pipe A is on while software believes it is off
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane A is now enabled and connected to pipe B.
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Disabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    (II) AIGLX: Screen 0 is not DRI capable
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    (II) GLX: Initialized DRISWRAST GL provider for screen 0
    (II) intel(0): Setting screen physical size to 270 x 158
    (II) config/hal: Adding input device TPPS/2 IBM TrackPoint
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) TPPS/2 IBM TrackPoint: always reports core events
    (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event8"
    (II) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    (II) TPPS/2 IBM TrackPoint: Found x and y relative axes
    (II) TPPS/2 IBM TrackPoint: Configuring as mouse
    (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
    (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    (**) TPPS/2 IBM TrackPoint: (accel) filter chain progression: 2.00
    (**) TPPS/2 IBM TrackPoint: (accel) filter stage 0: 20.00 ms
    (**) TPPS/2 IBM TrackPoint: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Asus Laptop extra buttons
    (**) Asus Laptop extra buttons: always reports core events
    (**) Asus Laptop extra buttons: Device: "/dev/input/event5"
    (II) Asus Laptop extra buttons: Found 1 mouse buttons
    (II) Asus Laptop extra buttons: Found keys
    (II) Asus Laptop extra buttons: Configuring as keyboard
    (**) Asus Laptop extra buttons: YAxisMapping: buttons 4 and 5
    (**) Asus Laptop extra buttons: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Asus Laptop extra buttons" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event6"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) TPPS/2 IBM TrackPoint: Close
    (II) UnloadModule: "evdev"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) Asus Laptop extra buttons: Close
    (II) UnloadModule: "evdev"
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) Video Bus: Close
    (II) UnloadModule: "evdev"
    (II) intel(0): Comparing regs from server start up to After LeaveVT
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (II) intel(0): DumpRegsBegin
    (II) intel(0): CHDECMISC: 0x00000000 (none, ch2 enh disabled, ch1 enh disabled, ch0 enh disabled, flex disabled, ep not present)
    (II) intel(0): C0DRB0: 0x00000000 (0x0000)
    (II) intel(0): C0DRB1: 0x00000000 (0x0000)
    (II) intel(0): C0DRB2: 0x00000000 (0x0000)
    (II) intel(0): C0DRB3: 0x00000000 (0x0000)
    (II) intel(0): C1DRB0: 0x00000000 (0x0000)
    (II) intel(0): C1DRB1: 0x00000000 (0x0000)
    (II) intel(0): C1DRB2: 0x00000000 (0x0000)
    (II) intel(0): C1DRB3: 0x00000000 (0x0000)
    (II) intel(0): C0DRA01: 0x00000000 (0x0000)
    (II) intel(0): C0DRA23: 0x00000000 (0x0000)
    (II) intel(0): C1DRA01: 0x00000000 (0x0000)
    (II) intel(0): C1DRA23: 0x00000000 (0x0000)
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406 (n = 3, m1 = 20, m2 = 6)
    (II) intel(0): VCLK_POST_DIV: 0x0000888b (vga0 p1 = 13, p2 = 4, vga1 p1 = 10, p2 = 4)
    (II) intel(0): DPLL_TEST: 0x00000000 (, DPLLA input buffer disabled, DPLLB input buffer disabled)
    (II) intel(0): CACHE_MODE_0: 0x00000000
    (II) intel(0): D_STATE: 0x0000030f
    (II) intel(0): DSPCLK_GATE_D: 0x00000000 (clock gates disabled:)
    (II) intel(0): RENCLK_GATE_D1: 0x00000000
    (II) intel(0): RENCLK_GATE_D2: 0x00000000
    (II) intel(0): SDVOB: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOC: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOUDI: 0x00000000
    (II) intel(0): DSPARB: 0x00015455
    (II) intel(0): DSPFW1: 0x00000000
    (II) intel(0): DSPFW2: 0x00000000
    (II) intel(0): DSPFW3: 0x00000000
    (II) intel(0): ADPA: 0x00001c18 (disabled, pipe A, +hsync, +vsync)
    (II) intel(0): LVDS: 0xc0000300 (enabled, pipe B, 18 bit, 1 channel)
    (II) intel(0): DVOA: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOB: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOC: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOA_SRCDIM: 0x00000000
    (II) intel(0): DVOB_SRCDIM: 0x00000000
    (II) intel(0): DVOC_SRCDIM: 0x00000000
    (II) intel(0): PP_CONTROL: 0x00000001 (power target: on)
    (II) intel(0): PP_STATUS: 0xd000000a (on, ready, sequencing on)
    (II) intel(0): PP_ON_DELAYS: 0x019007d0
    (II) intel(0): PP_OFF_DELAYS: 0x01f407d0
    (II) intel(0): PP_DIVISOR: 0x00270f04
    (II) intel(0): PFIT_CONTROL: 0x80000668
    (II) intel(0): PFIT_PGM_RATIOS: 0x00000000
    (II) intel(0): PORT_HOTPLUG_EN: 0x00000000
    (II) intel(0): PORT_HOTPLUG_STAT: 0x00000000
    (II) intel(0): DSPACNTR: 0x00000000 (disabled, pipe A)
    (II) intel(0): DSPASTRIDE: 0x00000000 (0 bytes)
    (II) intel(0): DSPAPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPASIZE: 0x00000000 (1, 1)
    (II) intel(0): DSPABASE: 0x00000000
    (II) intel(0): DSPASURF: 0x00000000
    (II) intel(0): DSPATILEOFF: 0x00000000
    (II) intel(0): PIPEACONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEASRC: 0x027f01df (640, 480)
    (II) intel(0): PIPEASTAT: 0x80000207 (status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS)
    (II) intel(0): FPA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): FPA1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_A: 0x808b0000 (enabled, non-dvo, VGA, default clock, DAC/serial mode, p1 = 13, p2 = 4)
    (II) intel(0): DPLL_A_MD: 0x00000000
    (II) intel(0): HTOTAL_A: 0x031f027f (640 active, 800 total)
    (II) intel(0): HBLANK_A: 0x03170287 (648 start, 792 end)
    (II) intel(0): HSYNC_A: 0x02ef028f (656 start, 752 end)
    (II) intel(0): VTOTAL_A: 0x020c01df (480 active, 525 total)
    (II) intel(0): VBLANK_A: 0x020401e7 (488 start, 517 end)
    (II) intel(0): VSYNC_A: 0x01eb01e9 (490 start, 492 end)
    (II) intel(0): BCLRPAT_A: 0x00000000
    (II) intel(0): VSYNCSHIFT_A: 0x00000000
    (II) intel(0): DSPBCNTR: 0x49000000 (disabled, pipe B)
    (II) intel(0): DSPBSTRIDE: 0x00000280 (640 bytes)
    (II) intel(0): DSPBPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPBSIZE: 0x01df027f (640, 480)
    (II) intel(0): DSPBBASE: 0x00000000
    (II) intel(0): DSPBSURF: 0x00000000
    (II) intel(0): DSPBTILEOFF: 0x00000000
    (II) intel(0): PIPEBCONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEBSRC: 0x027f018f (640, 400)
    (II) intel(0): PIPEBSTAT: 0x80000202 (status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS)
    (II) intel(0): FPB0: 0x00021406 (n = 2, m1 = 20, m2 = 6)
    (II) intel(0): FPB1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_B: 0x90020000 (enabled, non-dvo, default clock, LVDS mode, p1 = 2, p2 = 14)
    (II) intel(0): DPLL_B_MD: 0x00000000
    (II) intel(0): HTOTAL_B: 0x053f03ff (1024 active, 1344 total)
    (II) intel(0): HBLANK_B: 0x053f03ff (1024 start, 1344 end)
    (II) intel(0): HSYNC_B: 0x048c0407 (1032 start, 1165 end)
    (II) intel(0): VTOTAL_B: 0x02700257 (600 active, 625 total)
    (II) intel(0): VBLANK_B: 0x02700257 (600 start, 625 end)
    (II) intel(0): VSYNC_B: 0x0260025a (603 start, 609 end)
    (II) intel(0): BCLRPAT_B: 0x00000000
    (II) intel(0): VSYNCSHIFT_B: 0x00000000
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406
    (II) intel(0): VCLK_POST_DIV: 0x0000888b
    (II) intel(0): VGACNTRL: 0x2204008e (enabled)
    (II) intel(0): TV_CTL: 0x00000000
    (II) intel(0): TV_DAC: 0x00000000
    (II) intel(0): TV_CSC_Y: 0x00000000
    (II) intel(0): TV_CSC_Y2: 0x00000000
    (II) intel(0): TV_CSC_U: 0x00000000
    (II) intel(0): TV_CSC_U2: 0x00000000
    (II) intel(0): TV_CSC_V: 0x00000000
    (II) intel(0): TV_CSC_V2: 0x00000000
    (II) intel(0): TV_CLR_KNOBS: 0x00000000
    (II) intel(0): TV_CLR_LEVEL: 0x00000000
    (II) intel(0): TV_H_CTL_1: 0x00000000
    (II) intel(0): TV_H_CTL_2: 0x00000000
    (II) intel(0): TV_H_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_1: 0x00000000
    (II) intel(0): TV_V_CTL_2: 0x00000000
    (II) intel(0): TV_V_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_4: 0x00000000
    (II) intel(0): TV_V_CTL_5: 0x00000000
    (II) intel(0): TV_V_CTL_6: 0x00000000
    (II) intel(0): TV_V_CTL_7: 0x00000000
    (II) intel(0): TV_SC_CTL_1: 0x00000000
    (II) intel(0): TV_SC_CTL_2: 0x00000000
    (II) intel(0): TV_SC_CTL_3: 0x00000000
    (II) intel(0): TV_WIN_POS: 0x00000000
    (II) intel(0): TV_WIN_SIZE: 0x00000000
    (II) intel(0): TV_FILTER_CTL_1: 0x00000000
    (II) intel(0): TV_FILTER_CTL_2: 0x00000000
    (II) intel(0): TV_FILTER_CTL_3: 0x00000000
    (II) intel(0): TV_CC_CONTROL: 0x00000000
    (II) intel(0): TV_CC_DATA: 0x00000000
    (II) intel(0): TV_H_LUMA_0: 0x00000000
    (II) intel(0): TV_H_LUMA_59: 0x00000000
    (II) intel(0): TV_H_CHROMA_0: 0x00000000
    (II) intel(0): TV_H_CHROMA_59: 0x00000000
    (II) intel(0): FBC_CFB_BASE: 0x00000000
    (II) intel(0): FBC_LL_BASE: 0x00000000
    (II) intel(0): FBC_CONTROL: 0x00000000
    (II) intel(0): FBC_COMMAND: 0x00000000
    (II) intel(0): FBC_STATUS: 0x20000000
    (II) intel(0): FBC_CONTROL2: 0x00000000
    (II) intel(0): FBC_FENCE_OFF: 0x00000000
    (II) intel(0): FBC_MOD_NUM: 0x00000000
    (II) intel(0): MI_MODE: 0x00000000
    (II) intel(0): MI_ARB_STATE: 0x00000000
    (II) intel(0): MI_RDRET_STATE: 0x00000000
    (II) intel(0): ECOSKPD: 0x00000307
    (II) intel(0): DP_B: 0x00000000
    (II) intel(0): DPB_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_C: 0x00000000
    (II) intel(0): DPC_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_D: 0x00000000
    (II) intel(0): DPD_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA5: 0x00000000
    (II) intel(0): pipe A dot 25153 n 2 m1 18 m2 7 p1 13 p2 4
    (II) intel(0): pipe B dot 50571 n 2 m1 20 m2 6 p1 2 p2 14
    (II) intel(0): DumpRegsEnd
    (II) intel(0): xf86UnbindGARTMemory: unbind key 0
    (II) intel(0): xf86UnbindGARTMemory: unbind key 1
    (II) intel(0): xf86UnbindGARTMemory: unbind key 2
    (II) intel(0): xf86UnbindGARTMemory: unbind key 3
    (II) intel(0): xf86UnbindGARTMemory: unbind key 4
    (II) intel(0): xf86UnbindGARTMemory: unbind key 5
    Latest configuration file which still is not working
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "extmod"
    Load "record"
    # Load "dri2"
    # Load "dri"
    Load "dbe"
    EndSection
    Section "Monitor"
    Identifier "Internal LCD"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "External VGA"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    Option "Ignore" "True"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    Option "DRI" "False" # [<bool>]
    Option "AccelMethod" "XAA"
    #Option "NoDDC" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    Option "monitor-VGA" "External VGA"
    Option "monitor-LVDS" "Internal LCD"
    Option "ModeDebug" "True"
    BoardName "82852/855GM Integrated Graphics Device"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Internal LCD"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card0"
    Monitor "External VGA"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Last edited by B0b (2009-05-10 21:07:56)

    firecat53 wrote:
    Try the xf86-intel-video-newest package from AUR.
    Scott
    Installed 2.7.0 from abs testing.. result is the same.. Unfortunately newest from AUR is not compiling complaining about some
    macro stuff
    Anything else?
    This is log file with 2.7.0 module:
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux darkzone-mobile 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 29 14:25:30 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 9 23:54:58 2009
    (++) Using config file: "/root/xorg.conf.new"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Internal LCD"
    (**) | |-->Device "Card0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/134217728, 0xfeb00000/524288, I/O @ 0x0000dc00/8
    (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/134217728, 0xfea80000/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.7.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35,
    965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile IntelВ® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "AccelMethod" "XAA"
    (**) intel(0): Option "DRI" "False"
    (**) intel(0): Option "ModeDebug" "True"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GM
    (--) intel(0): Chipset: "852GM/855GM"
    (--) intel(0): Linear framebuffer at 0xF0000000
    (--) intel(0): IO registers at addr 0xFEB00000
    (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
    (**) intel(0): Using XAA for acceleration
    (II) intel(0): Hardware state on X startup:
    (II) intel(0): DumpRegsBegin
    (II) intel(0): CHDECMISC: 0x00000000 (none, ch2 enh disabled, ch1 enh disabled, ch0 enh disabled, flex disabled, ep not present)
    (II) intel(0): C0DRB0: 0x00000000 (0x0000)
    (II) intel(0): C0DRB1: 0x00000000 (0x0000)
    (II) intel(0): C0DRB2: 0x00000000 (0x0000)
    (II) intel(0): C0DRB3: 0x00000000 (0x0000)
    (II) intel(0): C1DRB0: 0x00000000 (0x0000)
    (II) intel(0): C1DRB1: 0x00000000 (0x0000)
    (II) intel(0): C1DRB2: 0x00000000 (0x0000)
    (II) intel(0): C1DRB3: 0x00000000 (0x0000)
    (II) intel(0): C0DRA01: 0x00000000 (0x0000)
    (II) intel(0): C0DRA23: 0x00000000 (0x0000)
    (II) intel(0): C1DRA01: 0x00000000 (0x0000)
    (II) intel(0): C1DRA23: 0x00000000 (0x0000)
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406 (n = 3, m1 = 20, m2 = 6)
    (II) intel(0): VCLK_POST_DIV: 0x0000888b (vga0 p1 = 13, p2 = 4, vga1 p1 = 10, p2 = 4)
    (II) intel(0): DPLL_TEST: 0x00000000 (, DPLLA input buffer disabled, DPLLB input buffer disabled)
    (II) intel(0): CACHE_MODE_0: 0x00000000
    (II) intel(0): D_STATE: 0x0000030f
    (II) intel(0): DSPCLK_GATE_D: 0x00000000 (clock gates disabled:)
    (II) intel(0): RENCLK_GATE_D1: 0x00000000
    (II) intel(0): RENCLK_GATE_D2: 0x00000000
    (II) intel(0): SDVOB: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOC: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOUDI: 0x00000000
    (II) intel(0): DSPARB: 0x00015455
    (II) intel(0): DSPFW1: 0x00000000
    (II) intel(0): DSPFW2: 0x00000000
    (II) intel(0): DSPFW3: 0x00000000
    (II) intel(0): ADPA: 0x00001c18 (disabled, pipe A, +hsync, +vsync)
    (II) intel(0): LVDS: 0xc0000300 (enabled, pipe B, 18 bit, 1 channel)
    (II) intel(0): DVOA: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOB: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOC: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOA_SRCDIM: 0x00000000
    (II) intel(0): DVOB_SRCDIM: 0x00000000
    (II) intel(0): DVOC_SRCDIM: 0x00000000
    (II) intel(0): PP_CONTROL: 0x00000001 (power target: on)
    (II) intel(0): PP_STATUS: 0xc0000008 (on, ready, sequencing idle)
    (II) intel(0): PP_ON_DELAYS: 0x019007d0
    (II) intel(0): PP_OFF_DELAYS: 0x01f407d0
    (II) intel(0): PP_DIVISOR: 0x00270f04
    (II) intel(0): PFIT_CONTROL: 0x80000668
    (II) intel(0): PFIT_PGM_RATIOS: 0x00000000
    (II) intel(0): PORT_HOTPLUG_EN: 0x00000000
    (II) intel(0): PORT_HOTPLUG_STAT: 0x00000000
    (II) intel(0): DSPACNTR: 0x00000000 (disabled, pipe A)
    (II) intel(0): DSPASTRIDE: 0x00000000 (0 bytes)
    (II) intel(0): DSPAPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPASIZE: 0x00000000 (1, 1)
    (II) intel(0): DSPABASE: 0x00000000
    (II) intel(0): DSPASURF: 0x00000000
    (II) intel(0): DSPATILEOFF: 0x00000000
    (II) intel(0): PIPEACONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEASRC: 0x027f01df (640, 480)
    (II) intel(0): PIPEASTAT: 0x80000207 (status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS)
    (II) intel(0): FPA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): FPA1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_A: 0x808b0000 (enabled, non-dvo, VGA, default clock, DAC/serial mode, p1 = 13, p2 = 4)
    (II) intel(0): DPLL_A_MD: 0x00000000
    (II) intel(0): HTOTAL_A: 0x031f027f (640 active, 800 total)
    (II) intel(0): HBLANK_A: 0x03170287 (648 start, 792 end)
    (II) intel(0): HSYNC_A: 0x02ef028f (656 start, 752 end)
    (II) intel(0): VTOTAL_A: 0x020c01df (480 active, 525 total)
    (II) intel(0): VBLANK_A: 0x020401e7 (488 start, 517 end)
    (II) intel(0): VSYNC_A: 0x01eb01e9 (490 start, 492 end)
    (II) intel(0): BCLRPAT_A: 0x00000000
    (II) intel(0): VSYNCSHIFT_A: 0x00000000
    (II) intel(0): DSPBCNTR: 0x49000000 (disabled, pipe B)
    (II) intel(0): DSPBSTRIDE: 0x00000280 (640 bytes)
    (II) intel(0): DSPBPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPBSIZE: 0x01df027f (640, 480)
    (II) intel(0): DSPBBASE: 0x00000000
    (II) intel(0): DSPBSURF: 0x00000000
    (II) intel(0): DSPBTILEOFF: 0x00000000
    (II) intel(0): PIPEBCONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEBSRC: 0x027f018f (640, 400)
    (II) intel(0): PIPEBSTAT: 0x80000202 (status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS)
    (II) intel(0): FPB0: 0x00021406 (n = 2, m1 = 20, m2 = 6)
    (II) intel(0): FPB1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_B: 0x90020000 (enabled, non-dvo, default clock, LVDS mode, p1 = 2, p2 = 14)
    (II) intel(0): DPLL_B_MD: 0x00000000
    (II) intel(0): HTOTAL_B: 0x053f03ff (1024 active, 1344 total)
    (II) intel(0): HBLANK_B: 0x053f03ff (1024 start, 1344 end)
    (II) intel(0): HSYNC_B: 0x048c0407 (1032 start, 1165 end)
    (II) intel(0): VTOTAL_B: 0x02700257 (600 active, 625 total)
    (II) intel(0): VBLANK_B: 0x02700257 (600 start, 625 end)
    (II) intel(0): VSYNC_B: 0x0260025a (603 start, 609 end)
    (II) intel(0): BCLRPAT_B: 0x00000000
    (II) intel(0): VSYNCSHIFT_B: 0x00000000
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406
    (II) intel(0): VCLK_POST_DIV: 0x0000888b
    (II) intel(0): VGACNTRL: 0x2204008e (enabled)
    (II) intel(0): TV_CTL: 0x00000000
    (II) intel(0): TV_DAC: 0x00000000
    (II) intel(0): TV_CSC_Y: 0x00000000
    (II) intel(0): TV_CSC_Y2: 0x00000000
    (II) intel(0): TV_CSC_U: 0x00000000
    (II) intel(0): TV_CSC_U2: 0x00000000
    (II) intel(0): TV_CSC_V: 0x00000000
    (II) intel(0): TV_CSC_V2: 0x00000000
    (II) intel(0): TV_CLR_KNOBS: 0x00000000
    (II) intel(0): TV_CLR_LEVEL: 0x00000000
    (II) intel(0): TV_H_CTL_1: 0x00000000
    (II) intel(0): TV_H_CTL_2: 0x00000000
    (II) intel(0): TV_H_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_1: 0x00000000
    (II) intel(0): TV_V_CTL_2: 0x00000000
    (II) intel(0): TV_V_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_4: 0x00000000
    (II) intel(0): TV_V_CTL_5: 0x00000000
    (II) intel(0): TV_V_CTL_6: 0x00000000
    (II) intel(0): TV_V_CTL_7: 0x00000000
    (II) intel(0): TV_SC_CTL_1: 0x00000000
    (II) intel(0): TV_SC_CTL_2: 0x00000000
    (II) intel(0): TV_SC_CTL_3: 0x00000000
    (II) intel(0): TV_WIN_POS: 0x00000000
    (II) intel(0): TV_WIN_SIZE: 0x00000000
    (II) intel(0): TV_FILTER_CTL_1: 0x00000000
    (II) intel(0): TV_FILTER_CTL_2: 0x00000000
    (II) intel(0): TV_FILTER_CTL_3: 0x00000000
    (II) intel(0): TV_CC_CONTROL: 0x00000000
    (II) intel(0): TV_CC_DATA: 0x00000000
    (II) intel(0): TV_H_LUMA_0: 0x00000000
    (II) intel(0): TV_H_LUMA_59: 0x00000000
    (II) intel(0): TV_H_CHROMA_0: 0x00000000
    (II) intel(0): TV_H_CHROMA_59: 0x00000000
    (II) intel(0): FBC_CFB_BASE: 0x00000000
    (II) intel(0): FBC_LL_BASE: 0x00000000
    (II) intel(0): FBC_CONTROL: 0x00000000
    (II) intel(0): FBC_COMMAND: 0x00000000
    (II) intel(0): FBC_STATUS: 0x20000000
    (II) intel(0): FBC_CONTROL2: 0x00000000
    (II) intel(0): FBC_FENCE_OFF: 0x00000000
    (II) intel(0): FBC_MOD_NUM: 0x00000000
    (II) intel(0): MI_MODE: 0x00000000
    (II) intel(0): MI_ARB_STATE: 0x00000000
    (II) intel(0): MI_RDRET_STATE: 0x00000000
    (II) intel(0): ECOSKPD: 0x00000307
    (II) intel(0): DP_B: 0x00000000
    (II) intel(0): DPB_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_C: 0x00000000
    (II) intel(0): DPC_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_D: 0x00000000
    (II) intel(0): DPD_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA5: 0x00000000
    (II) intel(0): FENCE START 0: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 0: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 1: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 1: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 2: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 2: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 3: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 3: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 4: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 4: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 5: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 5: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 6: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 6: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 7: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 7: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 8: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 8: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 9: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 9: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 10: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 10: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 11: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 11: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 12: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 12: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 13: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 13: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 14: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 14: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 15: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 15: 0x00000000 ( 0x00000000 end)
    (II) intel(0): pipe A dot 25153 n 2 m1 18 m2 7 p1 13 p2 4
    (II) intel(0): pipe B dot 50571 n 2 m1 20 m2 6 p1 2 p2 14
    (II) intel(0): DumpRegsEnd
    (II) intel(0): 2 display pipes available.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section External VGA
    (**) intel(0): Option "Ignore" "True"
    (II) intel(0): Output LVDS using monitor section Internal LCD
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): found backlight control method /sys/class/backlight/asus-laptop
    (II) intel(0): I2C bus "DVODDC_D" initialized.
    (II) Loading sub module "sil164"
    (II) LoadModule: "sil164"
    (II) Loading /usr/lib/xorg/modules/drivers//sil164.so
    (II) Module sil164: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ch7xxx"
    (II) LoadModule: "ch7xxx"
    (II) Loading /usr/lib/xorg/modules/drivers//ch7xxx.so
    (II) Module ch7xxx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ivch"
    (II) LoadModule: "ivch"
    (II) Loading /usr/lib/xorg/modules/drivers//ivch.so
    (II) Module ivch: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_B" initialized.
    (II) Loading sub module "tfp410"
    (II) LoadModule: "tfp410"
    (II) Loading /usr/lib/xorg/modules/drivers//tfp410.so
    (II) Module tfp410: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_B" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) Loading sub module "ch7017"
    (II) LoadModule: "ch7017"
    (II) Loading /usr/lib/xorg/modules/drivers//ch7017.so
    (II) Module ch7017: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVOI2C_E" initialized.
    (II) intel(0): I2C bus "DVOI2C_E" removed.
    (II) intel(0): I2C bus "DVODDC_D" removed.
    (II) intel(0): Resizable framebuffer: not available (0 2)
    (II) intel(0): EDID for output LVDS
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1152x864" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1792x1344" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1856x1392" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "832x624" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "1920x1440" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions)
    (II) intel(0): Not using default mode "2048x1536" (exceeds panel dimensions)
    (II) intel(0): Printing probed modes for output LVDS
    (II) intel(0): Modeline "1024x600"x60.0 50.40 1024 1032 1165 1344 600 603 609 625 (37.5 kHz)
    (II) intel(0): Modeline "800x600"x85.1 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz)
    (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz)
    (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz)
    (II) intel(0): Output LVDS connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1024x600
    (II) intel(0): detected 128 kB GTT.
    (II) intel(0): detected 8060 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.2.1
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 50176 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 200700 kB available
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 131072 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (WW) intel(0): xf86AllocateGARTMemory: allocation of 1536 pages failed
    (Cannot allocate memory)
    (WW) intel(0): Allocation error, framebuffer compression disabled
    (WW) intel(0): xf86AllocateGARTMemory: allocation of 10 pages failed
    (Cannot allocate memory)
    (II) intel(0): Allocating 3072 scanlines for pixmap cache
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): adjusting plane->pipe mappings to allow for framebuffer compression
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) intel(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Horizontal and Vertical Lines
    Setting up tile and stipple cache:
    32 128x128 slots
    16 256x256 slots
    6 512x512 slots
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (WW) intel(0): drmDropMaster failed: Unknown error 4294967295
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e0000 (pgoffset 2016)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x00fe9000 (pgoffset 4073)
    (II) intel(0): xf86BindGARTMemory: bind key 6 at 0x01000000 (pgoffset 4096)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x0002ffff: xaa scratch (64 kB)
    (II) intel(0): 0x007df000: end of stolen memory
    (II) intel(0): 0x007df000-0x007dffff: Core cursor (4 kB, 0x000000000b26d000 physical
    (II) intel(0): 0x007e0000-0x007e3fff: ARGB cursor (16 kB, 0x000000000e6c4000 physical
    (II) intel(0): 0x007e4000-0x007e4fff: Core cursor (4 kB, 0x000000000b157000 physical
    (II) intel(0): 0x007e5000-0x007e8fff: ARGB cursor (16 kB, 0x00000000099bc000 physical
    (II) intel(0): 0x007e9000-0x00fe8fff: fake bufmgr (8192 kB)
    (II) intel(0): 0x00fe9000-0x00fe9fff: overlay registers (4 kB, 0x0000000006c1a000 physical
    (II) intel(0): 0x01000000-0x01ffffff: front buffer (16384 kB) X tiled
    (II) intel(0): 0x08000000: end of aperture
    (WW) intel(0): Chosen PLL clock of 48.0 Mhz more than 2% away from desired 50.4 Mhz
    (II) intel(0): Mode for pipe B:
    (II) intel(0): Modeline "1024x600"x60.0 50.40 1024 1032 1165 1344 600 603 609 625 (37.5 kHz)
    (II) intel(0): chosen: dotclock 48000 vco 1344000 ((m 140, m1 23, m2 13), n 3, (p 28, p1 2, p2 14))
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Mode for pipe A:
    (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    (II) intel(0): chosen: dotclock 31500 vco 1008000 ((m 126, m1 20, m2 14), n 4, (p 32, p1 8, p2 4))
    (II) intel(0): Hardware state at EnterVT:
    (II) intel(0): DumpRegsBegin
    (II) intel(0): CHDECMISC: 0x00000000 (none, ch2 enh disabled, ch1 enh disabled, ch0 enh disabled, flex disabled, ep not present)
    (II) intel(0): C0DRB0: 0x00000000 (0x0000)
    (II) intel(0): C0DRB1: 0x00000000 (0x0000)
    (II) intel(0): C0DRB2: 0x00000000 (0x0000)
    (II) intel(0): C0DRB3: 0x00000000 (0x0000)
    (II) intel(0): C1DRB0: 0x00000000 (0x0000)
    (II) intel(0): C1DRB1: 0x00000000 (0x0000)
    (II) intel(0): C1DRB2: 0x00000000 (0x0000)
    (II) intel(0): C1DRB3: 0x00000000 (0x0000)
    (II) intel(0): C0DRA01: 0x00000000 (0x0000)
    (II) intel(0): C0DRA23: 0x00000000 (0x0000)
    (II) intel(0): C1DRA01: 0x00000000 (0x0000)
    (II) intel(0): C1DRA23: 0x00000000 (0x0000)
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406 (n = 3, m1 = 20, m2 = 6)
    (II) intel(0): VCLK_POST_DIV: 0x0000888b (vga0 p1 = 13, p2 = 4, vga1 p1 = 10, p2 = 4)
    (II) intel(0): DPLL_TEST: 0x00000000 (, DPLLA input buffer disabled, DPLLB input buffer disabled)
    (II) intel(0): CACHE_MODE_0: 0x00000000
    (II) intel(0): D_STATE: 0x0000030f
    (II) intel(0): DSPCLK_GATE_D: 0x00000000 (clock gates disabled:)
    (II) intel(0): RENCLK_GATE_D1: 0x00000001
    (II) intel(0): RENCLK_GATE_D2: 0x00000000
    (II) intel(0): SDVOB: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOC: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOUDI: 0x00000000
    (II) intel(0): DSPARB: 0x0001feff
    (II) intel(0): DSPFW1: 0x00000000
    (II) intel(0): DSPFW2: 0x00000000
    (II) intel(0): DSPFW3: 0x00000000
    (II) intel(0): ADPA: 0x00001c18 (disabled, pipe A, +hsync, +vsync)
    (II) intel(0): LVDS: 0xc0000300 (enabled, pipe B, 18 bit, 1 channel)
    (II) intel(0): DVOA: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOB: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOC: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOA_SRCDIM: 0x00000000
    (II) intel(0): DVOB_SRCDIM: 0x00000000
    (II) intel(0): DVOC_SRCDIM: 0x00000000
    (II) intel(0): PP_CONTROL: 0x00000001 (power target: on)
    (II) intel(0): PP_STATUS: 0xd000000a (on, ready, sequencing on)
    (II) intel(0): PP_ON_DELAYS: 0x019007d0
    (II) intel(0): PP_OFF_DELAYS: 0x01f407d0
    (II) intel(0): PP_DIVISOR: 0x00270f04
    (II) intel(0): PFIT_CONTROL: 0x00000008
    (II) intel(0): PFIT_PGM_RATIOS: 0x00000000
    (II) intel(0): PORT_HOTPLUG_EN: 0x00000000
    (II) intel(0): PORT_HOTPLUG_STAT: 0x00000000
    (II) intel(0): DSPACNTR: 0xd9000000 (enabled, pipe B)
    (II) intel(0): DSPASTRIDE: 0x00001000 (4096 bytes)
    (II) intel(0): DSPAPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPASIZE: 0x025703ff (1024, 600)
    (II) intel(0): DSPABASE: 0x01000000
    (II) intel(0): DSPASURF: 0x00000000
    (II) intel(0): DSPATILEOFF: 0x00000000
    (II) intel(0): PIPEACONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEASRC: 0x027f01df (640, 480)
    (II) intel(0): PIPEASTAT: 0x80000207 (status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS)
    (II) intel(0): FPA0: 0x0004140e (n = 4, m1 = 20, m2 = 14)
    (II) intel(0): FPA1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_A: 0x90860000 (enabled, non-dvo, default clock, DAC/serial mode, p1 = 8, p2 = 4)
    (II) intel(0): DPLL_A_MD: 0x00000000
    (II) intel(0): HTOTAL_A: 0x033f027f (640 active, 832 total)
    (II) intel(0): HBLANK_A: 0x033f027f (640 start, 832 end)
    (II) intel(0): HSYNC_A: 0x02bf0297 (664 start, 704 end)
    (II) intel(0): VTOTAL_A: 0x020701df (480 active, 520 total)
    (II) intel(0): VBLANK_A: 0x020701df (480 start, 520 end)
    (II) intel(0): VSYNC_A: 0x01ea01e8 (489 start, 491 end)
    (II) intel(0): BCLRPAT_A: 0x00000000
    (II) intel(0): VSYNCSHIFT_A: 0x00000000
    (II) intel(0): DSPBCNTR: 0x58000000 (disabled, pipe A)
    (II) intel(0): DSPBSTRIDE: 0x00001000 (4096 bytes)
    (II) intel(0): DSPBPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPBSIZE: 0x01df027f (640, 480)
    (II) intel(0): DSPBBASE: 0x01000000
    (II) intel(0): DSPBSURF: 0x00000000
    (II) intel(0): DSPBTILEOFF: 0x00000000
    (II) intel(0): PIPEBCONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEBSRC: 0x03ff0257 (1024, 600)
    (II) intel(0): PIPEBSTAT: 0x80000202 (status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS)
    (II) intel(0): FPB0: 0x0003170d (n = 3, m1 = 23, m2 = 13)
    (II) intel(0): FPB1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_B: 0x90020000 (enabled, non-dvo, default clock, LVDS mode, p1 = 2, p2 = 14)
    (II) intel(0): DPLL_B_MD: 0x00000000
    (II) intel(0): HTOTAL_B: 0x053f03ff (1024 active, 1344 total)
    (II) intel(0): HBLANK_B: 0x053f03ff (1024 start, 1344 end)
    (II) intel(0): HSYNC_B: 0x048c0407 (1032 start, 1165 end)
    (II) intel(0): VTOTAL_B: 0x02700257 (600 active, 625 total)
    (II) intel(0): VBLANK_B: 0x02700257 (600 start, 625 end)
    (II) intel(0): VSYNC_B: 0x0260025a (603 start, 609 end)
    (II) intel(0): BCLRPAT_B: 0x00000000
    (II) intel(0): VSYNCSHIFT_B: 0x00000000
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406
    (II) intel(0): VCLK_POST_DIV: 0x0000888b
    (II) intel(0): VGACNTRL: 0xa204008e (disabled)
    (II) intel(0): TV_CTL: 0x00000000
    (II) intel(0): TV_DAC: 0x00000000
    (II) intel(0): TV_CSC_Y: 0x00000000
    (II) intel(0): TV_CSC_Y2: 0x00000000
    (II) intel(0): TV_CSC_U: 0x00000000
    (II) intel(0): TV_CSC_U2: 0x00000000
    (II) intel(0): TV_CSC_V: 0x00000000
    (II) intel(0): TV_CSC_V2: 0x00000000
    (II) intel(0): TV_CLR_KNOBS: 0x00000000
    (II) intel(0): TV_CLR_LEVEL: 0x00000000
    (II) intel(0): TV_H_CTL_1: 0x00000000
    (II) intel(0): TV_H_CTL_2: 0x00000000
    (II) intel(0): TV_H_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_1: 0x00000000
    (II) intel(0): TV_V_CTL_2: 0x00000000
    (II) intel(0): TV_V_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_4: 0x00000000
    (II) intel(0): TV_V_CTL_5: 0x00000000
    (II) intel(0): TV_V_CTL_6: 0x00000000
    (II) intel(0): TV_V_CTL_7: 0x00000000
    (II) intel(0): TV_SC_CTL_1: 0x00000000
    (II) intel(0): TV_SC_CTL_2: 0x00000000
    (II) intel(0): TV_SC_CTL_3: 0x00000000
    (II) intel(0): TV_WIN_POS: 0x00000000
    (II) intel(0): TV_WIN_SIZE: 0x00000000
    (II) intel(0): TV_FILTER_CTL_1: 0x00000000
    (II) intel(0): TV_FILTER_CTL_2: 0x00000000
    (II) intel(0): TV_FILTER_CTL_3: 0x00000000
    (II) intel(0): TV_CC_CONTROL: 0x00000000
    (II) intel(0): TV_CC_DATA: 0x00000000
    (II) intel(0): TV_H_LUMA_0: 0x00000000
    (II) intel(0): TV_H_LUMA_59: 0x00000000
    (II) intel(0): TV_H_CHROMA_0: 0x00000000
    (II) intel(0): TV_H_CHROMA_59: 0x00000000
    (II) intel(0): FBC_CFB_BASE: 0x00000000
    (II) intel(0): FBC_LL_BASE: 0x00000000
    (II) intel(0): FBC_CONTROL: 0x00000000
    (II) intel(0): FBC_COMMAND: 0x00000000
    (II) intel(0): FBC_STATUS: 0x20000000
    (II) intel(0): FBC_CONTROL2: 0x00000000
    (II) intel(0): FBC_FENCE_OFF: 0x00000000
    (II) intel(0): FBC_MOD_NUM: 0x00000000
    (II) intel(0): MI_MODE: 0x00000000
    (II) intel(0): MI_ARB_STATE: 0x00000000
    (II) intel(0): MI_RDRET_STATE: 0x00000000
    (II) intel(0): ECOSKPD: 0x00000307
    (II) intel(0): DP_B: 0x00000000
    (II) intel(0): DPB_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_C: 0x00000000
    (II) intel(0): DPC_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_D: 0x00000000
    (II) intel(0): DPD_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA5: 0x00000000
    (II) intel(0): FENCE START 0: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 0: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 1: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 1: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 2: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 2: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 3: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 3: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 4: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 4: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 5: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 5: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 6: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 6: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 7: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 7: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 8: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 8: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 9: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 9: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 10: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 10: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 11: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 11: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 12: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 12: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 13: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 13: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 14: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 14: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 15: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 15: 0x00000000 ( 0x00000000 end)
    (II) intel(0): pipe A dot 31500 n 4 m1 20 m2 14 p1 8 p2 4
    (II) intel(0): pipe B dot 48000 n 3 m1 23 m2 13 p1 2 p2 14
    (II) intel(0): DumpRegsEnd
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane B is now disabled and connected to pipe A.
    (WW) intel(0): Hardware claims pipe A is on while software believes it is off
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane A is now enabled and connected to pipe B.
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Disabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    (II) AIGLX: Screen 0 is not DRI capable
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    (II) GLX: Initialized DRISWRAST GL provider for screen 0
    (II) intel(0): Setting screen physical size to 270 x 158
    (II) config/hal: Adding input device TPPS/2 IBM TrackPoint
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) TPPS/2 IBM TrackPoint: always reports core events
    (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event8"
    (II) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    (II) TPPS/2 IBM TrackPoint: Found x and y relative axes
    (II) TPPS/2 IBM TrackPoint: Configuring as mouse
    (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
    (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    (**) TPPS/2 IBM TrackPoint: (accel) filter chain progression: 2.00
    (**) TPPS/2 IBM TrackPoint: (accel) filter stage 0: 20.00 ms
    (**) TPPS/2 IBM TrackPoint: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Asus Laptop extra buttons
    (**) Asus Laptop extra buttons: always reports core events
    (**) Asus Laptop extra buttons: Device: "/dev/input/event5"
    (II) Asus Laptop extra buttons: Found 1 mouse buttons
    (II) Asus Laptop extra buttons: Found keys
    (II) Asus Laptop extra buttons: Configuring as keyboard
    (**) Asus Laptop extra buttons: YAxisMapping: buttons 4 and 5
    (**) Asus Laptop extra buttons: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Asus Laptop extra buttons" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event6"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) TPPS/2 IBM TrackPoint: Close
    (II) UnloadModule: "evdev"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) Asus Laptop extra buttons: Close
    (II) UnloadModule: "evdev"
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) Video Bus: Close
    (II) UnloadModule: "evdev"
    (II) intel(0): Comparing regs from server start up to After LeaveVT
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (II) intel(0): DumpRegsBegin
    (II) intel(0): CHDECMISC: 0x00000000 (none, ch2 enh disabled, ch1 enh disabled, ch0 enh disabled, flex disabled, ep not present)
    (II) intel(0): C0DRB0: 0x00000000 (0x0000)
    (II) intel(0): C0DRB1: 0x00000000 (0x0000)
    (II) intel(0): C0DRB2: 0x00000000 (0x0000)
    (II) intel(0): C0DRB3: 0x00000000 (0x0000)
    (II) intel(0): C1DRB0: 0x00000000 (0x0000)
    (II) intel(0): C1DRB1: 0x00000000 (0x0000)
    (II) intel(0): C1DRB2: 0x00000000 (0x0000)
    (II) intel(0): C1DRB3: 0x00000000 (0x0000)
    (II) intel(0): C0DRA01: 0x00000000 (0x0000)
    (II) intel(0): C0DRA23: 0x00000000 (0x0000)
    (II) intel(0): C1DRA01: 0x00000000 (0x0000)
    (II) intel(0): C1DRA23: 0x00000000 (0x0000)
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406 (n = 3, m1 = 20, m2 = 6)
    (II) intel(0): VCLK_POST_DIV: 0x0000888b (vga0 p1 = 13, p2 = 4, vga1 p1 = 10, p2 = 4)
    (II) intel(0): DPLL_TEST: 0x00000000 (, DPLLA input buffer disabled, DPLLB input buffer disabled)
    (II) intel(0): CACHE_MODE_0: 0x00000000
    (II) intel(0): D_STATE: 0x0000030f
    (II) intel(0): DSPCLK_GATE_D: 0x00000000 (clock gates disabled:)
    (II) intel(0): RENCLK_GATE_D1: 0x00000000
    (II) intel(0): RENCLK_GATE_D2: 0x00000000
    (II) intel(0): SDVOB: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOC: 0x00000000 (disabled, pipe A, stall disabled, not detected)
    (II) intel(0): SDVOUDI: 0x00000000
    (II) intel(0): DSPARB: 0x00015455
    (II) intel(0): DSPFW1: 0x00000000
    (II) intel(0): DSPFW2: 0x00000000
    (II) intel(0): DSPFW3: 0x00000000
    (II) intel(0): ADPA: 0x00001c18 (disabled, pipe A, +hsync, +vsync)
    (II) intel(0): LVDS: 0xc0000300 (enabled, pipe B, 18 bit, 1 channel)
    (II) intel(0): DVOA: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOB: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOC: 0x00000000 (disabled, pipe A, no stall, -hsync, -vsync)
    (II) intel(0): DVOA_SRCDIM: 0x00000000
    (II) intel(0): DVOB_SRCDIM: 0x00000000
    (II) intel(0): DVOC_SRCDIM: 0x00000000
    (II) intel(0): PP_CONTROL: 0x00000001 (power target: on)
    (II) intel(0): PP_STATUS: 0xd000000a (on, ready, sequencing on)
    (II) intel(0): PP_ON_DELAYS: 0x019007d0
    (II) intel(0): PP_OFF_DELAYS: 0x01f407d0
    (II) intel(0): PP_DIVISOR: 0x00270f04
    (II) intel(0): PFIT_CONTROL: 0x80000668
    (II) intel(0): PFIT_PGM_RATIOS: 0x00000000
    (II) intel(0): PORT_HOTPLUG_EN: 0x00000000
    (II) intel(0): PORT_HOTPLUG_STAT: 0x00000000
    (II) intel(0): DSPACNTR: 0x00000000 (disabled, pipe A)
    (II) intel(0): DSPASTRIDE: 0x00000000 (0 bytes)
    (II) intel(0): DSPAPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPASIZE: 0x00000000 (1, 1)
    (II) intel(0): DSPABASE: 0x00000000
    (II) intel(0): DSPASURF: 0x00000000
    (II) intel(0): DSPATILEOFF: 0x00000000
    (II) intel(0): PIPEACONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEASRC: 0x027f01df (640, 480)
    (II) intel(0): PIPEASTAT: 0x80000207 (status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS)
    (II) intel(0): FPA0: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): FPA1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_A: 0x808b0000 (enabled, non-dvo, VGA, default clock, DAC/serial mode, p1 = 13, p2 = 4)
    (II) intel(0): DPLL_A_MD: 0x00000000
    (II) intel(0): HTOTAL_A: 0x031f027f (640 active, 800 total)
    (II) intel(0): HBLANK_A: 0x03170287 (648 start, 792 end)
    (II) intel(0): HSYNC_A: 0x02ef028f (656 start, 752 end)
    (II) intel(0): VTOTAL_A: 0x020c01df (480 active, 525 total)
    (II) intel(0): VBLANK_A: 0x020401e7 (488 start, 517 end)
    (II) intel(0): VSYNC_A: 0x01eb01e9 (490 start, 492 end)
    (II) intel(0): BCLRPAT_A: 0x00000000
    (II) intel(0): VSYNCSHIFT_A: 0x00000000
    (II) intel(0): DSPBCNTR: 0x49000000 (disabled, pipe B)
    (II) intel(0): DSPBSTRIDE: 0x00000280 (640 bytes)
    (II) intel(0): DSPBPOS: 0x00000000 (0, 0)
    (II) intel(0): DSPBSIZE: 0x01df027f (640, 480)
    (II) intel(0): DSPBBASE: 0x00000000
    (II) intel(0): DSPBSURF: 0x00000000
    (II) intel(0): DSPBTILEOFF: 0x00000000
    (II) intel(0): PIPEBCONF: 0x80000000 (enabled, single-wide)
    (II) intel(0): PIPEBSRC: 0x027f018f (640, 400)
    (II) intel(0): PIPEBSTAT: 0x80000202 (status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS)
    (II) intel(0): FPB0: 0x00021406 (n = 2, m1 = 20, m2 = 6)
    (II) intel(0): FPB1: 0x00021207 (n = 2, m1 = 18, m2 = 7)
    (II) intel(0): DPLL_B: 0x90020000 (enabled, non-dvo, default clock, LVDS mode, p1 = 2, p2 = 14)
    (II) intel(0): DPLL_B_MD: 0x00000000
    (II) intel(0): HTOTAL_B: 0x053f03ff (1024 active, 1344 total)
    (II) intel(0): HBLANK_B: 0x053f03ff (1024 start, 1344 end)
    (II) intel(0): HSYNC_B: 0x048c0407 (1032 start, 1165 end)
    (II) intel(0): VTOTAL_B: 0x02700257 (600 active, 625 total)
    (II) intel(0): VBLANK_B: 0x02700257 (600 start, 625 end)
    (II) intel(0): VSYNC_B: 0x0260025a (603 start, 609 end)
    (II) intel(0): BCLRPAT_B: 0x00000000
    (II) intel(0): VSYNCSHIFT_B: 0x00000000
    (II) intel(0): VCLK_DIVISOR_VGA0: 0x00021207
    (II) intel(0): VCLK_DIVISOR_VGA1: 0x00031406
    (II) intel(0): VCLK_POST_DIV: 0x0000888b
    (II) intel(0): VGACNTRL: 0x2204008e (enabled)
    (II) intel(0): TV_CTL: 0x00000000
    (II) intel(0): TV_DAC: 0x00000000
    (II) intel(0): TV_CSC_Y: 0x00000000
    (II) intel(0): TV_CSC_Y2: 0x00000000
    (II) intel(0): TV_CSC_U: 0x00000000
    (II) intel(0): TV_CSC_U2: 0x00000000
    (II) intel(0): TV_CSC_V: 0x00000000
    (II) intel(0): TV_CSC_V2: 0x00000000
    (II) intel(0): TV_CLR_KNOBS: 0x00000000
    (II) intel(0): TV_CLR_LEVEL: 0x00000000
    (II) intel(0): TV_H_CTL_1: 0x00000000
    (II) intel(0): TV_H_CTL_2: 0x00000000
    (II) intel(0): TV_H_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_1: 0x00000000
    (II) intel(0): TV_V_CTL_2: 0x00000000
    (II) intel(0): TV_V_CTL_3: 0x00000000
    (II) intel(0): TV_V_CTL_4: 0x00000000
    (II) intel(0): TV_V_CTL_5: 0x00000000
    (II) intel(0): TV_V_CTL_6: 0x00000000
    (II) intel(0): TV_V_CTL_7: 0x00000000
    (II) intel(0): TV_SC_CTL_1: 0x00000000
    (II) intel(0): TV_SC_CTL_2: 0x00000000
    (II) intel(0): TV_SC_CTL_3: 0x00000000
    (II) intel(0): TV_WIN_POS: 0x00000000
    (II) intel(0): TV_WIN_SIZE: 0x00000000
    (II) intel(0): TV_FILTER_CTL_1: 0x00000000
    (II) intel(0): TV_FILTER_CTL_2: 0x00000000
    (II) intel(0): TV_FILTER_CTL_3: 0x00000000
    (II) intel(0): TV_CC_CONTROL: 0x00000000
    (II) intel(0): TV_CC_DATA: 0x00000000
    (II) intel(0): TV_H_LUMA_0: 0x00000000
    (II) intel(0): TV_H_LUMA_59: 0x00000000
    (II) intel(0): TV_H_CHROMA_0: 0x00000000
    (II) intel(0): TV_H_CHROMA_59: 0x00000000
    (II) intel(0): FBC_CFB_BASE: 0x00000000
    (II) intel(0): FBC_LL_BASE: 0x00000000
    (II) intel(0): FBC_CONTROL: 0x00000000
    (II) intel(0): FBC_COMMAND: 0x00000000
    (II) intel(0): FBC_STATUS: 0x20000000
    (II) intel(0): FBC_CONTROL2: 0x00000000
    (II) intel(0): FBC_FENCE_OFF: 0x00000000
    (II) intel(0): FBC_MOD_NUM: 0x00000000
    (II) intel(0): MI_MODE: 0x00000000
    (II) intel(0): MI_ARB_STATE: 0x00000000
    (II) intel(0): MI_RDRET_STATE: 0x00000000
    (II) intel(0): ECOSKPD: 0x00000307
    (II) intel(0): DP_B: 0x00000000
    (II) intel(0): DPB_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPB_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_C: 0x00000000
    (II) intel(0): DPC_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPC_AUX_CH_DATA5: 0x00000000
    (II) intel(0): DP_D: 0x00000000
    (II) intel(0): DPD_AUX_CH_CTL: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA1: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA2: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA3: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA4: 0x00000000
    (II) intel(0): DPD_AUX_CH_DATA5: 0x00000000
    (II) intel(0): FENCE START 0: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 0: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 1: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 1: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 2: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 2: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 3: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 3: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 4: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 4: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 5: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 5: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 6: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 6: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 7: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 7: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 8: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 8: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 9: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 9: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 10: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 10: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 11: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 11: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 12: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 12: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 13: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 13: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 14: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 14: 0x00000000 ( 0x00000000 end)
    (II) intel(0): FENCE START 15: 0x00000000 (disabled, X tile walk, 0 pitch, 0x00000000 start)
    (II) intel(0): FENCE END 15: 0x00000000 ( 0x00000000 end)
    (II) intel(0): pipe A dot 25153 n 2 m1 18 m2 7 p1 13 p2 4
    (II) intel(0): pipe B dot 50571 n 2 m1 20 m2 6 p1 2 p2 14
    (II) intel(0): DumpRegsEnd
    (II) intel(0): xf86UnbindGARTMemory: unbind key 0
    (II) intel(0): xf86UnbindGARTMemory: unbind key 1
    (II) intel(0): xf86UnbindGARTMemory: unbind key 2
    (II) intel(0): xf86UnbindGARTMemory: unbind key 3
    (II) intel(0): xf86UnbindGARTMemory: unbind key 4
    (II) intel(0): xf86UnbindGARTMemory: unbind key 5
    (II) intel(0): xf86UnbindGARTMemory: unbind key 6
    (WW) intel(0): drmDropMaster failed: Unknown error 4294967295

  • I'm having trouble instaling a printer driver for my Canon MG5220. I downloaded the latest printer driver from the Canon website (10.67.1.0) and installed it on my Intel iMac. It said the installation was sucessful, but when I try to add a printer, no go.

    I'm having trouble instaling a printer driver for my Canon MG5220. I downloaded the latest printer driver from the Canon website (10.67.1.0) and installed it on my Intel iMac. It said the installation was sucessful, but when I try to add a printer, no go. The printer does'nt show up. I'm fairly new to the Mac, after switching from windows. I'm running Snow Leopard 10.6.8.

    Hold down the option key and select
     ▹ System Information...
    from the menu bar. In the window that opens, select
    Hardware ▹ USB
    from the list on the left. On the right you should now see a list of all connected USB devices, as well as some built-in components. Is the device shown?

  • How do I link in a Fortran Compiler into MatrixX/Sy​stembuild ?

    We currently use MatrixX and have Visual C++ ver 5 installed. I would like to add a Fortran compiler to the system. How do I get MatrixX to point to the fortran compiler ? Are there environmental variables I need to set ?

    I believe that there are several things that you will need to do. I am checking on them since I did not find a lot explicit in the manual.
    First, Like the C++ compiler, I believe that you will need to set the environment variables for the Compiler path, lib and include. This will enable the compiler to be called from the command line as is the C++ Compiler. There are probably instructions with the compiler on how to do this operation.
    I believe that the compatible compiler is the Visiual FORTRAN from Microsoft. Version 6 maybe.
    Second, you may need to take a look at the makefile.mk and ensure that the appropriate changes are made.
    Finally, I think you need to call the fortran function from a C wrapper, appropriately
    configuring the User Code Block.
    Again, I hope that I hear some more definitive information back from whom I asked, once I do I'll let you know.
    There are some example files attached passed to me from a user "Chris" in Canada.
    Garrett Thurston
    [email protected]
    Phone: 781.993.5540
    Attachments:
    sa_user.c ‏3 KB
    SA_USRF.f ‏4 KB
    Makefile.mk ‏6 KB

  • Im trying to install windows 7 in on my macbook pro, i thought it just install like intel based PC, so i use windows 7 DVD, i format the harddisk, and installation failed. When i reboot, OS X is missing, because i've format my harddisk. So what should ido

    Im trying to install windows 7 in on my macbook pro, i thought it just install like intel based PC, so i use windows 7 DVD, i format the harddisk, and installation failed. When i reboot, OS X is missing, because i've format my harddisk. So what should i do to make my MBP is with windows 7

    Thanks for all of your help!  Big time!
    Guys, I been in the business working on PC and MAC for years. So I am not green at this, I was looking for some kind of option to get past the boot loader..  Which is failing. 
    I know how to boot into these modes.. Done tons of research before posting and couldn't find anything.
    It will not go into  Internet Recovery, or any thing else.  I hear the sound .. then that is it.. I get nothing else..
    I have tried clearing the NVRAM which is Option + Command + P + R
    Still nothing..
    So I thought I would try here to see if maybe there was some trick out there someone might know of that would work.
    What else guys?  I am hitting th keys right..

  • Fortran Compiler Bug? USE statement renaming

    The Fortran compiler
    f90: Sun Fortran 95 8.2 Patch 121020-05 2006/12/08
    complain, incorrectly I believe, about a renaming in a USE statement. Here is the source code:
    MODULE mod
    INTEGER :: m
    CONTAINS
    SUBROUTINE sub_mod(m1,x)
    INTEGER, INTENT(in) :: m1
    REAL :: x(m)
    x = 3.
    END SUBROUTINE sub_mod
    END MODULE mod
    SUBROUTINE sub(m,isum)
    USE mod, mod_m => m
    INTEGER :: m, isum
    isum = m + mod_m
    RETURN
    END
    The compiler says:
    f90 -c LStest16.f
    USE mod, mod_m => m
    ^
    "LStest16.f", Line = 12, Column = 11: ERROR: "M" is the name of a dummy argument to program unit "SUB", therefore it must not be use associated from module "MOD".
    ^
    "LStest16.f", Line = 12, Column = 11: ERROR: "M" has been use associated from module "MOD" and at least one more module. It must not be referenced.
    f90comp: 16 SOURCE LINES
    f90comp: 2 ERRORS, 0 WARNINGS, 0 OTHER MESSAGES, 0 ANSI
    Note that changing from
    REAL :: x(m)
    to
    REAL :: x(m1)
    in the sixth line makes the compiler happy.
    Seems odd to me.

    It looks like a bug. I'll have someone look into it.
    Bob Corbett

  • I am upgrading from Tiger to SL in a MCBPro with 2 gb ram and an intel chip and I get the following notice:  Installation failed.... THE INSTALLER COULD NOT COPY THE NCESSARY SUPPORT FILES. Any help is apprciated

    I am upgrading from Tiger to SL in a MCBPro with 2 gb ram and an intel chip and I get the following notice:  Installation failed.... THE INSTALLER COULD NOT COPY THE NCESSARY SUPPORT FILES. Any help is appreciated...

    Yes.   I've found that works best.  Especially if the drive is external, since external connections are typically slower, and Spotlight loves to eat up space going back and forth.   Time Machine will eat up as much space as it can, and typically needs drives at least twice the size of the original hard drive that is being backed up, if being backed up in full.   So unfortunately there is a lot of empty space that is needed for smooth operation.

Maybe you are looking for