[SLVD] force using /usr/lib/xorg/modules/updates/extensions/libglx.so

Latest versions of catalyst bring powerXpress support - it means that we can now switch between discreet AMD gfx driver and integrated intel gfx driver (and maybe also switch between catalyst and ati oss driver).
I'm working on it now, unfortunatelly it's not that easy to implement in a right way in Arch. There's no way without doing some ugly tricks (like creating /usr/X11R6 dir). Although i must say that i almost succeeded.
Yes, i know that /usr/X11R6/lib is obsolete and not supported by Arch, but i must to place catalyst's libGL.so somewhere so it wouldn't conflict with libgl's libGL.so (+ more important is to be able to update libgl package without problems), and that directory is looking good.
Basically this whole powerXpress suport = linking libGL and libglx libraries into right place. Let me show you some functions:
switching libGL:
function switch_to_amd() {
ln -snf /usr/X11R6/lib/fglrx/fglrx-libGL.so.1.2 \
/usr/X11R6/lib/libGL.so.1.2
ln -snf libGL.so.1.2 /usr/X11R6/lib/libGL.so.1
ln -snf libGL.so.1 /usr/X11R6/lib/libGL.so
ldconfig /usr/X11R6/lib
function switch_to_intel() {
ln -snf /usr/lib/libGL.so.1.2 \
/usr/X11R6/lib/libGL.so.1.2
ln -snf libGL.so.1.2 /usr/X11R6/lib/libGL.so.1
ln -snf libGL.so.1 /usr/X11R6/lib/libGL.so
ldconfig /usr/X11R6/lib
switching libglx:
function switch_to_amd() {
ln -snf /usr/lib/xorg/modules/updates/extensions/fglrx/fglrx-libglx.so \
/usr/lib/xorg/modules/updates/extensions/libglx.so
function switch_to_intel() {
ln -snf /usr/lib/xorg/modules/extensions/libglx.so \
/usr/lib/xorg/modules/updates/extensions/libglx.so
I've created /etc/ld.so.conf.d/catalyst.conf with:
/usr/X11R6/lib
inside. I've also added /usr/X11R6/lib into PATH in /etc/profile in 1st place (just in case).
And it's working fine (i mean catalyst is working fine) untill i will install libgl (so it's not fine)... After restart, when running X server screen goes blank and i cannot do anything (even when it's switched to amd). /var/log/Xorg.0.log looks fine, no errors, it's longer than usuall with those lines:
[ 2515.883] (II) Power Button: Close
[ 2515.883] (II) UnloadModule: "evdev"
[ 2515.883] (II) Unloading evdev
[ 2515.895] (II) Power Button: Close
[ 2515.895] (II) UnloadModule: "evdev"
[ 2515.895] (II) Unloading evdev
[ 2515.911] (II) My keyboard: Close
[ 2515.911] (II) UnloadModule: "evdev"
[ 2515.911] (II) Unloading evdev
[ 2515.926] (II) My keyboard: Close
[ 2515.926] (II) UnloadModule: "evdev"
[ 2515.926] (II) Unloading evdev
[ 2515.942] (II) My Mouse: Close
[ 2515.942] (II) UnloadModule: "evdev"
[ 2515.942] (II) Unloading evdev
[ 2515.947] (II) fglrx(0): Shutdown CMMQS
[ 2515.948] (II) fglrx(0): [uki] removed 1 reserved context for kernel
[ 2515.948] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x2000 at 0x7fdc4f862000
[ 2515.962] (II) fglrx(0): Interrupt handler Shutdown.
but it doesn't look relevant.
I don't know is it:
- /usr/X11R6/lib that is chosen after /usr/lib
- OR /usr/lib/xorg/modules/updates/extensions/ that is chosen after /usr/lib/xorg/modules/extensions/  - i though that updates should be taken in 1st place by default
Maybe both of them?
Right now i'm thinking that this is the problem of /usr/X11R6/lib that need to be taken before /usr/lib, so my question is same as the question in topic of this post.
I will really appreciate any help.
Btw: there's only one file in /usr/X11R6/lib : /usr/X11R6/lib/fglrx/fglrx-libGL.so.1.2
+ there's only one file in /usr/lib/xorg/modules/updates/extensions : /usr/lib/xorg/modules/updates/extensions/fglrx/fglrx-libglx.so
I took this whole solution and scripts from SUSE (AMD's solution is really ugly). SUSE also doesn't like /usr/X11R6/lib, but they used it and there it seems to work. I mean i don't have SUSE, i just see their catalyst packaging script.
Last edited by Vi0L0 (2011-05-15 10:02:32)

Lone_Wolf wrote:
've installed libgl, then removed /usr/lib/libGL.so* and problem persist. Then i reinstalled libgl, and removed /usr/lib/xorg/modules/extensions/libglx.so - it was working fine...
This may be because of  a fallback option that if libglx.so is not found , xorg uses libglx.xorg .
But libglx.so owned by catalyst (/usr/lib/xorg/modules/updates/extensions/libglx.so) should be found, and is found if only libglx.so owned by libgl (/usr/lib/xorg/modules/extensions/libglx.so) is not present. And if the last one is absent i can see in Xorg.0.log that xserver/catalyst is using that one placed in updates dir, not libglx.xorg.
Now i removed libgl, and removed /usr/lib/xorg/modules/updates/extensions/libglx.so, so catalyst should got troubles, restart X and same problem: blank screen with only one char sign on top left corner: _
So obviously catalyst need that /usr/lib/xorg/modules/updates/extensions/libglx.so
I just don't know how to force using /usr/lib/xorg/modules/updates/extensions directory over /usr/lib/xorg/modules/extensions dir...
Maybe i need something like LD_PRELOAD or something.
This maybe not clear but what i'm trying to reach right now is to get catalyst working when libgl package is present, cuz it's looking like good begining.
Lone_Wolf wrote:It does look like xorg doesn't entirely folllow ldconfig / symbolic links , so i'm inclined to suggest to keep things as simple as possible and change only what's really necessary .
Ofcourse, i also don't like this whole /usr/X11R6/lib thing. Hell no, i even don't got intel gfx , i'm only trying to implement something that can be usefull for others.
And since SUSE know how to use /usr/lib/xorg/modules/updates/extensions directory over /usr/lib/xorg/modules/extensions i'm sure it's also possible in Arch. Maybe the right and only way is to change something in xserver compilation, i don't know. Right now i'm trying to do this in "easier" way.
Lone_Wolf wrote:
As your libraries have different names as the mesa ones :
place fglrx-libGL.so.1.2 in /usr/lib
put fglrx-libglx.so in /usr/lib/xorg/modules/extensions
for libgl only change the symbolic link just above the binary :  /usr/lib/libGL.so.1
for libglx change /usr/lib/xorg/modules/extensions/libglx.so
That ofcourse should work - since it will link to proper libs.
But it's not what i'm trying to reach : catalyst and libgl installed without conflicts.
Lone_Wolf wrote:If that works, you'll atleast know the switch is possible.
Just a mention: this whole linking thing isn't anything new, it was used by linux users for long time so such switch is possible (as i can see they used to use such linking as you suggested but imho it's bad way - it should to be done without pacman's conflicts), now ati is just trying to implement it by default.
This powerXpress support is still in developement, although i can see what way ati picked up, i'm trying to follow it and i'm pretty sure that it will work if i will follow it. The sooner - the better.

Similar Messages

  • LibGL error: dlopen /usr/lib/xorg/modules/dri//i915_dri.so failed

    Hello
    I don't have graphic acceleration in my Dell INSPEIRON 6400 laptop.
    I try this:
    http://wiki.archlinux.org/index.php/Intel_GMA_945
    except the 915resolution and then I still didn't have acceleration.
    $ LIBGL_DEBUG=verbose glxinfo
    name of display: :0.0
    libGL: XF86DRIGetClientDriverName: 1.7.4 i915 (screen 0)
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri//i915_dri.so
    libGL error: dlopen /usr/lib/xorg/modules/dri//i915_dri.so failed (/usr/lib/xorg/modules/dri//i915_dri.so: undefined symbol: _glapi_tls_Context)
    libGL error: unable to load driver: i915_dri.so
    display: :0 screen: 0
    Full log include lspci:
    http://www.shorttext.com/n0u6r
    thanks for your help
    Nadav

    byte wrote:Did you run pacman -Syu lately? What are your package versions? pacman -Q xf86-video-intel xorg-server
    $ pacman -Q xf86-video-intel xorg-server
    xf86-video-intel 2.1.1-2
    xorg-server 1.4-5
    $ sudo p -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    local database is up to date
    Last edited by nadavvin (2007-11-18 17:34:18)

  • Xorg fails with "/usr/lib/libexpat.so.1: invalid ELF header"

    After upgrade, Xorg fails with the following message:
    (EE) AIGLX error: dlopen of usr/lib/xorg/modules/dri/i965_dri.so failed (/usr/lib/libexpat.so.1: invalid ELF header)
    (EE) AIGLX: reverting to software rendering
    openbox: error while loading shared libraries: /usr/lib/libexpat.so.1: invalid ELF header
    (I also get en error about fbcon, fbdev modules, but have read that this is not actually an issue.)
    Thanks for any help.
    Last edited by marimo (2010-01-24 07:12:25)

    If it were different architectures, there would be an ELF class error. Assuming that all of the installed libraries are from the Arch repos, I'm betting that expat is corrupt. I would reinstall expat and see if that solves the problem.

  • Broken Xorg after update

    After I did system update (pacman -Suy on Sunday 22th from ftp://lysator.liu.se - official repository) the Xorg didn't started I just got the screen:
    /etc/profile: line1: n#: command not found
    /etc/profile: line1: thennfor: command not found
    /etc/profile: line1: dontest: command not found
    /etc/profile: line1: thenn: command not found
    some gdm-binary[1181]:WARNING: GdmDisplay: display lasted xxx seconds I had before update
    gdm-binary[1181]: WARNING: GdmLocalDisplayFactory:maximum number of X display failures reached: check X sever log for errors
    Before update I deleted the "/etc/profile.d/locale.sh" due to manual at archlinux.org.
    My Xorg.0.log is:
    [ 5616.505]
    X.Org X Server 1.11.1
    Release Date: 2011-09-24
    [ 5616.511] X Protocol Version 11, Revision 0
    [ 5616.513] Build Operating System: Linux 3.0-ARCH x86_64
    [ 5616.514] Current Operating System: Linux esprimo 3.0-ARCH #1 SMP PREEMPT Wed Oct 19 10:27:51 CEST 2011 x86_64
    [ 5616.517] Kernel command line: root=/dev/disk/by-uuid/5d093582-b21d-4a60-9376-258480024369 ro vga=864
    [ 5616.519] Build Date: 10 October 2011 08:55:30AM
    [ 5616.521]
    [ 5616.523] Current version of pixman: 0.22.2
    [ 5616.525] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 5616.529] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 5616.536] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 23 21:59:19 2011
    [ 5616.538] (==) Using config file: "/etc/X11/xorg.conf"
    [ 5616.540] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 5616.543] (==) ServerLayout "X.org Configured"
    [ 5616.543] (**) |-->Screen "Screen0" (0)
    [ 5616.543] (**) | |-->Monitor "Monitor0"
    [ 5616.543] (**) | |-->Device "Card0"
    [ 5616.543] (**) |-->Input Device "Mouse0"
    [ 5616.543] (**) |-->Input Device "Keyboard0"
    [ 5616.543] (**) |-->Input Device "SynapticsTouchpad"
    [ 5616.543] (==) Automatically adding devices
    [ 5616.543] (==) Automatically enabling devices
    [ 5616.543] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 5616.543] Entry deleted from font path.
    [ 5616.543] (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 5616.543] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 5616.543] (**) Extension "Composite" is enabled
    [ 5616.543] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 5616.543] (WW) Disabling Mouse0
    [ 5616.543] (WW) Disabling Keyboard0
    [ 5616.543] (II) Loader magic: 0x7ccae0
    [ 5616.543] (II) Module ABI versions:
    [ 5616.543] X.Org ANSI C Emulation: 0.4
    [ 5616.543] X.Org Video Driver: 11.0
    [ 5616.543] X.Org XInput driver : 13.0
    [ 5616.543] X.Org Server Extension : 6.0
    [ 5616.544] (--) PCI:*(0:0:2:0) 8086:2a02:1734:110e rev 3, Mem @ 0xfc000000/1048576, 0xd0000000/268435456, I/O @ 0x00001800/8
    [ 5616.544] (--) PCI: (0:0:2:1) 8086:2a03:1734:110e rev 3, Mem @ 0xfc100000/1048576
    [ 5616.545] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 5616.545] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    [ 5616.545] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    [ 5616.545] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 5616.545] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    [ 5616.545] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    [ 5616.545] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    [ 5616.545] (II) LoadModule: "dri2"
    [ 5616.545] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 5616.545] (II) Module dri2: vendor="X.Org Foundation"
    [ 5616.545] compiled for 1.11.1, module version = 1.2.0
    [ 5616.545] ABI class: X.Org Server Extension, version 6.0
    [ 5616.545] (II) Loading extension DRI2
    [ 5616.545] (II) LoadModule: "dri"
    [ 5616.545] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 5616.545] (II) Module dri: vendor="X.Org Foundation"
    [ 5616.545] compiled for 1.11.1, module version = 1.0.0
    [ 5616.545] ABI class: X.Org Server Extension, version 6.0
    [ 5616.545] (II) Loading extension XFree86-DRI
    [ 5616.545] (II) LoadModule: "dbe"
    [ 5616.546] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 5616.546] (II) Module dbe: vendor="X.Org Foundation"
    [ 5616.546] compiled for 1.11.1, module version = 1.0.0
    [ 5616.546] Module class: X.Org Server Extension
    [ 5616.546] ABI class: X.Org Server Extension, version 6.0
    [ 5616.546] (II) Loading extension DOUBLE-BUFFER
    [ 5616.546] (II) LoadModule: "extmod"
    [ 5616.546] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 5616.546] (II) Module extmod: vendor="X.Org Foundation"
    [ 5616.546] compiled for 1.11.1, module version = 1.0.0
    [ 5616.546] Module class: X.Org Server Extension
    [ 5616.546] ABI class: X.Org Server Extension, version 6.0
    [ 5616.546] (II) Loading extension MIT-SCREEN-SAVER
    [ 5616.546] (II) Loading extension XFree86-VidModeExtension
    [ 5616.546] (II) Loading extension XFree86-DGA
    [ 5616.546] (II) Loading extension DPMS
    [ 5616.546] (II) Loading extension XVideo
    [ 5616.546] (II) Loading extension XVideo-MotionCompensation
    [ 5616.546] (II) Loading extension X-Resource
    [ 5616.546] (II) LoadModule: "record"
    [ 5616.546] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 5616.546] (II) Module record: vendor="X.Org Foundation"
    [ 5616.546] compiled for 1.11.1, module version = 1.13.0
    [ 5616.546] Module class: X.Org Server Extension
    [ 5616.546] ABI class: X.Org Server Extension, version 6.0
    [ 5616.546] (II) Loading extension RECORD
    [ 5616.546] (II) LoadModule: "glx"
    [ 5616.546] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 5616.547] (II) Module glx: vendor="X.Org Foundation"
    [ 5616.547] compiled for 1.11.1, module version = 1.0.0
    [ 5616.547] ABI class: X.Org Server Extension, version 6.0
    [ 5616.547] (==) AIGLX enabled
    [ 5616.547] (II) Loading extension GLX
    [ 5616.547] (II) LoadModule: "synaptics"
    [ 5616.547] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 5616.547] (II) Module synaptics: vendor="X.Org Foundation"
    [ 5616.547] compiled for 1.11.0, module version = 1.5.0
    [ 5616.547] Module class: X.Org XInput Driver
    [ 5616.547] ABI class: X.Org XInput driver, version 13.0
    [ 5616.547] (II) LoadModule: "intel"
    [ 5616.547] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 5616.547] (II) Module intel: vendor="X.Org Foundation"
    [ 5616.547] compiled for 1.10.99.902, module version = 2.16.0
    [ 5616.547] Module class: X.Org Video Driver
    [ 5616.547] ABI class: X.Org Video Driver, version 11.0
    [ 5616.547] (II) LoadModule: "synaptics"
    [ 5616.547] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 5616.547] (II) Module synaptics: vendor="X.Org Foundation"
    [ 5616.547] compiled for 1.11.0, module version = 1.5.0
    [ 5616.547] Module class: X.Org XInput Driver
    [ 5616.547] ABI class: X.Org XInput driver, version 13.0
    [ 5616.547] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
    [ 5616.548] (--) using VT number 7
    [ 5616.559] (EE) No devices detected.
    [ 5616.559]
    Fatal server error:
    [ 5616.559] no screens found
    [ 5616.559]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 5616.559] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 5616.559]
    I tried to generate and use new xorg.conf with "Xorg configure" but it didn't help. I tried the copy back the deleted locale.sh file, but it didn;t help either. When I deleted the corg.conf, the starting process was successfull in way I got to gdm login window, but I was unable to login due to infunction keyboard and mouse also. Did somebody also have or had the problem like this? Can somebody help?
    Thanks

    For better investigation I add also "messages.log". I do not have the command "xorgcfg" available on my system. As I understood from "x.org.wiki" the xorgcfg command is just the graphic configuration tool with same function as Xorg -configure.
    Oct 25 22:25:57 esprimo shutdown[3995]: shutting down for system reboot
    Oct 25 22:25:57 esprimo init: Switching to runlevel: 6
    Oct 25 22:25:58 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/bluetooth/bluetooth.ko': No such file or directory
    Oct 25 22:25:58 esprimo laptop-mode: Laptop mode
    Oct 25 22:25:58 esprimo laptop-mode: disabled, not active
    Oct 25 22:25:59 esprimo kernel: [ 190.198058] EXT4-fs (sda4): re-mounted. Opts: commit=0
    Oct 25 22:25:59 esprimo acpid: exiting
    Oct 25 22:25:59 esprimo NetworkManager[701]: <info> caught signal 15, shutting down normally.
    Oct 25 22:25:59 esprimo NetworkManager[701]: <warn> quit request received, terminating...
    Oct 25 22:25:59 esprimo NetworkManager[701]: <info> exiting (success)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Initializing cgroup subsys cpu
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Linux version 3.0-ARCH (tobias@T-POWA-LX) (gcc version 4.6.1 20110819 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 19 10:27:51 CEST 2011
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Command line: root=/dev/disk/by-uuid/5d093582-b21d-4a60-9376-258480024369 ro vga=864
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-provided physical RAM map:
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6df000 (ACPI NVS)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000bf6df000 - 00000000c0000000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] NX (Execute Disable) protection: active
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] DMI present.
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] No AGP bridge found
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] found SMP MP-table at [ffff8800000f7ab0] f7ab0
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] RAMDISK: 37dd2000 - 37ff0000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: RSDP 00000000000f78b0 00024 (v02 PTLTD )
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: XSDT 00000000bf6d28ce 00094 (v01 FSC PC 06040000 LTP 00000000)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: FACP 00000000bf6dbbd2 000F4 (v03 INTEL CRESTLNE 06040000 ALAN 00000001)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: DSDT 00000000bf6d3e38 07D26 (v02 WS C46_____ 06040000 MSFT 03000000)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: FACS 00000000bf6defc0 00040
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: APIC 00000000bf6dbcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: HPET 00000000bf6dbd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: MCFG 00000000bf6dbd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: TCPA 00000000bf6dbda2 00032 (v01 Intel CRESTLN 06040000 00005A52)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: TMOR 00000000bf6dbdd4 00026 (v01 PTLTD 06040000 PTL 00000003)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: SLIC 00000000bf6dbdfa 00176 (v01 FSC PC 06040000 PTL 00000001)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: APIC 00000000bf6dbf70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: BOOT 00000000bf6dbfd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d3b5b 002DD (v01 SataRe SataAhci 00001000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d39be 0019D (v01 BrtRef DD01BRT 00001000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d2eee 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d2e48 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d2962 004E6 (v01 PmRef CpuPm 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify [email protected]
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: DMI detected: Fujitsu Siemens
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] No NUMA configuration found
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Faking a node at 0000000000000000-0000000140000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] NODE_DATA [000000013fffb000 - 000000013fffffff]
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Zone PFN ranges:
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Normal 0x00100000 -> 0x00140000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Movable zone start PFN for each node
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] early_node_map[3] active PFN ranges
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] 0: 0x00000100 -> 0x000bf6d0
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] 0: 0x00100000 -> 0x00140000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000bf6d0000 - 00000000bf6df000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000bf6df000 - 00000000c0000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec10000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fed00000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed14000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed1a000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed90000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fee00000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88013fc00000 s78464 r8192 d23936 u1048576
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1028186
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Policy zone: Normal
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/5d093582-b21d-4a60-9376-258480024369 ro vga=864
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Checking aperture...
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] No AGP bridge found
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Memory: 4048952k/5242880k available (4066k kernel code, 1058436k absent, 135492k reserved, 3302k data, 712k init)
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] NR_IRQS:2304
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Extended CMOS year: 2000
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Console: colour dummy device 80x25
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] console [tty0] enabled
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] allocated 33554432 bytes of page_cgroup
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Fast TSC calibration using PIT
    Oct 25 23:11:51 esprimo kernel: [ 0.000000] Detected 1995.108 MHz processor.
    Oct 25 23:11:51 esprimo kernel: [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.47 BogoMIPS (lpj=6650360)
    Oct 25 23:11:51 esprimo kernel: [ 0.003343] pid_max: default: 32768 minimum: 301
    Oct 25 23:11:51 esprimo kernel: [ 0.003460] Security Framework initialized
    Oct 25 23:11:51 esprimo kernel: [ 0.003467] AppArmor: AppArmor disabled by boot time parameter
    Oct 25 23:11:51 esprimo kernel: [ 0.003888] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.006762] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.007915] Mount-cache hash table entries: 256
    Oct 25 23:11:51 esprimo kernel: [ 0.008371] Initializing cgroup subsys cpuacct
    Oct 25 23:11:51 esprimo kernel: [ 0.008407] Initializing cgroup subsys memory
    Oct 25 23:11:51 esprimo kernel: [ 0.008427] Initializing cgroup subsys devices
    Oct 25 23:11:51 esprimo kernel: [ 0.008429] Initializing cgroup subsys freezer
    Oct 25 23:11:51 esprimo kernel: [ 0.008431] Initializing cgroup subsys net_cls
    Oct 25 23:11:51 esprimo kernel: [ 0.008433] Initializing cgroup subsys blkio
    Oct 25 23:11:51 esprimo kernel: [ 0.008493] CPU: Physical Processor ID: 0
    Oct 25 23:11:51 esprimo kernel: [ 0.008494] CPU: Processor Core ID: 0
    Oct 25 23:11:51 esprimo kernel: [ 0.008497] mce: CPU supports 6 MCE banks
    Oct 25 23:11:51 esprimo kernel: [ 0.008511] using mwait in idle threads.
    Oct 25 23:11:51 esprimo kernel: [ 0.009669] ACPI: Core revision 20110413
    Oct 25 23:11:51 esprimo kernel: [ 0.016681] ftrace: allocating 16144 entries in 64 pages
    Oct 25 23:11:51 esprimo kernel: [ 0.020399] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Oct 25 23:11:51 esprimo kernel: [ 0.054610] CPU0: Intel(R) Core(TM)2 Duo CPU T7300 @ 2.00GHz stepping 0a
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] PEBS disabled due to CPU errata.
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... version: 2
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... bit width: 40
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... generic registers: 2
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... value mask: 000000ffffffffff
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... max period: 000000007fffffff
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... fixed-purpose events: 3
    Oct 25 23:11:51 esprimo kernel: [ 0.056663] ... event mask: 0000000700000003
    Oct 25 23:11:51 esprimo kernel: [ 0.073444] NMI watchdog enabled, takes one hw-pmu counter.
    Oct 25 23:11:51 esprimo kernel: [ 0.100007] Booting Node 0, Processors #1 Ok.
    Oct 25 23:11:51 esprimo kernel: [ 0.196683] NMI watchdog enabled, takes one hw-pmu counter.
    Oct 25 23:11:51 esprimo kernel: [ 0.203325] Brought up 2 CPUs
    Oct 25 23:11:51 esprimo kernel: [ 0.203328] Total of 2 processors activated (7983.70 BogoMIPS).
    Oct 25 23:11:51 esprimo kernel: [ 0.204848] devtmpfs: initialized
    Oct 25 23:11:51 esprimo kernel: [ 0.204848] PM: Registering ACPI NVS region at bf6d0000 (61440 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.207202] print_constraints: dummy:
    Oct 25 23:11:51 esprimo kernel: [ 0.207292] NET: Registered protocol family 16
    Oct 25 23:11:51 esprimo kernel: [ 0.207417] ACPI: bus type pci registered
    Oct 25 23:11:51 esprimo kernel: [ 0.207589] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Oct 25 23:11:51 esprimo kernel: [ 0.207592] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Oct 25 23:11:51 esprimo kernel: [ 0.257765] PCI: Using configuration type 1 for base access
    Oct 25 23:11:51 esprimo kernel: [ 0.258260] bio: create slab <bio-0> at 0
    Oct 25 23:11:51 esprimo kernel: [ 0.258260] ACPI: Deleted _OSI(Windows 2006)
    Oct 25 23:11:51 esprimo kernel: [ 0.258260] ACPI: Deleted _OSI(Windows 2006 SP1)
    Oct 25 23:11:51 esprimo kernel: [ 0.258260] ACPI: Deleted _OSI(Windows 2006 SP2)
    Oct 25 23:11:51 esprimo kernel: [ 0.262599] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Oct 25 23:11:51 esprimo kernel: [ 0.263333] ACPI: SSDT 00000000bf6d367c 0027A (v01 PmRef Cpu0Ist 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.263671] ACPI: Dynamic OEM Table Load:
    Oct 25 23:11:51 esprimo kernel: [ 0.263674] ACPI: SSDT (null) 0027A (v01 PmRef Cpu0Ist 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.263783] ACPI: SSDT 00000000bf6d314d 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.264104] ACPI: Dynamic OEM Table Load:
    Oct 25 23:11:51 esprimo kernel: [ 0.264107] ACPI: SSDT (null) 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.264312] ACPI: SSDT 00000000bf6d38f6 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.264644] ACPI: Dynamic OEM Table Load:
    Oct 25 23:11:51 esprimo kernel: [ 0.264648] ACPI: SSDT (null) 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.264732] ACPI: SSDT 00000000bf6d35f7 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.265057] ACPI: Dynamic OEM Table Load:
    Oct 25 23:11:51 esprimo kernel: [ 0.265060] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20060912)
    Oct 25 23:11:51 esprimo kernel: [ 0.270072] ACPI: Interpreter enabled
    Oct 25 23:11:51 esprimo kernel: [ 0.270075] ACPI: (supports S0 S3 S4 S5)
    Oct 25 23:11:51 esprimo kernel: [ 0.270095] ACPI: Using IOAPIC for interrupt routing
    Oct 25 23:11:51 esprimo kernel: [ 0.284153] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Oct 25 23:11:51 esprimo kernel: [ 0.284321] ACPI: No dock devices found.
    Oct 25 23:11:51 esprimo kernel: [ 0.284323] HEST: Table not found.
    Oct 25 23:11:51 esprimo kernel: [ 0.284326] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Oct 25 23:11:51 esprimo kernel: [ 0.284631] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359)
    Oct 25 23:11:51 esprimo kernel: [ 0.284638] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node ffff8801392412f8), AE_NOT_FOUND (20110413/psparse-536)
    Oct 25 23:11:51 esprimo kernel: [ 0.284650] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Oct 25 23:11:51 esprimo kernel: [ 0.288514] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
    Oct 25 23:11:51 esprimo kernel: [ 0.288521] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO
    Oct 25 23:11:51 esprimo kernel: [ 0.288528] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0068 (mask 0007)
    Oct 25 23:11:51 esprimo kernel: [ 0.289290] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Oct 25 23:11:51 esprimo kernel: [ 0.289305] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    Oct 25 23:11:51 esprimo kernel: [ 0.289391] pci 0000:00:1c.1: PCI bridge to [bus 04-05]
    Oct 25 23:11:51 esprimo kernel: [ 0.293339] pci 0000:00:1c.2: PCI bridge to [bus 08-09]
    Oct 25 23:11:51 esprimo kernel: [ 0.293424] pci 0000:00:1c.3: PCI bridge to [bus 0a-0b]
    Oct 25 23:11:51 esprimo kernel: [ 0.293532] pci 0000:00:1e.0: PCI bridge to [bus 10-10] (subtractive decode)
    Oct 25 23:11:51 esprimo kernel: [ 0.293990] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359)
    Oct 25 23:11:51 esprimo kernel: [ 0.293996] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node ffff8801392412f8), AE_NOT_FOUND (20110413/psparse-536)
    Oct 25 23:11:51 esprimo kernel: [ 0.294007] pci0000:00: Requesting ACPI _OSC control (0x1d)
    Oct 25 23:11:51 esprimo kernel: [ 0.294025] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359)
    Oct 25 23:11:51 esprimo kernel: [ 0.294031] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node ffff8801392412f8), AE_NOT_FOUND (20110413/psparse-536)
    Oct 25 23:11:51 esprimo kernel: [ 0.294041] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    Oct 25 23:11:51 esprimo kernel: [ 0.294043] ACPI _OSC control for PCIe not granted, disabling ASPM
    Oct 25 23:11:51 esprimo kernel: [ 0.304586] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Oct 25 23:11:51 esprimo kernel: [ 0.304636] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Oct 25 23:11:51 esprimo kernel: [ 0.304687] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Oct 25 23:11:51 esprimo kernel: [ 0.304735] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Oct 25 23:11:51 esprimo kernel: [ 0.304782] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Oct 25 23:11:51 esprimo kernel: [ 0.304830] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Oct 25 23:11:51 esprimo kernel: [ 0.304877] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Oct 25 23:11:51 esprimo kernel: [ 0.304924] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Oct 25 23:11:51 esprimo kernel: [ 0.305022] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Oct 25 23:11:51 esprimo kernel: [ 0.305036] vgaarb: loaded
    Oct 25 23:11:51 esprimo kernel: [ 0.305038] vgaarb: bridge control possible 0000:00:02.0
    Oct 25 23:11:51 esprimo kernel: [ 0.305138] PCI: Using ACPI for IRQ routing
    Oct 25 23:11:51 esprimo kernel: [ 0.317109] NetLabel: Initializing
    Oct 25 23:11:51 esprimo kernel: [ 0.317112] NetLabel: domain hash size = 128
    Oct 25 23:11:51 esprimo kernel: [ 0.317113] NetLabel: protocols = UNLABELED CIPSOv4
    Oct 25 23:11:51 esprimo kernel: [ 0.317129] NetLabel: unlabeled traffic allowed by default
    Oct 25 23:11:51 esprimo kernel: [ 0.317143] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Oct 25 23:11:51 esprimo kernel: [ 0.317148] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Oct 25 23:11:51 esprimo kernel: [ 0.317153] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Oct 25 23:11:51 esprimo kernel: [ 0.326665] Switching to clocksource hpet
    Oct 25 23:11:51 esprimo kernel: [ 0.329899] Switched to NOHz mode on CPU #0
    Oct 25 23:11:51 esprimo kernel: [ 0.329951] Switched to NOHz mode on CPU #1
    Oct 25 23:11:51 esprimo kernel: [ 0.333983] pnp: PnP ACPI init
    Oct 25 23:11:51 esprimo kernel: [ 0.334002] ACPI: bus type pnp registered
    Oct 25 23:11:51 esprimo kernel: [ 0.334614] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.334617] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.334621] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.334624] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.334627] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.334630] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.334633] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.335318] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.335508] system 00:06: [io 0x0800-0x080f] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.335511] system 00:06: [io 0x1000-0x107f] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.335514] system 00:06: [io 0x1180-0x11bf] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.335517] system 00:06: [io 0xfe00] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.335520] system 00:06: [mem 0xff800000-0xff800fff] has been reserved
    Oct 25 23:11:51 esprimo kernel: [ 0.337695] pnp: PnP ACPI: found 10 devices
    Oct 25 23:11:51 esprimo kernel: [ 0.337697] ACPI: ACPI bus type pnp unregistered
    Oct 25 23:11:51 esprimo kernel: [ 0.344177] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0000000-0xc00000ff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344184] pci 0000:00:1f.3: BAR 0: set to [mem 0xc0000000-0xc00000ff] (PCI address [0xc0000000-0xc00000ff])
    Oct 25 23:11:51 esprimo kernel: [ 0.344188] pci 0000:02:00.0: BAR 6: assigned [mem 0xf0000000-0xf001ffff pref]
    Oct 25 23:11:51 esprimo kernel: [ 0.344192] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    Oct 25 23:11:51 esprimo kernel: [ 0.344196] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344203] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344209] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
    Oct 25 23:11:51 esprimo kernel: [ 0.344217] pci 0000:00:1c.1: PCI bridge to [bus 04-05]
    Oct 25 23:11:51 esprimo kernel: [ 0.344221] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344228] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344233] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref]
    Oct 25 23:11:51 esprimo kernel: [ 0.344242] pci 0000:00:1c.2: PCI bridge to [bus 08-09]
    Oct 25 23:11:51 esprimo kernel: [ 0.344246] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344253] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344258] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref]
    Oct 25 23:11:51 esprimo kernel: [ 0.344267] pci 0000:00:1c.3: PCI bridge to [bus 0a-0b]
    Oct 25 23:11:51 esprimo kernel: [ 0.344270] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344277] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff]
    Oct 25 23:11:51 esprimo kernel: [ 0.344283] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref]
    Oct 25 23:11:51 esprimo kernel: [ 0.344292] pci 0000:00:1e.0: PCI bridge to [bus 10-10]
    Oct 25 23:11:51 esprimo kernel: [ 0.344294] pci 0000:00:1e.0: bridge window [io disabled]
    Oct 25 23:11:51 esprimo kernel: [ 0.344300] pci 0000:00:1e.0: bridge window [mem disabled]
    Oct 25 23:11:51 esprimo kernel: [ 0.344305] pci 0000:00:1e.0: bridge window [mem pref disabled]
    Oct 25 23:11:51 esprimo kernel: [ 0.344324] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Oct 25 23:11:51 esprimo kernel: [ 0.344340] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Oct 25 23:11:51 esprimo kernel: [ 0.344354] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Oct 25 23:11:51 esprimo kernel: [ 0.344369] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    Oct 25 23:11:51 esprimo kernel: [ 0.344515] NET: Registered protocol family 2
    Oct 25 23:11:51 esprimo kernel: [ 0.344736] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.346140] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.350539] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.351125] TCP: Hash tables configured (established 524288 bind 65536)
    Oct 25 23:11:51 esprimo kernel: [ 0.351128] TCP reno registered
    Oct 25 23:11:51 esprimo kernel: [ 0.351140] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.351190] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.351517] NET: Registered protocol family 1
    Oct 25 23:11:51 esprimo kernel: [ 0.351792] Unpacking initramfs...
    Oct 25 23:11:51 esprimo kernel: [ 0.386851] Freeing initrd memory: 2168k freed
    Oct 25 23:11:51 esprimo kernel: [ 0.387649] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Oct 25 23:11:51 esprimo kernel: [ 0.387653] Placing 64MB software IO TLB between ffff8800bb6cb000 - ffff8800bf6cb000
    Oct 25 23:11:51 esprimo kernel: [ 0.387656] software IO TLB at phys 0xbb6cb000 - 0xbf6cb000
    Oct 25 23:11:51 esprimo kernel: [ 0.387684] Simple Boot Flag at 0x36 set to 0x1
    Oct 25 23:11:51 esprimo kernel: [ 0.388126] audit: initializing netlink socket (disabled)
    Oct 25 23:11:51 esprimo kernel: [ 0.388141] type=2000 audit(1319577100.386:1): initialized
    Oct 25 23:11:51 esprimo kernel: [ 0.400859] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Oct 25 23:11:51 esprimo kernel: [ 0.426083] VFS: Disk quotas dquot_6.5.2
    Oct 25 23:11:51 esprimo kernel: [ 0.426249] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Oct 25 23:11:51 esprimo kernel: [ 0.426431] msgmni has been set to 7912
    Oct 25 23:11:51 esprimo kernel: [ 0.426698] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    Oct 25 23:11:51 esprimo kernel: [ 0.426740] io scheduler noop registered
    Oct 25 23:11:51 esprimo kernel: [ 0.426743] io scheduler deadline registered
    Oct 25 23:11:51 esprimo kernel: [ 0.426795] io scheduler cfq registered (default)
    Oct 25 23:11:51 esprimo kernel: [ 0.427554] vesafb: mode is 1280x800x8, linelength=1280, pages=6
    Oct 25 23:11:51 esprimo kernel: [ 0.427556] vesafb: scrolling: redraw
    Oct 25 23:11:51 esprimo kernel: [ 0.427559] vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Oct 25 23:11:51 esprimo kernel: [ 0.428029] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90011100000, using 2000k, total 7616k
    Oct 25 23:11:51 esprimo kernel: [ 0.436372] Console: switching to colour frame buffer device 160x50
    Oct 25 23:11:51 esprimo kernel: [ 0.444631] fb0: VESA VGA frame buffer device
    Oct 25 23:11:51 esprimo kernel: [ 0.444651] ERST: Table is not found!
    Oct 25 23:11:51 esprimo kernel: [ 0.444705] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Oct 25 23:11:51 esprimo kernel: [ 0.556935] Linux agpgart interface v0.103
    Oct 25 23:11:51 esprimo kernel: [ 0.557021] i8042: PNP: PS/2 Controller [PNP0303:KBD0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Oct 25 23:11:51 esprimo kernel: [ 0.565540] i8042: Detected active multiplexing controller, rev 1.1
    Oct 25 23:11:51 esprimo kernel: [ 0.571121] serio: i8042 KBD port at 0x60,0x64 irq 1
    Oct 25 23:11:51 esprimo kernel: [ 0.571160] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Oct 25 23:11:51 esprimo kernel: [ 0.571193] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Oct 25 23:11:51 esprimo kernel: [ 0.571222] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Oct 25 23:11:51 esprimo kernel: [ 0.571247] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Oct 25 23:11:51 esprimo kernel: [ 0.571336] mousedev: PS/2 mouse device common for all mice
    Oct 25 23:11:51 esprimo kernel: [ 0.571726] rtc_cmos 00:07: RTC can wake from S4
    Oct 25 23:11:51 esprimo kernel: [ 0.571846] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
    Oct 25 23:11:51 esprimo kernel: [ 0.571879] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Oct 25 23:11:51 esprimo kernel: [ 0.571889] cpuidle: using governor ladder
    Oct 25 23:11:51 esprimo kernel: [ 0.571891] cpuidle: using governor menu
    Oct 25 23:11:51 esprimo kernel: [ 0.572134] TCP cubic registered
    Oct 25 23:11:51 esprimo kernel: [ 0.572137] NET: Registered protocol family 17
    Oct 25 23:11:51 esprimo kernel: [ 0.572145] Registering the dns_resolver key type
    Oct 25 23:11:51 esprimo kernel: [ 0.572248] registered taskstats version 1
    Oct 25 23:11:51 esprimo kernel: [ 0.584338] rtc_cmos 00:07: setting system clock to 2011-10-25 21:11:41 UTC (1319577101)
    Oct 25 23:11:51 esprimo kernel: [ 0.584402] Initializing network drop monitor service
    Oct 25 23:11:51 esprimo kernel: [ 0.585878] Freeing unused kernel memory: 712k freed
    Oct 25 23:11:51 esprimo kernel: [ 0.586059] Write protecting the kernel read-only data: 6144k
    Oct 25 23:11:51 esprimo kernel: [ 0.586200] Freeing unused kernel memory: 12k freed
    Oct 25 23:11:51 esprimo kernel: [ 0.589189] Freeing unused kernel memory: 776k freed
    Oct 25 23:11:51 esprimo kernel: [ 0.597134] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Oct 25 23:11:51 esprimo [ 0.603730] udevd[58]: starting version 173
    Oct 25 23:11:51 esprimo kernel: [ 0.672619] usbcore: registered new interface driver usbfs
    Oct 25 23:11:51 esprimo kernel: [ 0.672647] usbcore: registered new interface driver hub
    Oct 25 23:11:51 esprimo kernel: [ 0.673030] usbcore: registered new device driver usb
    Oct 25 23:11:51 esprimo kernel: [ 0.674352] SCSI subsystem initialized
    Oct 25 23:11:51 esprimo kernel: [ 0.677873] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Oct 25 23:11:51 esprimo kernel: [ 0.677909] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Oct 25 23:11:51 esprimo kernel: [ 0.677944] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.677993] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Oct 25 23:11:51 esprimo kernel: [ 0.678033] ehci_hcd 0000:00:1a.7: debug port 1
    Oct 25 23:11:51 esprimo kernel: [ 0.681945] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfc404800
    Oct 25 23:11:51 esprimo kernel: [ 0.696937] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Oct 25 23:11:51 esprimo kernel: [ 0.697137] hub 1-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.697142] hub 1-0:1.0: 4 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.701505] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Oct 25 23:11:51 esprimo kernel: [ 0.701545] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.701556] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Oct 25 23:11:51 esprimo kernel: [ 0.701596] ehci_hcd 0000:00:1d.7: debug port 1
    Oct 25 23:11:51 esprimo kernel: [ 0.705494] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc404c00
    Oct 25 23:11:51 esprimo kernel: [ 0.716689] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Oct 25 23:11:51 esprimo kernel: [ 0.716825] hub 2-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.716830] hub 2-0:1.0: 6 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.716937] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Oct 25 23:11:51 esprimo kernel: [ 0.717072] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
    Oct 25 23:11:51 esprimo kernel: [ 0.717077] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc
    Oct 25 23:11:51 esprimo kernel: [ 0.717692] scsi0 : ahci
    Oct 25 23:11:51 esprimo kernel: [ 0.719045] scsi1 : ahci
    Oct 25 23:11:51 esprimo kernel: [ 0.719275] scsi2 : ahci
    Oct 25 23:11:51 esprimo kernel: [ 0.719412] ata1: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404100 irq 44
    Oct 25 23:11:51 esprimo kernel: [ 0.719416] ata2: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404180 irq 44
    Oct 25 23:11:51 esprimo kernel: [ 0.719420] ata3: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404200 irq 44
    Oct 25 23:11:51 esprimo kernel: [ 0.746847] uhci_hcd: USB Universal Host Controller Interface driver
    Oct 25 23:11:51 esprimo kernel: [ 0.746905] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Oct 25 23:11:51 esprimo kernel: [ 0.746920] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.746946] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Oct 25 23:11:51 esprimo kernel: [ 0.746995] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820
    Oct 25 23:11:51 esprimo kernel: [ 0.747159] hub 3-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.747164] hub 3-0:1.0: 2 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.747249] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Oct 25 23:11:51 esprimo kernel: [ 0.747261] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.747269] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Oct 25 23:11:51 esprimo kernel: [ 0.747309] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
    Oct 25 23:11:51 esprimo kernel: [ 0.747444] hub 4-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.747448] hub 4-0:1.0: 2 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.747521] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Oct 25 23:11:51 esprimo kernel: [ 0.747531] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.747539] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Oct 25 23:11:51 esprimo kernel: [ 0.747571] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
    Oct 25 23:11:51 esprimo kernel: [ 0.747703] hub 5-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.747707] hub 5-0:1.0: 2 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.747782] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Oct 25 23:11:51 esprimo kernel: [ 0.747793] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.747808] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Oct 25 23:11:51 esprimo kernel: [ 0.747851] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
    Oct 25 23:11:51 esprimo kernel: [ 0.747982] hub 6-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.747986] hub 6-0:1.0: 2 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.748061] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Oct 25 23:11:51 esprimo kernel: [ 0.748072] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Oct 25 23:11:51 esprimo kernel: [ 0.748080] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Oct 25 23:11:51 esprimo kernel: [ 0.748110] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
    Oct 25 23:11:51 esprimo kernel: [ 0.748253] hub 7-0:1.0: USB hub found
    Oct 25 23:11:51 esprimo kernel: [ 0.748257] hub 7-0:1.0: 2 ports detected
    Oct 25 23:11:51 esprimo kernel: [ 0.780858] ata_piix 0000:00:1f.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Oct 25 23:11:51 esprimo kernel: [ 0.781254] scsi3 : ata_piix
    Oct 25 23:11:51 esprimo kernel: [ 0.781332] scsi4 : ata_piix
    Oct 25 23:11:51 esprimo kernel: [ 0.781722] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14
    Oct 25 23:11:51 esprimo kernel: [ 0.781725] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15
    Oct 25 23:11:51 esprimo kernel: [ 0.945132] ata4.00: ATAPI: HL-DT-ST DVDRAM GSA-T20N, WW01, max UDMA/33
    Oct 25 23:11:51 esprimo kernel: [ 0.956905] ata4.00: configured for UDMA/33
    Oct 25 23:11:51 esprimo kernel: [ 1.033361] ata2: SATA link down (SStatus 0 SControl 300)
    Oct 25 23:11:51 esprimo kernel: [ 1.036698] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Oct 25 23:11:51 esprimo kernel: [ 1.036718] ata3: SATA link down (SStatus 0 SControl 300)
    Oct 25 23:11:51 esprimo kernel: [ 1.037191] ata1.00: unexpected _GTF length (8)
    Oct 25 23:11:51 esprimo kernel: [ 1.094414] ata1.00: ATA-8: WDC WD2500BEVS-22UST0, 01.01A01, max UDMA/133
    Oct 25 23:11:51 esprimo kernel: [ 1.094417] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Oct 25 23:11:51 esprimo kernel: [ 1.095146] ata1.00: unexpected _GTF length (8)
    Oct 25 23:11:51 esprimo kernel: [ 1.095367] ata1.00: configured for UDMA/133
    Oct 25 23:11:51 esprimo kernel: [ 1.095550] scsi 0:0:0:0: Direct-Access ATA WDC WD2500BEVS-2 01.0 PQ: 0 ANSI: 5
    Oct 25 23:11:51 esprimo kernel: [ 1.099063] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T20N WW01 PQ: 0 ANSI: 5
    Oct 25 23:11:51 esprimo kernel: [ 1.106469] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Oct 25 23:11:51 esprimo kernel: [ 1.106530] sd 0:0:0:0: [sda] Write Protect is off
    Oct 25 23:11:51 esprimo kernel: [ 1.106557] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Oct 25 23:11:51 esprimo kernel: [ 1.110030] usb 2-6: new high speed USB device number 2 using ehci_hcd
    Oct 25 23:11:51 esprimo kernel: [ 1.110723] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Oct 25 23:11:51 esprimo kernel: [ 1.110726] cdrom: Uniform CD-ROM driver Revision: 3.20
    Oct 25 23:11:51 esprimo kernel: [ 1.124994] sda: sda1 sda2 sda3 sda4
    Oct 25 23:11:51 esprimo kernel: [ 1.125379] sd 0:0:0:0: [sda] Attached SCSI disk
    Oct 25 23:11:51 esprimo kernel: [ 1.390019] Refined TSC clocksource calibration: 1994.999 MHz.
    Oct 25 23:11:51 esprimo kernel: [ 1.390026] Switching to clocksource tsc
    Oct 25 23:11:51 esprimo kernel: [ 1.642094] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    Oct 25 23:11:51 esprimo kernel: [ 2.026688] usb 4-1: new full speed USB device number 2 using uhci_hcd
    Oct 25 23:11:51 esprimo [ 3.411702] udevd[265]: starting version 173
    Oct 25 23:11:51 esprimo kernel: [ 8.010314] EXT4-fs (sda2): re-mounted. Opts: (null)
    Oct 25 23:11:51 esprimo kernel: [ 8.167612] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    Oct 25 23:11:51 esprimo kernel: [ 8.204049] Adding 2144672k swap on /dev/sda3. Priority:-1 extents:1 across:2144672k
    Oct 25 23:11:52 esprimo NetworkManager[699]: <info> NetworkManager (version 0.9.1.90) is starting...
    Oct 25 23:11:52 esprimo NetworkManager[699]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
    Oct 25 23:11:53 esprimo acpid: starting up with proc fs
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> VPN: loaded org.freedesktop.NetworkManager.openvpn
    Oct 25 23:11:53 esprimo acpid: 4 rules loaded
    Oct 25 23:11:53 esprimo acpid: waiting for events: event logging is off
    Oct 25 23:11:53 esprimo dbus[674]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
    Oct 25 23:11:53 esprimo polkitd[765]: started daemon version 0.102 using authority implementation `local' version `0.102'
    Oct 25 23:11:53 esprimo dbus[674]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Auto eth0 ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Auto eth0'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Auto Hanculak ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Auto Hanculak'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Auto paponet ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Auto paponet'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Wireless connection 1 ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Wireless connection 1'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Wired connection 1 ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Wired connection 1'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing labak6wpa ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'labak6wpa'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Wireless connection 2 ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Wireless connection 2'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing Auto papow ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'Auto papow'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing withDNSSEC ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'withDNSSEC'
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: parsing OpenDNS ...
    Oct 25 23:11:53 esprimo NetworkManager[699]: keyfile: read connection 'OpenDNS'
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> trying to start the modem manager...
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> monitoring kernel firmware directory '/lib/firmware'.
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> WiFi enabled by radio killswitch; enabled by state file
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> WWAN enabled by radio killswitch; enabled by state file
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> WiMAX enabled by radio killswitch; enabled by state file
    Oct 25 23:11:53 esprimo NetworkManager[699]: <info> Networking is enabled by state file
    Oct 25 23:11:53 esprimo NetworkManager[699]: <warn> bluez error getting default adapter: The name org.bluez was not provided by any .service files
    Oct 25 23:11:54 esprimo laptop-mode: Laptop mode
    Oct 25 23:11:54 esprimo laptop-mode: enabled, active
    Oct 25 23:11:54 esprimo kernel: [ 13.842399] EXT4-fs (sda4): re-mounted. Opts: commit=360
    Oct 25 23:11:55 esprimo bluetoothd[1182]: Bluetooth daemon 4.96
    Oct 25 23:11:55 esprimo bluetoothd[1182]: Starting SDP server
    Oct 25 23:11:55 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/bluetooth/bluetooth.ko': No such file or directory
    Oct 25 23:11:55 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/bluetooth/bluetooth.ko': No such file or directory
    Oct 25 23:11:55 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/bluetooth/bluetooth.ko': No such file or directory
    Oct 25 23:11:55 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/bluetooth/bluetooth.ko': No such file or directory
    Oct 25 23:11:55 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/bluetooth/bluetooth.ko': No such file or directory
    Oct 25 23:11:55 esprimo NetworkManager[699]: <warn> bluez error getting default adapter: Message did not receive a reply (timeout by message bus)
    Oct 25 23:11:57 esprimo acpid: client connected from 1201[0:0]
    Oct 25 23:11:57 esprimo acpid: 1 client rule loaded
    Oct 25 23:11:57 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/ipv6/ipv6.ko': No such file or directory
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmDisplay: display lasted 2.122354 seconds
    Oct 25 23:11:58 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/ipv6/ipv6.ko': No such file or directory
    Oct 25 23:11:58 esprimo acpid: client 1201[0:0] has disconnected
    Oct 25 23:11:58 esprimo acpid: client connected from 1217[0:0]
    Oct 25 23:11:58 esprimo acpid: 1 client rule loaded
    Oct 25 23:11:58 esprimo modprobe: FATAL: Could not read '/lib/modules/3.0-ARCH/kernel/net/ipv6/ipv6.ko': No such file or directory
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmDisplay: display lasted 0.049584 seconds
    Oct 25 23:11:58 esprimo acpid: client 1217[0:0] has disconnected
    Oct 25 23:11:58 esprimo acpid: client connected from 1223[0:0]
    Oct 25 23:11:58 esprimo acpid: 1 client rule loaded
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmDisplay: display lasted 0.094564 seconds
    Oct 25 23:11:58 esprimo acpid: client 1223[0:0] has disconnected
    Oct 25 23:11:58 esprimo acpid: client connected from 1227[0:0]
    Oct 25 23:11:58 esprimo acpid: 1 client rule loaded
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmDisplay: display lasted 0.087314 seconds
    Oct 25 23:11:58 esprimo acpid: client 1227[0:0] has disconnected
    Oct 25 23:11:58 esprimo acpid: client connected from 1231[0:0]
    Oct 25 23:11:58 esprimo acpid: 1 client rule loaded
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmDisplay: display lasted 0.047879 seconds
    Oct 25 23:11:58 esprimo acpid: client 1231[0:0] has disconnected
    Oct 25 23:11:58 esprimo acpid: client connected from 1235[0:0]
    Oct 25 23:11:58 esprimo acpid: 1 client rule loaded
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmDisplay: display lasted 0.069482 seconds
    Oct 25 23:11:58 esprimo gdm-binary[1181]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors
    Oct 25 23:13:04 esprimo dbus[674]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
    Oct 25 23:13:04 esprimo dbus[674]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Initializing cgroup subsys cpu
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Linux version 3.0-ARCH (tobias@T-POWA-LX) (gcc version 4.6.1 20110819 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 19 10:27:51 CEST 2011
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Command line: root=/dev/disk/by-uuid/5d093582-b21d-4a60-9376-258480024369 ro vga=864
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-provided physical RAM map:
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6df000 (ACPI NVS)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000bf6df000 - 00000000c0000000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] NX (Execute Disable) protection: active
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] DMI present.
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] No AGP bridge found
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] found SMP MP-table at [ffff8800000f7ab0] f7ab0
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] RAMDISK: 37dd2000 - 37ff0000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: RSDP 00000000000f78b0 00024 (v02 PTLTD )
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: XSDT 00000000bf6d28ce 00094 (v01 FSC PC 06040000 LTP 00000000)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: FACP 00000000bf6dbbd2 000F4 (v03 INTEL CRESTLNE 06040000 ALAN 00000001)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: DSDT 00000000bf6d3e38 07D26 (v02 WS C46_____ 06040000 MSFT 03000000)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: FACS 00000000bf6defc0 00040
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: APIC 00000000bf6dbcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: HPET 00000000bf6dbd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: MCFG 00000000bf6dbd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: TCPA 00000000bf6dbda2 00032 (v01 Intel CRESTLN 06040000 00005A52)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: TMOR 00000000bf6dbdd4 00026 (v01 PTLTD 06040000 PTL 00000003)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: SLIC 00000000bf6dbdfa 00176 (v01 FSC PC 06040000 PTL 00000001)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: APIC 00000000bf6dbf70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: BOOT 00000000bf6dbfd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d3b5b 002DD (v01 SataRe SataAhci 00001000 INTL 20060912)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d39be 0019D (v01 BrtRef DD01BRT 00001000 INTL 20060912)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d2eee 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20060912)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d2e48 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20060912)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: SSDT 00000000bf6d2962 004E6 (v01 PmRef CpuPm 00003000 INTL 20060912)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify [email protected]
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: DMI detected: Fujitsu Siemens
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] No NUMA configuration found
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Faking a node at 0000000000000000-0000000140000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] NODE_DATA [000000013fffb000 - 000000013fffffff]
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Zone PFN ranges:
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Normal 0x00100000 -> 0x00140000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Movable zone start PFN for each node
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] early_node_map[3] active PFN ranges
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] 0: 0x00000100 -> 0x000bf6d0
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] 0: 0x00100000 -> 0x00140000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000bf6d0000 - 00000000bf6df000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000bf6df000 - 00000000c0000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec10000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fed00000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed14000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed1a000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed90000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fee00000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88013fc00000 s78464 r8192 d23936 u1048576
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1028186
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Policy zone: Normal
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/5d093582-b21d-4a60-9376-258480024369 ro vga=864
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Checking aperture...
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] No AGP bridge found
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Memory: 4048952k/5242880k available (4066k kernel code, 1058436k absent, 135492k reserved, 3302k data, 712k init)
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] NR_IRQS:2304
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Extended CMOS year: 2000
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Console: colour dummy device 80x25
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] console [tty0] enabled
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] allocated 33554432 bytes of page_cgroup
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Fast TSC calibration using PIT
    Oct 27 20:49:25 esprimo kernel: [ 0.000000] Detected 1994.990 MHz processor.
    Oct 27 20:49:25 esprimo kernel: [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.22 BogoMIPS (lpj=6649966)
    Oct 27 20:49:25 esprimo kernel: [ 0.003343] pid_max: default: 32768 minimum: 301
    Oct 27 20:49:25 esprimo kernel: [ 0.003460] Security Framework initialized
    Oct 27 20:49:25 esprimo kernel: [ 0.003466] AppArmor: AppArmor disabled by boot time parameter
    Oct 27 20:49:25 esprimo kernel: [ 0.003888] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Oct 27 20:49:25 esprimo kernel: [ 0.008160] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Oct 27 20:49:25 esprimo kernel: [ 0.009314] Mount-cache hash table entries: 256
    Oct 27 20:49:25 esprimo kernel: [ 0.009770] Initializing cgroup subsys cpuacct
    Oct 27 20:49:25 esprimo kernel: [ 0.009807] Initializing cgroup subsys memory
    Oct 27 20:49:25 esprimo kernel: [ 0.009826] Initializing cgroup subsys devices
    Oct 27 20:49:25 esprimo kernel: [ 0.009828] Initializing cgroup subsys freezer
    Oct 27 20:49:25 esprimo kernel: [ 0.009831] Initializing cgroup subsys net_cls
    Oct 27 20:49:25 esprimo kernel: [ 0.009833] Initializing cgroup subsys blkio
    Oct 27 20:49:25 esprimo kernel: [ 0.009891] CPU: Physical Processor ID: 0
    Oct 27 20:49:25 esprimo kernel: [ 0.009893] CPU: Processor Core ID: 0
    Oct 27 20:49:25 esprimo kernel: [ 0.009895] mce: CPU supports 6 MCE banks
    Oct 27 20:49:25 esprimo kernel: [ 0.009909] using mwait in idle threads.
    Oct 27 20:49:25 esprimo kernel: [ 0.011091] ACPI: Core revision 20110413
    Oct 27 20:49:25 esprimo kernel: [ 0.016682] ftrace: allocating 16144 entries in 64 pages
    Oct 27 20:49:25 esprimo kernel: [ 0.020398] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Oct 27 20:49:25 esprimo kernel: [ 0.054765] CPU0: Intel(R) Core(TM)2 Duo CPU T7300 @ 2.00GHz stepping 0a
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] PEBS disabled due to CPU errata.
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... version: 2
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... bit width: 40
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... generic registers: 2
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... value mask: 000000ffffffffff
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... max period: 000000007fffffff
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... fixed-purpose events: 3
    Oct 27 20:49:25 esprimo kernel: [ 0.056663] ... event mask: 0000000700000003
    Oct 27 20:49:25 esprimo kernel: [ 0.073443] NMI watchdog enabled, takes one hw-pmu counter.
    Oct 27 20:49:25 esprimo kernel: [ 0.100007] Booting Node 0, Processors #1 Ok.
    Oct 27 20:49:25 esprimo kernel: [ 0.196683] NMI watchdog enabled, takes one hw-pmu counter.
    Oct 27 20:49:25 esprimo kernel: [ 0.203325] Brought up 2 CPUs
    Oct 27 20:49:25 esprimo kernel: [ 0.203328] Total of 2 processors activated (7983.46 BogoMIPS).
    Oct 27 20:49:25 esprimo kernel: [ 0.204847] devtmpfs: initialized
    Oct 27 20:49:25 esprimo kernel: [ 0.204847] PM: Registering ACPI NVS region at bf6d0000 (61440 bytes)
    Oct 27 20:49:25 esprimo kernel: [ 0.207119] print_constraints: dummy:
    Oct 27 20:49:25 esprimo kernel: [ 0.207208] NET: Registered protocol family 16
    Oct 27 20:49:25 esprimo kernel: [ 0.207333] ACPI: bus type pci registered
    Oct 27 20:49:25 esprimo kernel: [ 0.207504] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Oct 27 20:49:25 esprimo kernel: [ 0.207508] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Oct 27 20:49:25 esprimo ker

  • Issue on VMWare post Xorg packages update

    I run arch as a guest on VMWare Player(6.0.2). I am facing this problem where I cannot start a DE nor WM post the recent updates to some of the xorg packages. I tried KDE and dwm. The updates done are as below:
    [2014-07-29 21:04] [PACMAN] upgraded cryptsetup (1.6.5-1 -> 1.6.5-2)
    [2014-07-29 21:04] [PACMAN] upgraded iproute2 (3.14.0-1 -> 3.15.0-1)
    [2014-07-29 21:04] [PACMAN] upgraded libdrm (2.4.54-1 -> 2.4.55-1)
    [2014-07-29 21:04] [PACMAN] upgraded lib32-libdrm (2.4.54-1 -> 2.4.55-1)
    [2014-07-29 21:04] [PACMAN] upgraded libxfont (1.4.7-3 -> 1.5.0-1)
    [2014-07-29 21:05] [PACMAN] upgraded linux (3.15.5-2 -> 3.15.7-1)
    [2014-07-29 21:05] [PACMAN] upgraded linux-headers (3.15.5-2 -> 3.15.7-1)
    [2014-07-29 21:05] [PACMAN] upgraded xf86-input-evdev (2.9.0-1 -> 2.9.0-2)
    [2014-07-29 21:05] [PACMAN] upgraded xf86-input-vmmouse (13.0.0-3 -> 13.0.0-4)
    [2014-07-29 21:05] [PACMAN] upgraded xf86-video-vmware (13.0.2-1 -> 13.0.2-2)
    [2014-07-29 21:05] [PACMAN] installed libepoxy (1.2-2)
    [2014-07-29 21:05] [PACMAN] upgraded xorg-server-common (1.15.2-1 -> 1.16.0-5)
    [2014-07-29 21:05] [PACMAN] upgraded xorg-server (1.15.2-1 -> 1.16.0-5)
    The Xorg log is as below. I can see there seems to be a segmentation fault while trying to load the vgahw module. I am not sure how investigate further, any help would be appreciated.
    [ 22.191]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 22.191] X Protocol Version 11, Revision 0
    [ 22.191] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 22.191] Current Operating System: Linux asecretplace 3.15.7-1-ARCH #1 SMP PREEMPT Mon Jul 28 20:06:17 CEST 2014 x86_64
    [ 22.191] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d163345c-8a2e-4ec1-9b0a-916fd3ea1d2d rw
    [ 22.192] Build Date: 25 July 2014 10:42:31PM
    [ 22.192]
    [ 22.192] Current version of pixman: 0.32.6
    [ 22.192] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 22.192] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 22.192] (==) Log file: "/home/nsm09/.local/share/xorg/Xorg.0.log", Time: Wed Jul 30 20:43:26 2014
    [ 22.240] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 22.240] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 22.270] (==) No Layout section. Using the first Screen section.
    [ 22.270] (==) No screen section available. Using defaults.
    [ 22.270] (**) |-->Screen "Default Screen Section" (0)
    [ 22.270] (**) | |-->Monitor "<default monitor>"
    [ 22.270] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 22.270] (==) Automatically adding devices
    [ 22.270] (==) Automatically enabling devices
    [ 22.270] (==) Automatically adding GPU devices
    [ 22.296] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 22.297] Entry deleted from font path.
    [ 22.300] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 22.300] Entry deleted from font path.
    [ 22.300] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 22.303] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 22.303] Entry deleted from font path.
    [ 22.303] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 22.303] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 22.303] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 22.303] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 22.304] (II) Loader magic: 0x818d80
    [ 22.304] (II) Module ABI versions:
    [ 22.304] X.Org ANSI C Emulation: 0.4
    [ 22.304] X.Org Video Driver: 18.0
    [ 22.304] X.Org XInput driver : 21.0
    [ 22.304] X.Org Server Extension : 8.0
    [ 22.306] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 22.307] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 22.307] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 22.328] (--) PCI:*(0:0:15:0) 15ad:0405:15ad:0405 rev 0, Mem @ 0xe8000000/134217728, 0xfe000000/8388608, I/O @ 0x00001070/16, BIOS @ 0x????????/32768
    [ 22.328] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 22.328] (II) LoadModule: "glx"
    [ 22.332] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 22.437] (II) Module glx: vendor="X.Org Foundation"
    [ 22.437] compiled for 1.16.0, module version = 1.0.0
    [ 22.437] ABI class: X.Org Server Extension, version 8.0
    [ 22.437] (==) AIGLX enabled
    [ 22.437] (==) Matched vmware as autoconfigured driver 0
    [ 22.437] (==) Matched vmware as autoconfigured driver 1
    [ 22.437] (==) Matched modesetting as autoconfigured driver 2
    [ 22.437] (==) Matched fbdev as autoconfigured driver 3
    [ 22.437] (==) Matched vesa as autoconfigured driver 4
    [ 22.437] (==) Assigned the driver to the xf86ConfigLayout
    [ 22.437] (II) LoadModule: "vmware"
    [ 22.440] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
    [ 22.748] (II) Module vmware: vendor="X.Org Foundation"
    [ 22.749] compiled for 1.16.0, module version = 13.0.2
    [ 22.749] Module class: X.Org Video Driver
    [ 22.749] ABI class: X.Org Video Driver, version 18.0
    [ 22.749] (II) LoadModule: "modesetting"
    [ 22.749] (WW) Warning, couldn't open module modesetting
    [ 22.749] (II) UnloadModule: "modesetting"
    [ 22.749] (II) Unloading modesetting
    [ 22.749] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 22.749] (II) LoadModule: "fbdev"
    [ 22.750] (WW) Warning, couldn't open module fbdev
    [ 22.750] (II) UnloadModule: "fbdev"
    [ 22.750] (II) Unloading fbdev
    [ 22.750] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 22.750] (II) LoadModule: "vesa"
    [ 22.750] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 22.760] (II) Module vesa: vendor="X.Org Foundation"
    [ 22.760] compiled for 1.16.0, module version = 2.3.2
    [ 22.760] Module class: X.Org Video Driver
    [ 22.760] ABI class: X.Org Video Driver, version 18.0
    [ 22.760] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
    [ 22.760] (II) VESA: driver for VESA chipsets: vesa
    [ 22.760] (++) using VT number 1
    [ 22.760] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 22.760] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 22.760] (WW) Falling back to old probe method for vesa
    [ 22.761] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 22.761] (II) vmware(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 22.761] (--) vmware(0): DRM driver version is 2.6.0
    [ 22.761] (EE) vmware(0): Failed to detect device screen object capability.
    [ 22.761] (WW) vmware(0): Disabling 3D support.
    [ 22.761] (WW) vmware(0): Disabling Render Acceleration.
    [ 22.761] (WW) vmware(0): Disabling RandR12+ support.
    [ 22.761] (--) vmware(0): VMware SVGA regs at (0x1070, 0x1071)
    [ 22.761] (II) Loading sub module "vgahw"
    [ 22.761] (II) LoadModule: "vgahw"
    [ 22.761] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 22.774] (II) Module vgahw: vendor="X.Org Foundation"
    [ 22.774] compiled for 1.16.0, module version = 0.1.0
    [ 22.774] ABI class: X.Org Video Driver, version 18.0
    [ 22.796] (EE)
    [ 22.796] (EE) Backtrace:
    [ 22.808] (EE) 0: /usr/bin/Xorg.bin (xorg_backtrace+0x56) [0x5938f6]
    [ 22.808] (EE) 1: /usr/bin/Xorg.bin (0x400000+0x197af9) [0x597af9]
    [ 22.808] (EE) 2: /usr/lib/libc.so.6 (0x7ff555bc3000+0x33df0) [0x7ff555bf6df0]
    [ 22.808] (EE) 3: /usr/lib/libpciaccess.so.0 (pci_io_write8+0x3) [0x7ff556f7c923]
    [ 22.808] (EE) 4: /usr/lib/xorg/modules/libvgahw.so (vgaHWSaveColormap+0x5b) [0x7ff54ecd8fbb]
    [ 22.808] (EE) 5: /usr/lib/xorg/modules/libvgahw.so (vgaHWSave+0x55) [0x7ff54ecdad55]
    [ 22.808] (EE) 6: /usr/lib/xorg/modules/drivers/vmware_drv.so (0x7ff55177f000+0x7dce) [0x7ff551786dce]
    [ 22.808] (EE) 7: /usr/bin/Xorg.bin (InitOutput+0xa9f) [0x47a25f]
    [ 22.808] (EE) 8: /usr/bin/Xorg.bin (0x400000+0x3b67a) [0x43b67a]
    [ 22.808] (EE) 9: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7ff555be3000]
    [ 22.808] (EE) 10: /usr/bin/Xorg.bin (0x400000+0x25d0e) [0x425d0e]
    [ 22.808] (EE)
    [ 22.808] (EE) Segmentation fault at address 0x8
    [ 22.808] (EE)
    Fatal server error:
    [ 22.808] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 22.808] (EE)
    [ 22.808] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 22.808] (EE) Please also check the log file at "/home/nsm09/.local/share/xorg/Xorg.0.log" for additional information.
    [ 22.808] (EE)
    [ 22.814] (EE) Server terminated with error (1). Closing log file.
    Last edited by nsmathew (2014-07-30 13:16:25)

    guihkx wrote:
    Okay... I did what our friend johnr suggested and after some research and a little headache, I managed to get my Arch Linux working again by downgrading just 3 packages. Here are the few steps I did:
    First of, install this little package called 'downgrade' to help you downgrade the packages.
    1. Okay, first we need to remove these 3 packages which requires Xorg >1.16:
    # pacman -Rs xf86-input-evdev xf86-video-vmware xorg-server
    2. Now we have to downgrade xf86-input-evdev to the exact version 2.9.0-1. Search for it in the list, type its corresponding number and press enter. Example:
    $ downgrade xf86-input-evdev
    2) xf86-input-evdev-2.9.0-1-x86_64.pkg.tar.xz (remote)
    select a package by number: 2
    :: Proceed with installation? [Y/n] y
    add xf86-input-evdev to IgnorePkg [y/n] y
    3. Downgrade xorg-server to the exact version 1.15.2-1. We have to do the same as the previous step:
    $ downgrade xorg-server
    4) xorg-server-1.15.2-1-x86_x64.pkg.tar.xz (remote)
    select a package by number: 4
    :: Proceed with installation? [Y/n] y
    add xorg-server to IgnorePkg [y/n] y
    4. Last but not least, we have to downgrade xf86-video-vmware to the exact version 13.0.2-1:
    $ downgrade xf86-video-vmware
    3) xf86-video-vmware-13.0.2-1-x86_x64.pkg.tar.xz (remote)
    select a package by number: 3
    :: Proceed with installation? [Y/n] y
    add xf86-video-vmware to IgnorePkg [y/n] y
    And that's pretty much it... I hope it helps!
    P.S.: As we added those 3 packages to 'IgnorePkg', pacman won't upgrade them unless you remove them from pacman's config file: /etc/pacman.conf.
    Created an account just to say that this resolved my issue as well.  Thank you so much for such a great, detailed solution!

  • Nvidia-utils: /usr/lib/libXvMCNVIDIA.so.1.0.9755: exists in filesystem

    Any ideas can't get Pacman -Syu to work while I have these Nvidia problems,
    thanks,
    Cliff
    [root@myhost cliff]# pacman -Syu
    :: Synchronizing package databases...
    :: current is up to date
    :: extra is up to date
    :: unstable is up to date
    :: community is up to date
    failed to synchronize cimi
    Targets: glib2-2.12.11-1 atk-1.18.0-2 dcraw-1.371-1 dvdauthor-0.6.14-1 dvdrip-0.98.3-1 gimpshop-2.2.11-2 gstreamer0.10-0.10.12-1 gstreamer0.10-base-0.10.12-1 gstreamer0.10-alsa-0.10.12-1
             gstreamer0.10-cdparanoia-0.10.12-1 gstreamer0.10-ogg-0.10.12-1 gstreamer0.10-vorbis-0.10.12-1 gtk-engines-2.10.0-1 pango-1.16.1-2 gtk2-2.10.11-2 hddtemp-0.3.beta15.patch7-1 ktorrent-2.1.2-1
             libgksu-2.0.4-1 libopensync-0.21.1-1 libxklavier-3.1-1 nvidia-1.0.9755-1 nvidia-utils-1.0.9755-1 rosegarden-4.1.5.1-1 gstreamer0.10-theora-0.10.12-1 gstreamer0.10-ugly-0.10.5-1
             gstreamer0.10-dvdread-0.10.5-1 gstreamer0.10-a52dec-0.10.5-1 gstreamer0.10-mpeg2dec-0.10.5-1 thoggen-0.6.0-1
    Total Package Size:   42.1 MB
    Proceed with upgrade? [Y/n] y
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts...
    error: the following file conflicts were found:
      nvidia-utils: /usr/lib/libXvMCNVIDIA.so.1.0.9755: exists in filesystem
      nvidia-utils: /usr/lib/xorg/modules/libnvidia-wfb.so.1.0.9755: exists in filesystem
    errors occurred, no packages were upgraded.

    No problem. pacman is an excellent package manager, as you know, but it will never be able to account for software that it doesn't install. Use the packages in the repos, and all will be well.
    If you need a new version of nvidia, or anything else, before we put it in the repos, use ABS (Arch Build System) to build it and pacman to install it. ABS details are in the wiki if you need them.

  • /usr/lib/libXext.so.6 File too short

    Hi, Im trying to get xorg running.
    I'm running Arch on Vbox as guest.
    I don't know  exactly what I did to get this error, I was following the Arch wiki and was in the part of installing hal, dbus, xfree-input-keyboard and mouse.
    Now I'm getting an error that wasn't before. I type "startx" and I get:
    >  xauth: error while loading shared libraries: /usr/lib/libXext.so.6: file too short
    >  xauth: error while loading shared libraries: /usr/lib/libX11.so.6: file too short
    With "pacman -Qo libX11.so.6"
    > error: failed to read file libX11.so.6: No such file or directory
    "pacman -Qo libX11.so.6"
    > error: failed to read file libX11.so: No such file or directory
    Same for libXext.so.6
    "pacman -Ss libxext"
    > extra/libxext 1.1.1-1      X11 miscellaneous extensions library
    "pacman -S libxext"
    >warning: libext-1.1.1-1 is up to date -- reinstalling
    >Proceed with installation (y/n) y
    > checking for file conflicts
    > (lot of errors like this: libxext: MITMisc.h exists in filesystem)
    > Errors ocurred, no packages were upgraded.
    "pacman -R libxext"
    > error: failed to prepare transaction (could not satisfy dependencies)
    > (lots of packets require libxext)
    I also renamed ld.so.cache to ld.so.cache (should I do anything else to rebuild it?)
    Help

    Hi thanks, that did it.
    Unfortunately now "startx" throws another new error that wasn't before. "Startx" would bring up a black screen I couldn't get out from before, I guess it was working, kinda.
    This is the error now:
    >dlopen: /usr/lib/xorg/modules/drivers/vboxvideo_drv.so : undefined symbol: resVga Shared
    > (EE) Failed to load /usr/lib/xorg/modules/drivers/vboxvideo_drv.so
    > (EE) Failed to load module "vboxvideo" (loader failed, 7)
    > (EE) module ABI major version (4) doesn´t match the server´s version (7)
    >Fatal server error:
    >no screens found
    So I tried just in case:
    "pacman -Qo vboxvideo_drv.so". The file didn't belong to any package.
    "pacman -Sf virtualbox-additions". All ok the package was reinstalled.
    But that didn't solve the problem. I also did "shutdown -rF now"
    Same problem still.

  • Xorg parse error: "Extensions" is not a valid sect

    hello!
    i have a problem. i cannot activate the composite extensions because of this problem:
    X Window System Version 7.0.0
    Release Date: 21 December 2005
    X Protocol Version 11, Revision 0, Release 7.0
    Build Operating System:Linux 2.6.16-ARCH i686
    Current Operating System: Linux laptop 2.6.17-ARCH #1 SMP PREEMPT Fri Jul 7 09:15:53 CEST 2006 i686
    Build Date: 21 June 2006
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    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.1.log", Time: Sat Jul 15 11:35:54 2006
    (==) Using config file: "/etc/X11/xorg.conf"
    Parse error on line 260 of section EÂxtensions in file /etc/X11/xorg.conf
    "EÂxtensions" is not a valid section name.
    (EE) Problem parsing the config file
    (EE) Error parsing the config file
    Fatal server error:
    no screens found
    (WW) xf86CloseConsole: KDSETMODE failed: Bad file descriptor
    (WW) xf86CloseConsole: VT_GETMODE failed: Bad file descriptor
    plz help me!!! here is my xorg.conf:
    Section "Module"
    Load "dbe" # Double buffer extension
    SubSection "extmod"
    # Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    Load "type1"
    # Load "speedo"
    Load "freetype"
    # Load "xtt"
    Load "glx"
    Load "synaptics"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/CID/"
    FontPath "/usr/share/fonts/75dpi/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/local/"
    FontPath "/usr/share/fonts/Speedo/"
    FontPath "/usr/share/fonts/TrueType/"
    FontPath "/usr/share/fonts/freefont/"
    ModulePath "/usr/lib/xorg/modules"
    EndSection
    Section "ServerFlags"
    # Option "NoTrapSignals"
    # Option "DontVTSwitch"
    # Option "DontZap"
    # Option "Dont Zoom"
    # Option "DisableVidModeExtension"
    # Option "AllowNonLocalXvidtune"
    # Option "DisableModInDev"
    # Option "AllowNonLocalModInDev"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "de"
    Option "XkbVariant" "nodeadkeys"
    EndSection
    Section "InputDevice"
    Identifier "touchpad"
    Driver "synaptics"
    Option "Protocol" "auto-dev"
    Option "Device" "/dev/input/mice"
    Option "SHMConfig" "on"
    Option "HorizScrollDelta" "0"
    EndSection
    Section "InputDevice"
    Identifier "usbmouse"
    Driver "mouse"
    Option "Protocol" "IMPS/2"
    Option "Device" "/dev/input/mice"
    Option "Buttons" "5"
    Option "ZAxisMapping" "4 5"
    Option "Resolution" "800"
    EndSection
    Section "Monitor"
    Identifier "lcd"
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # Chipset "generic"
    Driver "vga"
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    Section "Device"
    Identifier "geforce"
    Driver "nvidia"
    Option "NoLogo" "1"
    Option "VBERestore" "true"
    Option "NvAGP" "1"
    Option "AllowGLXWithComposite" "1"
    EndSection
    Section "Device"
    Identifier "geforce_tv"
    Driver "nvidia"
    Option "TwinView"
    Option "SecondMonitorHorizSync" "30-50"
    Option "SecondMonitorVertRefresh" "60"
    Option "MetaModes" "1280x800,1024x768"
    Option "ConnectedMonitor" "DFP, TV"
    Option "TwinViewOrientation" "LeftOf"
    Option "NoLogo" "1"
    Option "AllowGLXWithComposite" "1"
    EndSection
    Section "Device"
    Identifier "geforce_tv_clone"
    Driver "nvidia"
    Option "TwinView"
    Option "SecondMonitorHorizSync" "30-50"
    Option "SecondMonitorVertRefresh" "60"
    Option "MetaModes" "1024x768,1024x768"
    Option "ConnectedMonitor" "DFP, TV"
    Option "TwinViewOrientation" "Clone"
    Option "FlatPanelProperties" "Scaling = centered"
    Option "NoLogo" "1"
    Option "AllowGLXWithComposite" "1"
    EndSection
    Section "Screen"
    Identifier "default"
    Device "geforce"
    Monitor "lcd"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "tv"
    Device "geforce_tv"
    Monitor "lcd"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "tv_clone"
    Device "geforce_tv_clone"
    Monitor "lcd"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x800" "1024x768" "800x600" "640x480"
    ViewPort 0 0
    EndSubsection
    EndSection
    Section "ServerLayout"
    Identifier "Default"
    Screen "default"
    InputDevice "touchpad" "CorePointer"
    InputDevice "usbmouse" "SendCoreEvents"
    InputDevice "Keyboard1" "CoreKeyboard"
    Option "SuspendTime" "5"
    EndSection
    Section "Extensions"
    Option "Composite" "true"
    EndSection
    thx, mfg iggy

    Ummmm, what did you edit Xorg.conf with? It looks like there's some weird encoding or something causing it to look like "EÂxtensions" instead of "Extensions".
    Maybe you could try opening xorg.conf in a basic editor like vi or nano, deleting the "EÂxtensions" bit, and just retyping it.
    That's not a pro viewpoint or anything, but it could be somewhere to start.
    T

  • Libtool: libgvfscommon.la has not been installed in '/usr/lib/gvfs'

    Hi,
    I'm trying to patch gvfs-mtp. The thing is I'm getting strange warnings from libtool like:
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in
    '/usr/lib/gvfs'
    Or with more context:
    ==> Making package: gvfs 1.22.2-4 (Mon Jan 19 12:57:20 EET 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found gvfs-1.22.2.tar.xz
    -> Found 0001-MTP-Attempt-to-set-MTP-filetype-from-mime-type-when-.patch
    ==> Validating source files with sha256sums...
    gvfs-1.22.2.tar.xz ... Passed
    0001-MTP-Attempt-to-set-MTP-filetype-from-mime-type-when-.patch ... Skipped
    ==> Extracting sources...
    -> Extracting gvfs-1.22.2.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    libtoolize: putting auxiliary files in '.'.
    libtoolize: copying file './ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
    libtoolize: copying file 'm4/libtool.m4'
    libtoolize: copying file 'm4/ltoptions.m4'
    libtoolize: copying file 'm4/ltsugar.m4'
    libtoolize: copying file 'm4/ltversion.m4'
    libtoolize: copying file 'm4/lt~obsolete.m4'
    configure.ac:11: installing './compile'
    configure.ac:4: installing './missing'
    client/Makefile.am: installing './depcomp'
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether UID '1000' is supported by ustar format... yes
    checking whether GID '1000' is supported by ustar format... yes
    checking how to create a ustar tar archive... gnutar
    checking whether build environment is sane... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking whether gcc understands -c and -o together... yes
    checking dependency style of gcc... gcc3
    checking for an ANSI C-conforming const... yes
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking whether gcc understands -c and -o together... (cached) yes
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking for pkg-config... /usr/bin/pkg-config
    checking for gio-querymodules... /usr/bin/gio-querymodules
    checking for a sed that does not truncate output... /usr/bin/sed
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... (cached) /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking the maximum length of command line arguments... 1572864
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for a working dd... /usr/bin/dd
    checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
    checking for mt... no
    checking if : is a manifest tool... no
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for xsltproc... /usr/bin/xsltproc
    checking whether make supports nested variables... (cached) yes
    checking for pid_t... yes
    checking return type of signal handlers... void
    checking for size_t... yes
    checking for uid_t in sys/types.h... yes
    checking pkg-config is at least version 0.16... yes
    checking for struct stat.st_mtimensec... no
    checking for struct stat.st_mtim.tv_nsec... yes
    checking for struct stat.st_atimensec... no
    checking for struct stat.st_atim.tv_nsec... yes
    checking for struct stat.st_ctimensec... no
    checking for struct stat.st_ctim.tv_nsec... yes
    checking for gtk-doc... no
    configure: WARNING:
    You will not be able to create source packages with 'make dist'
    because gtk-doc is not found.
    checking for gtkdoc-check... no
    checking for gtkdoc-check... no
    checking for gtkdoc-rebase... no
    checking for gtkdoc-mkpdf... no
    checking whether to build gtk-doc documentation... no
    checking for GTKDOC_DEPS... yes
    checking for GLIB... yes
    checking for DBUS... yes
    checking whether NLS is requested... yes
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.20.1
    checking for XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for ssh... /usr/bin/ssh
    checking sys/un.h usability... yes
    checking sys/un.h presence... yes
    checking for sys/un.h... yes
    checking stropts.h usability... yes
    checking stropts.h presence... yes
    checking for stropts.h... yes
    checking termios.h usability... yes
    checking termios.h presence... yes
    checking for termios.h... yes
    checking util.h usability... no
    checking util.h presence... no
    checking for util.h... no
    checking utmp.h usability... yes
    checking utmp.h presence... yes
    checking for utmp.h... yes
    checking sys/uio.h usability... yes
    checking sys/uio.h presence... yes
    checking for sys/uio.h... yes
    checking sys/param.h usability... yes
    checking sys/param.h presence... yes
    checking for sys/param.h... yes
    checking for getpt... yes
    checking for posix_openpt... yes
    checking for grantpt... yes
    checking for unlockpt... yes
    checking for ptsname... yes
    checking for ptsname_r... yes
    checking for socketpair... yes
    checking for openpty... no
    checking for openpty in -lutil... yes
    checking for library containing login_tty... none required
    checking for HTTP... yes
    checking for AVAHI... yes
    checking for LIBXML... yes
    checking for UDEV... yes
    checking for FUSE... yes
    checking for UDISKS2... yes
    checking for LIBSYSTEMD_LOGIN... yes
    checking for GUDEV... yes
    checking for CDDA... yes
    checking cdio/paranoia/paranoia.h usability... yes
    checking cdio/paranoia/paranoia.h presence... yes
    checking for cdio/paranoia/paranoia.h... yes
    checking for AFC... yes
    checking for GOA... yes
    checking for GPHOTO2... yes
    checking for GPHOTO25... yes
    checking for KEYRING... yes
    checking for BLURAY... yes
    checking for LIBMTP... yes
    checking for LIBMTP_1_1_5... yes
    checking for LIBMTP_1_1_6... yes
    checking for SMBCLIENT... yes
    checking libsmbclient.h usability... yes
    checking libsmbclient.h presence... yes
    checking for libsmbclient.h... yes
    checking for smbc_getFunctionStatVFS in -lsmbclient... yes
    checking for Samba libraries... yes
    checking for GTK... yes
    checking archive.h usability... yes
    checking archive.h presence... yes
    checking for archive.h... yes
    checking for archive_entry_filetype in -larchive... yes
    checking for Archive 3.libraries... yes
    checking for libgcrypt-config... /usr/bin/libgcrypt-config
    checking for LIBGCRYPT - version >= 1.2.2... yes (1.6.2)
    checking LIBGCRYPT API version... okay
    checking whether _NL_ADDRESS_LANG_TERM is declared... yes
    checking whether _NL_ADDRESS_COUNTRY_AB3 is declared... yes
    checking for glib-genmarshal... /usr/bin/glib-genmarshal
    checking sys/statfs.h usability... yes
    checking sys/statfs.h presence... yes
    checking for sys/statfs.h... yes
    checking sys/statvfs.h usability... yes
    checking sys/statvfs.h presence... yes
    checking for sys/statvfs.h... yes
    checking sys/vfs.h usability... yes
    checking sys/vfs.h presence... yes
    checking for sys/vfs.h... yes
    checking sys/mount.h usability... yes
    checking sys/mount.h presence... yes
    checking for sys/mount.h... yes
    checking for sys/param.h... (cached) yes
    checking for statvfs... yes
    checking for statfs... yes
    checking for struct statfs.f_fstypename... no
    checking for struct statfs.f_bavail... yes
    checking for struct statvfs.f_basetype... no
    checking number of arguments to statfs()... 2
    checking for more warnings... no
    checking that generated files are newer than configure... done
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating common/Makefile
    config.status: creating client/Makefile
    config.status: creating metadata/Makefile
    config.status: creating daemon/trashlib/Makefile
    config.status: creating daemon/Makefile
    config.status: creating monitor/Makefile
    config.status: creating monitor/proxy/Makefile
    config.status: creating monitor/hal/Makefile
    config.status: creating monitor/gdu/Makefile
    config.status: creating monitor/udisks2/Makefile
    config.status: creating monitor/gphoto2/Makefile
    config.status: creating monitor/afc/Makefile
    config.status: creating monitor/mtp/Makefile
    config.status: creating monitor/goa/Makefile
    config.status: creating programs/Makefile
    config.status: creating man/Makefile
    config.status: creating test/Makefile
    config.status: creating po/Makefile.in
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing po/stamp-it commands
    gvfs configuration summary:
    gio module directory : ${exec_prefix}/lib/gio/modules
    hotplug backend: gudev
    Blu-ray metadata support: yes
    HTTP/WebDAV support: yes
    ObexFTP support no
    Samba support: yes
    FUSE support: yes
    CDDA support: yes
    Gphoto2 support: yes
    MTP support: yes
    archive support: yes
    AFC support: yes
    AFP support: yes
    DNS-SD support: yes
    Build HAL volume monitor: no (with fast init path: no)
    Build GDU volume monitor: no
    Build udisks2 volume monitor: yes
    Build GOA volume monitor: yes
    Use libsystemd-login: yes
    GNOME Keyring support: yes
    GTK+ support: yes
    Bash-completion support: yes
    Installed tests: no
    make all-recursive
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    Making all in common
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    Making all in metadata
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    GEN gvfs-metadata.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    Making all in client
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    Making all in daemon
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make all-recursive
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making all in trashlib
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    GEN sftp.mount
    GEN ftp.mount
    GEN trash.mount
    GEN computer.mount
    GEN burn.mount
    GEN localtest.mount
    GEN network.mount
    GEN recent.mount
    GEN http.mount
    GEN dav.mount
    GEN dav+sd.mount
    GEN smb.mount
    GEN smb-browse.mount
    GEN cdda.mount
    GEN gphoto2.mount
    GEN mtp.mount
    GEN dns-sd.mount
    GEN archive.mount
    GEN afc.mount
    GEN afp-browse.mount
    GEN afp.mount
    GEN sftp.localmount
    GEN ftp.localmount
    GEN trash.localmount
    GEN computer.localmount
    GEN burn.localmount
    GEN localtest.localmount
    GEN network.localmount
    GEN recent.localmount
    GEN http.localmount
    GEN dav.localmount
    GEN dav+sd.localmount
    GEN smb.localmount
    GEN smb-browse.localmount
    GEN cdda.localmount
    GEN gphoto2.localmount
    GEN mtp.localmount
    GEN dns-sd.localmount
    GEN archive.localmount
    GEN afc.localmount
    GEN afp-browse.localmount
    GEN afp.localmount
    GEN gvfs-daemon.service
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making all in monitor
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making all in proxy
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make all-am
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Nothing to be done for 'all-am'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    Making all in udisks2
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    GEN org.gtk.Private.UDisks2VolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    Making all in gphoto2
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make all-am
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    GEN org.gtk.Private.GPhoto2VolumeMonitor.service
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    Making all in afc
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    GEN org.gtk.Private.AfcVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    Making all in mtp
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    GEN org.gtk.Private.MTPVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    Making all in goa
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    GEN org.gtk.Private.GoaVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making all in po
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    Making all in programs
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    Making all in test
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    GEN session.conf
    GEN gvfs-daemon.service
    GEN gvfs-metadata.service
    GEN org.gtk.Private.AfcVolumeMonitor.service
    GEN org.gtk.Private.GPhoto2VolumeMonitor.service
    GEN org.gtk.Private.UDisks2VolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Making all in man
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    ==> Entering fakeroot environment...
    ==> Starting package_gvfs()...
    Making install in common
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfscommon.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/libgvfscommon.so /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfscommon.so
    libtool: install: /usr/bin/install -c .libs/libgvfscommon.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfscommon.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    make[3]: Nothing to be done for 'install-data-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    Making install in metadata
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd-metadata '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-metadata /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-metadata
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 gvfs-metadata.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    Making install in client
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd-fuse '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-fuse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-fuse
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfsdbus.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    libtool: warning: relinking 'libgvfsdbus.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/client; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_vfs_.*|g_io_module_load|g_io_module_unload|g_io_module_query" -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgvfsdbus.la -rpath /usr/lib/gio/modules gdaemonvfs.lo gdaemonmount.lo gdaemonvolumemonitor.lo gdaemonfile.lo gdaemonfileinputstream.lo gdaemonfileoutputstream.lo gdaemonfileenumerator.lo gdaemonfilemonitor.lo gvfsdaemondbus.lo gvfsiconloadable.lo gvfsuriutils.lo gvfsurimapper.lo smburi.lo httpuri.lo afpuri.lo ../common/libgvfscommon.la -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 ../metadata/libmetadata.la -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgvfsdbus.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgvfsdbus.so
    libtool: install: /usr/bin/install -c .libs/libgvfsdbus.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgvfsdbus.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gio/modules'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/include/gvfs-client/gvfs/'
    /usr/bin/install -c -m 644 gvfsuriutils.h gvfsurimapper.h '/home/yuri/build/gvfs/pkg/gvfs/usr/include/gvfs-client/gvfs/'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/tmpfiles.d'
    /usr/bin/install -c -m 644 gvfsd-fuse-tmpfiles.conf '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/tmpfiles.d'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    Making install in daemon
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make install-recursive
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making install in trashlib
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Nothing to be done for 'install-exec-am'.
    make[4]: Nothing to be done for 'install-data-am'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd gvfsd-sftp gvfsd-trash gvfsd-computer gvfsd-burn gvfsd-localtest gvfsd-ftp gvfsd-network gvfsd-recent gvfsd-http gvfsd-dav gvfsd-smb-browse gvfsd-smb gvfsd-cdda gvfsd-gphoto2 gvfsd-mtp gvfsd-dnssd gvfsd-archive gvfsd-afc gvfsd-afp-browse gvfsd-afp '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-sftp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-sftp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-trash /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-trash
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-computer /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-computer
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-burn /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-burn
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-localtest /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-localtest
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-ftp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-ftp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-network /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-network
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-recent /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-recent
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-http /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-http
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-dav /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-dav
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-smb-browse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-smb-browse
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-smb /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-smb
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-cdda /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-cdda
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-gphoto2 /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-gphoto2
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-mtp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-mtp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-dnssd /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-dnssd
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-archive /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-archive
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afc /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afc
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afp-browse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afp-browse
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afp
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfsdaemon.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: relinking 'libgvfsdaemon.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/daemon; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -no-undefined -avoid-version -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgvfsdaemon.la -rpath /usr/lib/gvfs gvfsdaemon.lo gvfsbackend.lo gvfschannel.lo gvfsreadchannel.lo gvfswritechannel.lo gvfsmonitor.lo gvfsdaemonutils.lo gvfsjob.lo gvfsjobsource.lo gvfsjobdbus.lo gvfsjobprogress.lo gvfsjobmount.lo gvfsjobunmount.lo gvfsjobmountmountable.lo gvfsjobunmountmountable.lo gvfsjobstartmountable.lo gvfsjobstopmountable.lo gvfsjobpollmountable.lo gvfsjobopenforread.lo gvfsjobopeniconforread.lo gvfsjoberror.lo gvfsjobread.lo gvfsjobseekread.lo gvfsjobcloseread.lo gvfsjobopenforwrite.lo gvfsjobwrite.lo gvfsjobseekwrite.lo gvfsjobtruncate.lo gvfsjobclosewrite.lo gvfsjobqueryinfo.lo gvfsjobqueryinforead.lo gvfsjobqueryinfowrite.lo gvfsjobqueryfsinfo.lo gvfsjobenumerate.lo gvfsjobsetdisplayname.lo gvfsjobtrash.lo gvfsjobdelete.lo gvfsjobcopy.lo gvfsjobmove.lo gvfsjobpush.lo gvfsjobpull.lo gvfsjobmakedirectory.lo gvfsjobmakesymlink.lo gvfsjobsetattribute.lo gvfsjobqueryattributes.lo gvfsjobcreatemonitor.lo gvfskeyring.lo ../common/libgvfscommon.la -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lsecret-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgvfsdaemon.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfsdaemon.so
    libtool: install: /usr/bin/install -c .libs/libgvfsdaemon.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfsdaemon.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/GConf/gsettings'
    /usr/bin/install -c -m 644 gvfs-smb.convert gvfs-dns-sd.convert '/home/yuri/build/gvfs/pkg/gvfs/usr/share/GConf/gsettings'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/mounts'
    /usr/bin/install -c -m 644 sftp.mount ftp.mount trash.mount computer.mount burn.mount localtest.mount network.mount recent.mount http.mount dav.mount dav+sd.mount smb.mount smb-browse.mount cdda.mount gphoto2.mount mtp.mount dns-sd.mount archive.mount afc.mount afp-browse.mount afp.mount '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/mounts'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 gvfs-daemon.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    if test -n "org.gnome.system.smb.gschema.xml org.gnome.system.dns_sd.gschema.xml org.gnome.system.gvfs.enums.xml"; then \
    test -z "/usr/share/glib-2.0/schemas" || /usr/bin/mkdir -p "/home/yuri/build/gvfs/pkg/gvfs/usr/share/glib-2.0/schemas"; \
    /usr/bin/install -c -m 644 org.gnome.system.smb.gschema.xml org.gnome.system.dns_sd.gschema.xml org.gnome.system.gvfs.enums.xml "/home/yuri/build/gvfs/pkg/gvfs/usr/share/glib-2.0/schemas"; \
    test -n "/home/yuri/build/gvfs/pkg/gvfs" || glib-compile-schemas /usr/share/glib-2.0/schemas; \
    fi
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making install in monitor
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making install in proxy
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make install-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Nothing to be done for 'install-exec-am'.
    mkdir -p /home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c libgioremote-volume-monitor.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    libtool: warning: relinking 'libgioremote-volume-monitor.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -DG_LOG_DOMAIN=\"GVFS-RemoteVolumeMonitor\" -I../../common -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DGIO_MODULE_DIR=\"\" -DREMOTE_VOLUME_MONITORS_DIR=\"/usr/share/gvfs/remote-volume-monitors\" -DGVFS_LOCALEDIR=\"/usr/share/locale\" -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_io_module_(load|unload|query)" -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgioremote-volume-monitor.la -rpath /usr/lib/gio/modules libgioremote_volume_monitor_la-remote-volume-monitor-module.lo libgioremote_volume_monitor_la-gproxydrive.lo libgioremote_volume_monitor_la-gproxyvolume.lo libgioremote_volume_monitor_la-gproxymount.lo libgioremote_volume_monitor_la-gproxyshadowmount.lo libgioremote_volume_monitor_la-gproxyvolumemonitor.lo libgioremote_volume_monitor_la-gproxymountoperation.lo libgioremote_volume_monitor_la-gvfsvolumemonitordbus.lo -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 ../../common/libgvfscommon.la -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgioremote-volume-monitor.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgioremote-volume-monitor.so
    libtool: install: /usr/bin/install -c .libs/libgioremote-volume-monitor.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgioremote-volume-monitor.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gio/modules'
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    Making install in udisks2
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-udisks2-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-udisks2-volume-monitor /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfs-udisks2-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 udisks2.monitor '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.UDisks2VolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Nothing to be done for 'install-exec-am'.
    make[3]: Nothing to be done for 'install-data-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making install in po
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    linguas="af ar as ast be be@latin bg bn bn_IN ca ca@valencia cs da de el en_GB en@shaw eo es eu et fa fi fr ga gl gu he hu hi id it ja kk kn ko ku lt lv mai mk ml mr nb nds nl nn or pa pl pt pt_BR ro ru sk sl sq sr sr@latin sv ta te tg th tr ug uk vi zh_CN zh_HK zh_TW "; \
    for lang in $linguas; do \
    dir=/home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/$lang/LC_MESSAGES; \
    /bin/sh /home/yuri/build/gvfs/src/gvfs-1.22.2/install-sh -d $dir; \
    if test -r $lang.gmo; then \
    /usr/bin/install -c -m 644 $lang.gmo $dir/gvfs.mo; \
    echo "installing $lang.gmo as $dir/gvfs.mo"; \
    else \
    /usr/bin/install -c -m 644 ./$lang.gmo $dir/gvfs.mo; \
    echo "installing ./$lang.gmo as" \
    "$dir/gvfs.mo"; \
    fi; \
    if test -r $lang.gmo.m; then \
    /usr/bin/install -c -m 644 $lang.gmo.m $dir/gvfs.mo.m; \
    echo "installing $lang.gmo.m as $dir/gvfs.mo.m"; \
    else \
    if test -r ./$lang.gmo.m ; then \
    /usr/bin/install -c -m 644 ./$lang.gmo.m \
    $dir/gvfs.mo.m; \
    echo "installing ./$lang.gmo.m as" \
    "$dir/gvfs.mo.m"; \
    else \
    true; \
    fi; \
    fi; \
    done
    installing af.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/af/LC_MESSAGES/gvfs.mo
    installing ar.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ar/LC_MESSAGES/gvfs.mo
    installing as.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/as/LC_MESSAGES/gvfs.mo
    installing ast.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ast/LC_MESSAGES/gvfs.mo
    installing be.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/be/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/be@latin/LC_MESSAGES/gvfs.mo
    installing bg.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bg/LC_MESSAGES/gvfs.mo
    installing bn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bn/LC_MESSAGES/gvfs.mo
    installing bn_IN.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bn_IN/LC_MESSAGES/gvfs.mo
    installing ca.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ca/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ca@valencia/LC_MESSAGES/gvfs.mo
    installing cs.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/cs/LC_MESSAGES/gvfs.mo
    installing da.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/da/LC_MESSAGES/gvfs.mo
    installing de.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/de/LC_MESSAGES/gvfs.mo
    installing el.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/el/LC_MESSAGES/gvfs.mo
    installing en_GB.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/en_GB/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/en@shaw/LC_MESSAGES/gvfs.mo
    installing eo.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/eo/LC_MESSAGES/gvfs.mo
    installing es.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/es/LC_MESSAGES/gvfs.mo
    installing eu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/eu/LC_MESSAGES/gvfs.mo
    installing et.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/et/LC_MESSAGES/gvfs.mo
    installing fa.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fa/LC_MESSAGES/gvfs.mo
    installing fi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fi/LC_MESSAGES/gvfs.mo
    installing fr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fr/LC_MESSAGES/gvfs.mo
    installing ga.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ga/LC_MESSAGES/gvfs.mo
    installing gl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/gl/LC_MESSAGES/gvfs.mo
    installing gu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/gu/LC_MESSAGES/gvfs.mo
    installing he.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/he/LC_MESSAGES/gvfs.mo
    installing hu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/hu/LC_MESSAGES/gvfs.mo
    installing hi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/hi/LC_MESSAGES/gvfs.mo
    installing id.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/id/LC_MESSAGES/gvfs.mo
    installing it.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/it/LC_MESSAGES/gvfs.mo
    installing ja.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ja/LC_MESSAGES/gvfs.mo
    installing kk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/kk/LC_MESSAGES/gvfs.mo
    installing kn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/kn/LC_MESSAGES/gvfs.mo
    installing ko.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ko/LC_MESSAGES/gvfs.mo
    installing ku.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ku/LC_MESSAGES/gvfs.mo
    installing lt.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/lt/LC_MESSAGES/gvfs.mo
    installing lv.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/lv/LC_MESSAGES/gvfs.mo
    installing mai.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mai/LC_MESSAGES/gvfs.mo
    installing mk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mk/LC_MESSAGES/gvfs.mo
    installing ml.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ml/LC_MESSAGES/gvfs.mo
    installing mr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mr/LC_MESSAGES/gvfs.mo
    installing nb.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nb/LC_MESSAGES/gvfs.mo
    installing nds.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nds/LC_MESSAGES/gvfs.mo
    installing nl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nl/LC_MESSAGES/gvfs.mo
    installing nn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nn/LC_MESSAGES/gvfs.mo
    installing or.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/or/LC_MESSAGES/gvfs.mo
    installing pa.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pa/LC_MESSAGES/gvfs.mo
    installing pl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pl/LC_MESSAGES/gvfs.mo
    installing pt.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pt/LC_MESSAGES/gvfs.mo
    installing pt_BR.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pt_BR/LC_MESSAGES/gvfs.mo
    installing ro.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ro/LC_MESSAGES/gvfs.mo
    installing ru.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ru/LC_MESSAGES/gvfs.mo
    installing sk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sk/LC_MESSAGES/gvfs.mo
    installing sl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sl/LC_MESSAGES/gvfs.mo
    installing sq.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sq/LC_MESSAGES/gvfs.mo
    installing sr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sr/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sr@latin/LC_MESSAGES/gvfs.mo
    installing sv.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sv/LC_MESSAGES/gvfs.mo
    installing ta.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ta/LC_MESSAGES/gvfs.mo
    installing te.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/te/LC_MESSAGES/gvfs.mo
    installing tg.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/tg/LC_MESSAGES/gvfs.mo
    installing th.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/th/LC_MESSAGES/gvfs.mo
    installing tr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/tr/LC_MESSAGES/gvfs.mo
    installing ug.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ug/LC_MESSAGES/gvfs.mo
    installing uk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/uk/LC_MESSAGES/gvfs.mo
    installing vi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/vi/LC_MESSAGES/gvfs.mo
    installing zh_CN.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_CN/LC_MESSAGES/gvfs.mo
    installing zh_HK.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_HK/LC_MESSAGES/gvfs.mo
    installing zh_TW.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_TW/LC_MESSAGES/gvfs.mo
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    Making install in programs
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfs-mount gvfs-cat gvfs-open gvfs-save gvfs-ls gvfs-tree gvfs-info gvfs-set-attribute gvfs-trash gvfs-rename gvfs-rm gvfs-copy gvfs-move gvfs-monitor-file gvfs-monitor-dir gvfs-mkdir gvfs-mime '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    libtool: install: /usr/bin/install -c gvfs-mount /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mount
    libtool: install: /usr/bin/install -c gvfs-cat /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-cat
    libtool: install: /usr/bin/install -c gvfs-open /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-open
    libtool: install: /usr/bin/install -c gvfs-save /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-save
    libtool: install: /usr/bin/install -c gvfs-ls /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-ls
    libtool: install: /usr/bin/install -c gvfs-tree /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-tree
    libtool: install: /usr/bin/install -c gvfs-info /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-info
    libtool: install: /usr/bin/install -c gvfs-set-attribute /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-set-attribute
    libtool: install: /usr/bin/install -c gvfs-trash /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-trash
    libtool: install: /usr/bin/install -c gvfs-rename /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-rename
    libtool: install: /usr/bin/install -c gvfs-rm /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-rm
    libtool: install: /usr/bin/install -c gvfs-copy /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-copy
    libtool: install: /usr/bin/install -c gvfs-move /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-move
    libtool: install: /usr/bin/install -c gvfs-monitor-file /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-monitor-file
    libtool: install: /usr/bin/install -c gvfs-monitor-dir /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-monitor-dir
    libtool: install: /usr/bin/install -c gvfs-mkdir /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mkdir
    libtool: install: /usr/bin/install -c gvfs-mime /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mime
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /usr/bin/install -c gvfs-less '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/bash-completion/completions'
    /usr/bin/install -c -m 644 completion/gvfs '/home/yuri/build/gvfs/pkg/gvfs/usr/share/bash-completion/completions'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    Making install in test
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make[3]: Nothing to be done for 'install-exec-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Making install in man
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Nothing to be done for 'install-exec-am'.
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man1'
    /usr/bin/install -c -m 644 gvfs-cat.1 gvfs-copy.1 gvfs-info.1 gvfs-ls.1 gvfs-less.1 gvfs-mime.1 gvfs-mkdir.1 gvfs-monitor-dir.1 gvfs-monitor-file.1 gvfs-mount.1 gvfs-move.1 gvfs-open.1 gvfs-rename.1 gvfs-rm.1 gvfs-save.1 gvfs-set-attribute.1 gvfs-trash.1 gvfs-tree.1 gvfsd.1 gvfsd-fuse.1 gvfsd-metadata.1 '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man1'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man7'
    /usr/bin/install -c -m 644 gvfs.7 '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man7'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Nothing to be done for 'install-exec-am'.
    make install-data-hook
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    if test -z "/home/yuri/build/gvfs/pkg/gvfs" -a "/usr/bin/gio-querymodules" != "no" ; then \
    /usr/bin/gio-querymodules /usr/lib/gio/modules ; \
    fi
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-smb()...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-smb"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-afc()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-afc-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-afc-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs/gvfs-afc-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 afc.monitor '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.AfcVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-afc"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-afp()...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-afp"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-gphoto2()...
    make install-am
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-gphoto2-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-gphoto2-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs/gvfs-gphoto2-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 gphoto2.monitor '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.GPhoto2VolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/dbus-1/services'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-gphoto2"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-goa()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-goa-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-goa-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs/gvfs-goa-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 goa.monitor '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.GoaVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-goa"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-mtp()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-mtp-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-mtp-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs/gvfs-mtp-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 mtp.monitor '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.MTPVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-mtp"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: gvfs 1.22.2-4 (Mon Jan 19 12:57:55 EET 2015)
    What is this supposed to mean? Should I ignore it?

    On closer inspection, there are many more warnings there. Like:
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    libtool: warning: relinking 'libgvfsdbus.la'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'

  • /usr/lib/acct/fwtmp trouble

    While trying to trim my wmtpx file I found what I think is a bug.
    I used:
    /usr/lib/acct/fwtmp < /var/adm/wmtpx > /var/tmp/wtmp.ascii
    /usr/bin/tail -500 /var/tmp/wmtp.ascii > /var/tmp/wtmpx-last500
    /usr/lib/acct/fwtmp -ic </var/tmp/wtmpx-last500 >/var/tmp/wtmpx
    When I now use the who /var/tmp/wtmpx command I get:
    who: Error --- entry has ut_type of 14898
    when maximim is 9
    The value 14898 varies but is repeated over and over.
    The original /var/adm/wtmpx file was not corrupt and had displayed no errors with the who command. Unless I am reading the fwtmp manual page incorrectly this command should allow me to trim my wmtpx file to the last 500 entries.
    I am working on an Ultra 5 running Solaris 8 for this test, but this happens on most all of our Solaris systems.
    I really do not want to just zero out the wtmpx file, and start over.
    Any suggestions??

    I haven't really taken a deep look at your problem, but i know that there where plenty of bugs in fwtmp in the Solaris 8 and Solaris 9 releases, which where fixed by patches. So ensure that you have the latest patches installed.
    The SPARC patches are, for Solaris 9:
    117473-01
    For Solaris 8:
    116943-02      
    .7/M.

  • [PROBLEM SOLVED] After last update, Can't use keyboard in Xorg

    Apparently the last system upgrade installed "xf86-input-keyboard-1.3.2-1-i686" but I reverted back to "xf86-input-keyboard-1.3.1-1-i686" and everything is working again.
    Lesson learned: put all xorg related packages to hold because my geforce2 mx440 won't need updates.
    This is just frustrating. After doing a system upgrade (which upgraded xorg to version 1.5) I can't use the keyboard anymore. In fact, my screen would freeze also, as long as I was using the latest Xorg version. This machine's card is a geforce2 mx440.
    So I downgraded xorg-server with pacman -Rd xorg-server and pacman -U /var/cache/pacman/pkg/xorg-server-yadayada1.4yadayada; Fine, I can use the mouse and open X just as normal as before. BUT the keyboard seems helpless.
    xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig:  version 1.0  (buildmeister@builder3)  Tue Jan 22 19:53:46 PST                                                                               2008
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings:  version 1.0  (buildd@vernadsky)  Tue Mar  4 20:24:34 UTC 200                                                                              8
    #150708
    Section "Screen"
            Identifier      "Screen0"
            Device          "Videocard0"
            Monitor         "Monitor0"
            Option          "TwinView"      "0"
            Option          "TwinViewXineramaInfoOrder"     "CRT-0"
            Option          "metamodes"     "1024x768_85 +0+0; 1280x1024 +0+0; 1152x                                                                              864_75 +0+0; 800x600_100 +0+0; 640x480_100 +0+0"
            Option          "DisableGLXRootClipping"        "True"
            Option          "AddARGBGLXVisuals"             "True"
            SubSection "Display"
                    #Virtual        1280    1024
                    Virtual 1024    768
                    Depth   24
                    Modes           "1024x768@85"   "1152x864@75"   "1280x1024@60" "                                                                              800x600@100"    "640x480@100"
            EndSubSection
            Defaultdepth    24
    EndSection
    Section "Screen"
            Identifier      "screen1"
            Device          "device1"
            Monitor         "monitor1"
            SubSection "Display"
                    Depth   24
                    Modes           "1024x768@85"
    #Modes           "640x480@60"
            EndSubSection
            Option          "AddARGBGLXVisuals"     "True"
            #Option                 "AllowGLXWithComposite" "True"
            Defaultdepth    24
    EndSection
    Section "Device"
            Identifier      "Device0"
            Driver          "nvidia"
            Vendorname      "NVIDIA Corporation"
    EndSection
    Section "Device"
            Identifier      "Videocard0"
            Driver          "nvidia"
            Vendorname      "NVIDIA"
            Boardname       "NVIDIA GeForce2 Integrated (generic)"
            Busid           "PCI:1:0:0"
            Screen  0
            Option          "RenderAccel" "true"
    EndSection
    Section "Device"
            Identifier      "device1"
            Driver          "nvidia"
            Vendorname      "NVIDIA"
            Boardname       "NVIDIA GeForce2 Integrated (generic)"
            Busid           "PCI:1:0:0"
            Screen  1
    EndSection
    Section "InputDevice"
            # generated from default
            Identifier      "Mouse0"
            Driver          "mouse"
            Option          "Protocol"      "auto"
            Option          "Device"        "/dev/psaux"
            Option          "Emulate3Buttons"       "no"
            Option          "ZAxisMapping"  "4 5"
    EndSection
    Section "InputDevice"
            # generated from default
            Identifier      "Keyboard0"
            Driver          "kbd" #"keyboard"
            Option          "XkbLayout"   "br"
            Option          "XkbModel"    "abnt2"
    EndSection
    Section "ServerLayout"
            Identifier      "Layout0"
      screen 0 "Screen0" 0 0
            Inputdevice     "Keyboard0"     "CoreKeyboard"
            Inputdevice     "Mouse0"        "CorePointer"
    EndSection
    Section "Module"
            Load            "extmod"
    #       Load            "type1"
            Load            "freetype"
            Load            "GLX"
    #       Load            "v4l"
    EndSection
    Section "Monitor"
            Identifier      "Monitor0"
            Vendorname      "Samsung"
            Modelname       "Samsung SyncMaster 753DF(X)/703DF(X)/783DF(X)/CD173A(T)                                                                              "
            Horizsync       30.0    -       71.0
            Vertrefresh     50.0    -       160.0
            Gamma   1
      modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
      modeline  "640x480@72" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
      modeline  "640x480@75" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
      modeline  "640x480@85" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
      modeline  "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
      modeline  "800x600@72" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
      modeline  "800x600@75" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
      modeline  "800x600@85" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
      modeline  "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
      modeline  "832x624@75" 57.3 832 864 928 1152 624 625 628 667 -hsync -vsync
      modeline  "1024x768@85" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
      modeline  "1024x768@75" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
      modeline  "1024x768@70" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
      modeline  "1024x768@60" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
      modeline  "1024x768@43" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync                                                                               interlace
      modeline  "1152x864@75" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsyn                                                                              c
      modeline  "1280x960@60" 102.1 1280 1360 1496 1712 960 961 964 994 -hsync +vsyn                                                                              c
      modeline  "1280x1024@60" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync                                                                               +vsync
      modeline  "1400x1050@60" 122.6 1400 1488 1640 1880 1050 1051 1054 1087 -hsync                                                                               +vsync
    EndSection
    Section "Monitor"
            Identifier      "monitor1"
            Vendorname      "Plug 'n' Play"
            Modelname       "Plug 'n' Play"
            Gamma   1
      modeline  "1024x768@85" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
      #modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    EndSection
    Section "Extensions"
            Option          "Composite"     "Enable"
            Option          "NoPM"          "True"
    EndSection
    #Section "Files"
    #       Rgbpath         "/usr/X11R6/lib/X11/rgb"
    #       EndSection
    pacman -Q |grep -ir "xorg"
    xorg-apps 1.0.3-3
    xorg-font-utils 1.0.3-3
    xorg-fonts-100dpi 1.0.1-1
    xorg-fonts-75dpi 1.0.1-2
    xorg-fonts-alias 1.0.1-1
    xorg-fonts-encodings 1.0.2-2
    xorg-fonts-misc 1.0.0-3
    xorg-res-utils 1.0.3-2
    xorg-server 1.4.2-1
    xorg-server-utils 7.3-1
    xorg-twm 1.0.4-2
    xorg-utils 7.3-1
    xorg-xauth 1.0.3-1
    xorg-xinit 1.1.1-1
    xorg-xkb-utils 7.3-1
    Xorg.0.log:
    (II) NVIDIA(0): Initialized GART.
    (II) NVIDIA(0): Setting mode "1024x768_85+0+0"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Setting vga for screen 0.
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (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) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (EE) No Input driver matching `kbd'
    (**) Option "Protocol" "auto"
    (**) Mouse0: Device: "/dev/psaux"
    (**) Mouse0: Protocol: "auto"
    (**) Option "CorePointer"
    (**) Mouse0: always reports core events
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons" "no"
    (**) Option "ZAxisMapping" "4 5"
    (**) Mouse0: ZAxisMapping: buttons 4 and 5
    (**) Mouse0: Buttons: 9
    (**) Mouse0: Sensitivity: 1
    (II) evaluating device (Mouse0)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    What in hell means the (EE) No Input driver matching `kbd'? I have no idea what happened because no configs were changed whatsoever.
    Last edited by joqueza (2009-02-26 01:39:27)

    joqueza wrote:This is just frustrating. After doing a system upgrade (which upgraded xorg to version 1.5) I can't use the keyboard anymore. In fact, my screen would freeze also, as long as I was using the latest Xorg version. This machine's card is a geforce2 mx440..
    Perhaps you can find some help here http://wiki.archlinux.org/index.php/Xor … otplugging (or in one of the many threads about xorg 1.5 breaking input devices)
    No Idea about your problem after downgrading (expect just as a guess, there is some problem with xbinkeys when it is autostarted with the window manager -- http://bbs.archlinux.org/viewtopic.php?id=65468).

  • "Unable to load DLL '/system/usr/lib/libidlprinter.so': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"}

    I am using intermec printer (directly loading to the printer no system used for printing) for this program and if i run this,i'm getting this below error
    "Unable to load DLL '/system/usr/lib/libidlprinter.so': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"}
    any help on this .........
    Thanks in advance.
    using System.Globalization;
    using Intermec.Printer;
    using System;
    using System.IO;
    using System.Threading;
    class TestCommunicationUSBHost
        static UI.Canvas _canvas;
        static UI.Keypad _keypad;
        static UI.Canvas.Text _exitInstruction;
        static UI.Canvas.Text _appliCationTitle;
        // static UI.Canvas.Text _companyname;
        static string _operatorCodeValue;
        static UI.Canvas.Text _operatorCodeDisplayText;
        private const string operatorCodeDisplayHeader = "SCAN Code: ";
        static PrintControl printControl = new PrintControl();
        static Drawing drawing = new Drawing();
        private static bool _isExitKeyPressed = false;
      //  private static Communication.USBHost _usbHost;
        static int Main(string[] args)
            // Init new UI canvas
            _canvas = new UI.Canvas();
            // Set up some colors to use
            Color white = new Color(255, 255, 255, 255);
            Color blue = new Color(50, 100, 150);
            // Add UI black background
            UI.Canvas.Rectangle bg = new UI.Canvas.Rectangle(0, 0, _canvas.Width, _canvas.Height, blue);
            _canvas += bg;
            // Add Line
            UI.Canvas.Line ln = new UI.Canvas.Line(10, 35, 300, 35, white);
            _canvas += ln;
            // _companyname = new UI.Canvas.Text(30, 45, "KEYBORD DEMO", "Univers Bold", 18, white);
            // _canvas += _companyname;
            // Add UI keycode text
            _exitInstruction = new UI.Canvas.Text(20, 200, "Press [F4] to EXIT.", "Univers Bold", 18, white);
            _canvas += _exitInstruction;
            _appliCationTitle = new UI.Canvas.Text(05, 05, " A1 Technologies", "Univers Bold", 23, white);
            _canvas += _appliCationTitle;
            _operatorCodeDisplayText = new UI.Canvas.Text(20, 100, operatorCodeDisplayHeader, "Univers Bold", 20, white);
            _canvas += _operatorCodeDisplayText;
            // Set up keypad event handler
            _keypad = new UI.Keypad();
            _keypad.KeyDown += new UI.Keypad.KeyEventHandler(KeyHandler);
            // Set up timer event handler
            UI.Canvas.Timer timer = new UI.Canvas.Timer();
            timer.Interval = 1000;
            timer.Tick += new UI.Canvas.TimerEventHandler(TimerHandler);
            timer.Start();
            //int USBHost port o or Setup USBHost
            Communication.USBHost _usbHost = new Communication.USBHost("/dev/ttyUSB0");
            _usbHost.Open();
            // Enter UI main loop
            _canvas.Run();
            // Cleanup UI
            _canvas.Dispose();
            _keypad.Dispose();
            return 0;
        public static void KeyHandler(Object o, UI.Keypad.KeyEventArgs eventArgs)
            int keycode;
            keycode = eventArgs.KeyChar;
            if (keycode == 4)
                _isExitKeyPressed = true;
                return;
        public static void TimerHandler(Object obj, UI.Canvas.TimerEventArgs eventArgs)
            if (_isExitKeyPressed)
                UI.Canvas.Timer timer = (UI.Canvas.Timer)obj;
                timer.Stop();
                _canvas.Exit();
            else
                // Open the first USB host device and read any data sent
                Communication.USBHost usbHost = new Communication.USBHost("/dev/ttyUSB0");
                usbHost.Open();
                if (usbHost.IsOpen)
                    Console.WriteLine("Opened /dev/ttyUSB0 ({0})", usbHost.HIDName);
                    FileStream fileStream = usbHost.GetStream();
                    try
                        int timeout = 0;
                        int i;
                        while (timeout < 5)
                            // Console.WriteLine("Exiting in {0} secs", 10 - timeout);
                            Byte[] bytes = new Byte[256];
                            if ((i = fileStream.Read(bytes, 0, bytes.Length)) > 0)
                                // string data = System.Text.Encoding.ASCII.GetString(bytes, 0, bytes.Length);
                                string data = System.Text.Encoding.ASCII.GetString(bytes, 0, i++);
                                _operatorCodeValue = data;
                                // _operatorCodeValue = _operatorCodeValue + data;
                                _operatorCodeDisplayText.Data = operatorCodeDisplayHeader + _operatorCodeValue.Substring(_operatorCodeValue.Length - 7, 7);
                                int leftCordinate = 40;
                                drawing.Clear();
                                Drawing.Text line1Text = new Drawing.Text();
                                line1Text.Point = new Point(leftCordinate + 30, 40);
                                line1Text.Data = _operatorCodeValue.Substring(_operatorCodeValue.Length - 7, 7);
                                line1Text.Height = 18;
                                line1Text.FontName = "CG Times Bold";
                                drawing += line1Text;
                                drawing.PartialRendering = true;
                                printControl.PrintFeed(drawing, 4);
                            else
                                Thread.Sleep(1000);
                                timeout++;
                    catch (Exception ex)
                        Console.WriteLine("Exception reading /dev/ttyUSB0: {0}", ex.Message);
                // Wait a short while
                Thread.Sleep(1000);
                // Clean up 
               // usbHost.Dispose();
            return;

    Hiya,
     The error is because the app tried to import that driver but it was not found. So, you will need
    to recheck your project setup, provide locations for imports, etc. I am not familar with Intermec Printer.
    The code snippet does not show any information about the DLL import, check there too.
    Hope this helps. :)

  • Improper message coming on console  " ftpd[16809]: [ID 487707 auth.error] load_modules: can not open module /usr/lib/security/pam_unix_session.so.1"

    Hi All,
    I am using solaris 10u10 on Sun Fire platform. I am getting below message on cosole.
    ftpd[16809]: [ID 776383 auth.error] open_module: stat(/usr/lib/security/pam_unix_session.so.1) failed: No such file or directory
    ftpd[16809]: [ID 487707 auth.error] load_modules: can not open module /usr/lib/security/pam_unix_session.so.1
    ftpd[16810]: [ID 776383 auth.error] open_module: stat(/usr/lib/security/pam_unix_session.so.1) failed: No such file or directory
    ftpd[16810]: [ID 487707 auth.error] load_modules: can not open module /usr/lib/security/pam_unix_session.so.1
    ftpd[16815]: [ID 776383 auth.error] open_module: stat(/usr/lib/security/pam_unix_session.so.1) failed: No such file or directory
    ftpd[16815]: [ID 487707 auth.error] load_modules: can not open module /usr/lib/security/pam_unix_session.so.1
    ftpd[16816]: [ID 776383 auth.error] open_module: stat(/usr/lib/security/pam_unix_session.so.1) failed: No such file or directory
    ftpd[16816]: [ID 487707 auth.error] load_modules: can not open module /usr/lib/security/pam_unix_session.so.1
    ftpd[16817]: [ID 776383 auth.error] open_module: stat(/usr/lib/security/pam_unix_session.so.1) failed: No such file or directory
    ftpd[16817]: [ID 487707 auth.error] load_modules: can not open module /usr/lib/security/pam_unix_session.so.1
    Also the file is present on the server 
    root@atrcx1454/var/adm> ls -lrt /usr/lib/security/pam_unix_session.so.1
    -rwxr-xr-x   1 root     bin        20652 Mar 19  2008 /usr/lib/security/pam_unix_session.so.1
    Can anyone help why above message is coming on console

    Is the ftp daemon that you use provided by the Solaris media ? If this is not the case, then would recommend to contact the software maintainer for more help.
    And regarding chroot, please check this URL to know what it is : Sandbox (computer security) - Wikipedia, the free encyclopedia
    Depending how this environment is configured, the library is maybe not present in this one.

  • When I download firefox, using recommended setting, or my own, all the sub files/folders like plugins, modules, updater end up on the desktop as well as in the file location. And when I try to put them into the file location, they don't. And when I delete

    When I download firefox, using recommended setting, or my own, all the sub files/folders like plugins, modules, updater end up on the desktop as well as in the file location. And when I try to put them into the file location, they don't. And when I delete them, FireFox won't open. I tried deleting FireFox and reinstalling it multiple times, and a message pops up sometimes that says FireFox may not have installed correctly, so I follow the steps, but all the extra icons on my desktop don't go away. This has happened every time I have downloaded FireFox. The browser itself works, but I need to know how to get rid of these icons, but still be able to use FireFox. This is on a new computer, with Windows 7.
    == I downloaded FireFox. ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6

    Managed to solve this myself. Just went to properties > hidden.

  • Function Module where-used list does not find update rule programs

    We have function modules called in update rules. The where-used list in the function builder does not find the update rule programs.
    For example, function DATE_GET_WEEK is called in an update rule to InfoCube YCUBE001. The activated program name for this update rule is GP3PWI6PKM5Y3K75A370DIS8I77. When I goto SE37, enter the function DATE_GET_WEEK, click the where-used button, check the programs option and search. The system does not find the program GP3PWI6PKM5Y3K75A370DIS8I77.
    Without this search capability it is difficult to do an impact analysis of changing function modules. Does anyone know of a solution?

    hi,
    i think the reason is the code of update rules' generated program are stored line by line in table(rsaabap), update rules program itself stored in table rsupdrout, link with field codeid, another useful table is rsupdinfo which store infocube, infosource related.  other info may stored in some other rs* and rsa* tables.
    try to create following program in your system, and run, type in the function module name, and will display out the update rules program id, with additional useful info : which infoprovider, infosource, and detail info of the routine and infoobject in the update rule that using that function module. you may modify the program to have better display out list.
    hope this helps.
    REPORT  Z_FM_UPDRUL_WHEREUSED.
    data : lv_sfm,
           lv_line type string,
           lv_where type string.
    tables : rsaabap,RSUPDROUT,rsupdinfo.
    select-options:
    s_fm for rsaabap-LINE.
    start-of-selection.
      loop at s_fm.
        concatenate s_fm-low ' ' into lv_sfm.
        concatenate '%' s_fm-low into lv_line.
        concatenate lv_line '%' into lv_line.
        write : / 'function module', 'update rule id', 'routine id', 'infoobject', 'infocube', 'infosource'.
        select * from rsaabap
        where line like lv_line and objvers = 'A'.
           select * from rsupdrout
           where codeid = rsaabap-codeid and objvers = 'A'.
             select single * from rsupdinfo
             where updid = rsupdrout-updid and objvers = 'A'.
               write: / lv_sfm, rsupdrout-updid, rsaabap-codeid,
                        rsupdrout-iciobjnm, rsupdinfo-infocube,
                        rsupdinfo-isource.
        endselect.
        endselect.
      endloop.

Maybe you are looking for