You are not logged in.

#1 2017-06-09 16:12:02

Cinbu
Member
Registered: 2016-12-27
Posts: 29

X server not working after update

I just updated my complete system, the first time this month and now the X server is not working anymore.
If I log in (I don't use a graphical login screen) nothing happens for a second and then the message

 
waiting for X server to begin accepting connection
.. 
.. 
.. 
Never ending dots

is printed.
After a while this stops and I'm not logged in.
Systemctl - - all reports that the display-manager.service was not found.

What could I do? If I log on with my root user, which does not start a graphical display everything is working.

Offline

#2 2017-06-09 18:40:00

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: X server not working after update

How are you starting X? Which DE/WM are you using? Also which graphics driver?

Offline

#3 2017-06-09 19:02:09

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

I use i3 as my window manager. I removed my .xinitrc, then I could login. Running xstart still yields the same error.

I just noticed running lspci freezes my computer, I can't even stop it with ctrl-c. Could this result from the same problem?

I'm not working that long with arch yet. In which log files should I look to identify the problems?

Last edited by Cinbu (2017-06-09 19:18:52)

Offline

#4 2017-06-09 19:15:17

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,523
Website

Re: X server not working after update

x33a asked how you start x, not what WM you were using.  The lscpi issue is not likely related, but it's hard to know yet as you've not given us much to work with.

Please post the content of your shellrc file(s).  Also, once succesfully logged in (before attempting startx) post the output of `ps u`


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#5 2017-06-09 20:02:17

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

I'm really thankful for your help.
Unfortunately I never had a problem like this before, so I don't really know where to look for errors.
I use zsh, with the oh-my-zsh configuration.
This is my .zshrc:

 
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH

# Path to your oh-my-zsh installation.
ZSH=/usr/share/oh-my-zsh/

# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
#ZSH_THEME="robbyrussell"
ZSH_THEME="agnoster"
DEFAULT_USER=jonas
prompt_context(){}

# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"

# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"

# Uncomment the following line to disable bi-weekly auto-update checks.
DISABLE_AUTO_UPDATE="true"

# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13

# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"

# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"

# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"

# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"

# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"

# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# HIST_STAMPS="mm/dd/yyyy"

# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder

# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)


# User configuration

# export MANPATH="/usr/local/man:$MANPATH"

# You may need to manually set your language environment
# export LANG=en_US.UTF-8

# Make neovim my standard editor
export EDITOR=/usr/bin/nvim
export BROWSER=/usr/bin/google-chrome-stable

# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
#   export EDITOR='vim'
# else
#   export EDITOR='mvim'
# fi

# Compilation flags
# export ARCHFLAGS="-arch x86_64"

# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"

# zsh assumes wrong decoding
export LC_CTYPE=en_US.UTF-8

# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#

# Function to switch and save the current path
function cd() {
  builtin cd "$@";
  echo "$PWD" > ~/.cwd;
}
export cd
alias cwd='cd "$(cat ~/.cwd)"'
# Run this automatically, I usually want to be in my recent directory
cwd

alias init.vim="nvim ~/.config/nvim/init.vim"
alias i3.config="nvim ~/.config/i3/config"
alias view="nvim -R"
alias zshrc="nvim ~/.zshrc"
alias please='sudo $(fc -nl -1)'

ZSH_CACHE_DIR=$HOME/.oh-my-zsh-cache
if [[ ! -d $ZSH_CACHE_DIR ]]; then
  mkdir $ZSH_CACHE_DIR
fi

source $ZSH/oh-my-zsh.sh

My bashrc is quite short, I didn't change something there myself:

 
#
# ~/.bashrc
#

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '

I also found an old version xorg.log file. Although it was not updated since the error occurs if might help:

 
[   264.576] 
X.Org X Server 1.19.3
Release Date: 2017-03-15
[   264.576] X Protocol Version 11, Revision 0
[   264.576] Build Operating System: Linux 4.9.11-1-ARCH x86_64 
[   264.576] Current Operating System: Linux yoga-510-arch 4.10.13-1-ARCH #1 SMP PREEMPT Thu Apr 27 12:15:09 CEST 2017 x86_64
[   264.576] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=b0c31b50-c336-4e3e-866b-be816a2fa200 rootfstype=ext4 add_efi_memmap rw
[   264.576] Build Date: 07 April 2017  05:42:48PM
[   264.576]  
[   264.576] Current version of pixman: 0.34.0
[   264.576] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   264.576] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   264.577] (==) Log file: "/var/log/Xorg.1.log", Time: Tue May 16 15:33:58 2017
[   264.577] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   264.577] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   264.577] (==) No Layout section.  Using the first Screen section.
[   264.577] (==) No screen section available. Using defaults.
[   264.577] (**) |-->Screen "Default Screen Section" (0)
[   264.577] (**) |   |-->Monitor "<default monitor>"
[   264.577] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   264.577] (==) Automatically adding devices
[   264.577] (==) Automatically enabling devices
[   264.577] (==) Automatically adding GPU devices
[   264.577] (==) Automatically binding GPU devices
[   264.577] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   264.577] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[   264.577] 	Entry deleted from font path.
[   264.577] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   264.577] 	Entry deleted from font path.
[   264.577] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   264.577] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   264.577] 	Entry deleted from font path.
[   264.577] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   264.577] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/
[   264.577] (==) ModulePath set to "/usr/lib/xorg/modules"
[   264.577] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   264.577] (II) Loader magic: 0x822d60
[   264.577] (II) Module ABI versions:
[   264.577] 	X.Org ANSI C Emulation: 0.4
[   264.577] 	X.Org Video Driver: 23.0
[   264.577] 	X.Org XInput driver : 24.1
[   264.577] 	X.Org Server Extension : 10.0
[   264.577] (++) using VT number 3

[   264.577] (--) controlling tty is VT number 3, auto-enabling KeepTty
[   264.578] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
[   264.578] (II) xfree86: Adding drm device (/dev/dri/card0)
[   264.579] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[   264.579] (II) xfree86: Adding drm device (/dev/dri/card1)
[   264.579] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 12 paused 0
[   264.580] (--) PCI:*(0:0:2:0) 8086:5916:17aa:39bc rev 2, Mem @ 0xb1000000/16777216, 0xc0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[   264.580] (--) PCI: (0:1:0:0) 1002:6900:17aa:39bc rev 129, Mem @ 0xa0000000/268435456, 0xb0000000/2097152, 0xb2400000/262144, I/O @ 0x00004000/256, BIOS @ 0x????????/131072
[   264.580] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   264.580] (II) LoadModule: "glx"
[   264.580] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   264.581] (II) Module glx: vendor="X.Org Foundation"
[   264.581] 	compiled for 1.19.3, module version = 1.0.0
[   264.581] 	ABI class: X.Org Server Extension, version 10.0
[   264.581] (==) Matched intel as autoconfigured driver 0
[   264.581] (==) Matched ati as autoconfigured driver 1
[   264.581] (==) Matched intel as autoconfigured driver 2
[   264.581] (==) Matched modesetting as autoconfigured driver 3
[   264.581] (==) Matched fbdev as autoconfigured driver 4
[   264.581] (==) Matched vesa as autoconfigured driver 5
[   264.581] (==) Assigned the driver to the xf86ConfigLayout
[   264.581] (II) LoadModule: "intel"
[   264.581] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   264.581] (II) Module intel: vendor="X.Org Foundation"
[   264.581] 	compiled for 1.19.3, module version = 2.99.917
[   264.581] 	Module class: X.Org Video Driver
[   264.581] 	ABI class: X.Org Video Driver, version 23.0
[   264.581] (II) LoadModule: "ati"
[   264.581] (WW) Warning, couldn't open module ati
[   264.581] (II) UnloadModule: "ati"
[   264.581] (II) Unloading ati
[   264.581] (EE) Failed to load module "ati" (module does not exist, 0)
[   264.581] (II) LoadModule: "modesetting"
[   264.581] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[   264.581] (II) Module modesetting: vendor="X.Org Foundation"
[   264.581] 	compiled for 1.19.3, module version = 1.19.3
[   264.581] 	Module class: X.Org Video Driver
[   264.581] 	ABI class: X.Org Video Driver, version 23.0
[   264.581] (II) LoadModule: "fbdev"
[   264.581] (WW) Warning, couldn't open module fbdev
[   264.581] (II) UnloadModule: "fbdev"
[   264.581] (II) Unloading fbdev
[   264.581] (EE) Failed to load module "fbdev" (module does not exist, 0)
[   264.581] (II) LoadModule: "vesa"
[   264.581] (WW) Warning, couldn't open module vesa
[   264.581] (II) UnloadModule: "vesa"
[   264.581] (II) Unloading vesa
[   264.581] (EE) Failed to load module "vesa" (module does not exist, 0)
[   264.581] (II) intel: Driver for Intel(R) 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
[   264.581] (II) intel: Driver for Intel(R) HD Graphics
[   264.581] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[   264.581] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[   264.581] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   264.581] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20161121
[   264.581] (II) intel(0): SNA compiled from 2.99.917-772-gc72bb27a
[   264.581] (WW) Falling back to old probe method for modesetting
[   264.581] (II) modeset(G0): using drv /dev/dri/card1
[   264.581] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 620
[   264.581] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 2 threads
[   264.581] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   264.581] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[   264.582] (==) intel(0): RGB weight 888
[   264.582] (==) intel(0): Default visual is TrueColor
[   264.582] (II) intel(0): Output eDP1 using monitor section eDP1
[   264.582] (**) intel(0): Option "LeftOf" "HDMI"
[   264.582] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
[   264.582] (II) intel(0): Enabled output eDP1
[   264.582] (II) intel(0): Output HDMI1 has no monitor section
[   264.582] (II) intel(0): Enabled output HDMI1
[   264.582] (II) intel(0): Output DP1 has no monitor section
[   264.582] (II) intel(0): Enabled output DP1
[   264.582] (II) intel(0): Output HDMI2 has no monitor section
[   264.582] (II) intel(0): Enabled output HDMI2
[   264.582] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[   264.582] (II) intel(0): Output VIRTUAL1 has no monitor section
[   264.582] (II) intel(0): Enabled output VIRTUAL1
[   264.583] (II) intel(0): EDID for output eDP1
[   264.583] (II) intel(0): Manufacturer: BOE  Model: 65e  Serial#: 0
[   264.583] (II) intel(0): Year: 2015  Week: 1
[   264.583] (II) intel(0): EDID Version: 1.4
[   264.583] (II) intel(0): Digital Display Input
[   264.583] (II) intel(0): 6 bits per channel
[   264.583] (II) intel(0): Digital interface is DisplayPort
[   264.583] (II) intel(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[   264.583] (II) intel(0): Gamma: 2.20
[   264.583] (II) intel(0): No DPMS capabilities specified
[   264.583] (II) intel(0): Supported color encodings: RGB 4:4:4 
[   264.583] (II) intel(0): First detailed timing is preferred mode
[   264.583] (II) intel(0): Preferred mode is native pixel format and refresh rate
[   264.583] (II) intel(0): redX: 0.590 redY: 0.350   greenX: 0.329 greenY: 0.555
[   264.583] (II) intel(0): blueX: 0.152 blueY: 0.118   whiteX: 0.312 whiteY: 0.328
[   264.583] (II) intel(0): Manufacturer's mask: 0
[   264.583] (II) intel(0): Supported detailed timing:
[   264.583] (II) intel(0): clock: 141.4 MHz   Image Size:  344 x 194 mm
[   264.583] (II) intel(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2142 h_border: 0
[   264.583] (II) intel(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1100 v_border: 0
[   264.583] (II) intel(0):  BOE HF
[   264.583] (II) intel(0):  NV156FHM-N42
[   264.583] (II) intel(0): EDID (in hex):
[   264.583] (II) intel(0): 	00ffffffffffff0009e55e0600000000
[   264.583] (II) intel(0): 	01190104952213780224109759548e27
[   264.583] (II) intel(0): 	1e505400000001010101010101010101
[   264.583] (II) intel(0): 	0101010101013c3780de703814403020
[   264.583] (II) intel(0): 	360058c21000001a0000000000000000
[   264.583] (II) intel(0): 	00000000000000000000000000fe0042
[   264.583] (II) intel(0): 	4f452048460a202020202020000000fe
[   264.583] (II) intel(0): 	004e5631353646484d2d4e34320a006b
[   264.583] (II) intel(0): EDID vendor "BOE", prod id 1630
[   264.583] (II) intel(0): Printing DDC gathered Modelines:
[   264.583] (II) intel(0): Modeline "1920x1080"x0.0  141.40  1920 1968 2000 2142  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[   264.583] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[   264.583] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[   264.583] (II) intel(0): Printing probed modes for output eDP1
[   264.583] (II) intel(0): Modeline "1920x1080"x60.0  141.40  1920 1968 2000 2142  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[   264.583] (II) intel(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[   264.583] (II) intel(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz)
[   264.583] (II) intel(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[   264.583] (II) intel(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[   264.583] (II) intel(0): Modeline "1368x768"x60.0   85.86  1368 1440 1584 1800  768 769 772 795 -hsync +vsync (47.7 kHz)
[   264.583] (II) intel(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz)
[   264.583] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[   264.583] (II) intel(0): Modeline "1024x576"x60.0   46.99  1024 1064 1168 1312  576 577 580 597 -hsync +vsync (35.8 kHz)
[   264.583] (II) intel(0): Modeline "960x540"x60.0   40.78  960 992 1088 1216  540 541 544 559 -hsync +vsync (33.5 kHz)
[   264.583] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[   264.583] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   264.583] (II) intel(0): Modeline "864x486"x60.0   32.90  864 888 976 1088  486 487 490 504 -hsync +vsync (30.2 kHz)
[   264.583] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[   264.583] (II) intel(0): Modeline "720x405"x60.0   22.18  720 728 800 880  405 406 409 420 -hsync +vsync (25.2 kHz)
[   264.583] (II) intel(0): Modeline "640x360"x60.0   17.19  640 640 704 768  360 361 364 373 -hsync +vsync (22.4 kHz)
[   264.585] (II) intel(0): EDID for output DP1
[   264.593] (II) intel(0): EDID for output HDMI1
[   264.714] (II) intel(0): EDID for output HDMI2
[   264.714] (II) intel(0): EDID for output VIRTUAL1
[   264.714] (II) intel(0): Output eDP1 connected
[   264.714] (II) intel(0): Output DP1 disconnected
[   264.714] (II) intel(0): Output HDMI1 disconnected
[   264.714] (II) intel(0): Output HDMI2 disconnected
[   264.714] (II) intel(0): Output VIRTUAL1 disconnected
[   264.714] (II) intel(0): Using user preference for initial modes
[   264.714] (II) intel(0): Output eDP1 using initial mode 1920x1080 +0+0
[   264.714] (EE) intel(0): Cannot position output eDP1 relative to unknown output HDMI
[   264.715] (==) intel(0): TearFree disabled
[   264.715] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[   264.715] (**) intel(0): Display dimensions: (340, 190) mm
[   264.715] (**) intel(0): DPI set to (143, 144)
[   264.715] (II) Loading sub module "dri3"
[   264.715] (II) LoadModule: "dri3"
[   264.715] (II) Module "dri3" already built-in
[   264.715] (II) Loading sub module "dri2"
[   264.715] (II) LoadModule: "dri2"
[   264.715] (II) Module "dri2" already built-in
[   264.715] (II) Loading sub module "present"
[   264.715] (II) LoadModule: "present"
[   264.715] (II) Module "present" already built-in
[   264.715] (II) modeset(G0): Using 24bpp hw front buffer with 32bpp shadow
[   264.715] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[   264.715] (==) modeset(G0): RGB weight 888
[   264.715] (==) modeset(G0): Default visual is TrueColor
[   264.715] (**) modeset(G0): Cannot use glamor with 24bpp packed fb
[   264.715] (II) modeset(G0): ShadowFB: preferred YES, enabled FORCE
[   264.716] (II) modeset(G0): Double-buffered shadow updates: off
[   264.716] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[   264.716] (**) modeset(G0): Display dimensions: (340, 190) mm
[   264.716] (**) modeset(G0): DPI set to (76, 102)
[   264.716] (II) Loading sub module "fb"
[   264.716] (II) LoadModule: "fb"
[   264.716] (II) Loading /usr/lib/xorg/modules/libfb.so
[   264.717] (II) Module fb: vendor="X.Org Foundation"
[   264.717] 	compiled for 1.19.3, module version = 1.0.0
[   264.717] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   264.717] (II) Loading sub module "shadow"
[   264.717] (II) LoadModule: "shadow"
[   264.717] (II) Loading /usr/lib/xorg/modules/libshadow.so
[   264.717] (II) Module shadow: vendor="X.Org Foundation"
[   264.717] 	compiled for 1.19.3, module version = 1.1.0
[   264.717] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   264.717] (==) Depth 24 pixmap format is 32 bpp
[   264.718] (==) modeset(G0): Backing store enabled
[   264.718] (==) modeset(G0): Silken mouse enabled
[   264.718] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[   264.718] (==) modeset(G0): DPMS enabled
[   264.718] (II) intel(0): SNA initialized with Kabylake (gen9) backend
[   264.718] (==) intel(0): Backing store enabled
[   264.718] (==) intel(0): Silken mouse enabled
[   264.718] (II) intel(0): HW Cursor enabled
[   264.719] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[   264.719] (==) intel(0): DPMS enabled
[   264.720] (==) intel(0): Display hotplug detection enabled
[   264.720] (II) intel(0): [DRI2] Setup complete
[   264.720] (II) intel(0): [DRI2]   DRI driver: i965
[   264.720] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[   264.720] (II) intel(0): direct rendering: DRI2 DRI3 enabled
[   264.720] (II) intel(0): hardware support for Present enabled
[   264.720] (--) RandR disabled
[   264.752] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[   264.752] (II) AIGLX: enabled GLX_ARB_create_context
[   264.752] (II) AIGLX: enabled GLX_ARB_create_context_profile
[   264.752] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[   264.752] (II) AIGLX: enabled GLX_INTEL_swap_event
[   264.752] (II) AIGLX: enabled GLX_SGI_swap_control
[   264.752] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[   264.752] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[   264.752] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[   264.752] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[   264.752] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[   264.753] (II) AIGLX: Loaded and initialized i965
[   264.753] (II) GLX: Initialized DRI2 GL provider for screen 0
[   264.753] (II) modeset(G0): Damage tracking initialized
[   264.755] (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[   264.767] (II) intel(0): Setting screen physical size to 508 x 285
[   264.794] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[   264.794] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   264.794] (**) Power Button: Applying InputClass "system-keyboard"
[   264.794] (II) LoadModule: "libinput"
[   264.794] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[   264.795] (II) Module libinput: vendor="X.Org Foundation"
[   264.795] 	compiled for 1.19.2, module version = 0.25.0
[   264.795] 	Module class: X.Org XInput Driver
[   264.795] 	ABI class: X.Org XInput driver, version 24.1
[   264.795] (II) Using input driver 'libinput' for 'Power Button'
[   264.796] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 26 paused 0
[   264.796] (**) Power Button: always reports core events
[   264.796] (**) Option "Device" "/dev/input/event3"
[   264.796] (**) Option "_source" "server/udev"
[   264.796] (II) event3  - (II) Power Button: (II) is tagged by udev as: Keyboard
[   264.796] (II) event3  - (II) Power Button: (II) device is a keyboard
[   264.796] (II) event3  - (II) Power Button: (II) device removed
[   264.796] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
[   264.796] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   264.796] (**) Option "xkb_model" "pc105"
[   264.796] (**) Option "xkb_layout" "us"
[   264.796] (**) Option "xkb_options" "compose:ralt"
[   264.812] (II) event3  - (II) Power Button: (II) is tagged by udev as: Keyboard
[   264.812] (II) event3  - (II) Power Button: (II) device is a keyboard
[   264.812] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[   264.812] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[   264.812] (**) Video Bus: Applying InputClass "system-keyboard"
[   264.812] (II) Using input driver 'libinput' for 'Video Bus'
[   264.812] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 29 paused 0
[   264.812] (**) Video Bus: always reports core events
[   264.812] (**) Option "Device" "/dev/input/event5"
[   264.812] (**) Option "_source" "server/udev"
[   264.813] (II) event5  - (II) Video Bus: (II) is tagged by udev as: Keyboard
[   264.813] (II) event5  - (II) Video Bus: (II) device is a keyboard
[   264.813] (II) event5  - (II) Video Bus: (II) device removed
[   264.813] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7/event5"
[   264.813] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[   264.813] (**) Option "xkb_model" "pc105"
[   264.813] (**) Option "xkb_layout" "us"
[   264.813] (**) Option "xkb_options" "compose:ralt"
[   264.813] (II) event5  - (II) Video Bus: (II) is tagged by udev as: Keyboard
[   264.813] (II) event5  - (II) Video Bus: (II) device is a keyboard
[   264.813] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[   264.813] (II) No input driver specified, ignoring this device.
[   264.813] (II) This device may have been added with another device file.
[   264.813] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[   264.813] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   264.813] (**) Power Button: Applying InputClass "system-keyboard"
[   264.813] (II) Using input driver 'libinput' for 'Power Button'
[   264.814] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 30 paused 0
[   264.814] (**) Power Button: always reports core events
[   264.814] (**) Option "Device" "/dev/input/event2"
[   264.814] (**) Option "_source" "server/udev"
[   264.814] (II) event2  - (II) Power Button: (II) is tagged by udev as: Keyboard
[   264.814] (II) event2  - (II) Power Button: (II) device is a keyboard
[   264.814] (II) event2  - (II) Power Button: (II) device removed
[   264.814] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3/event2"
[   264.814] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[   264.814] (**) Option "xkb_model" "pc105"
[   264.814] (**) Option "xkb_layout" "us"
[   264.814] (**) Option "xkb_options" "compose:ralt"
[   264.814] (II) event2  - (II) Power Button: (II) is tagged by udev as: Keyboard
[   264.814] (II) event2  - (II) Power Button: (II) device is a keyboard
[   264.815] (II) config/udev: Adding input device EasyCamera (/dev/input/event12)
[   264.815] (**) EasyCamera: Applying InputClass "libinput keyboard catchall"
[   264.815] (**) EasyCamera: Applying InputClass "system-keyboard"
[   264.815] (II) Using input driver 'libinput' for 'EasyCamera'
[   264.815] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 31 paused 0
[   264.815] (**) EasyCamera: always reports core events
[   264.815] (**) Option "Device" "/dev/input/event12"
[   264.815] (**) Option "_source" "server/udev"
[   264.815] (II) event12 - (II) EasyCamera: (II) is tagged by udev as: Keyboard
[   264.815] (II) event12 - (II) EasyCamera: (II) device is a keyboard
[   264.815] (II) event12 - (II) EasyCamera: (II) device removed
[   264.815] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input18/event12"
[   264.815] (II) XINPUT: Adding extended input device "EasyCamera" (type: KEYBOARD, id 9)
[   264.815] (**) Option "xkb_model" "pc105"
[   264.815] (**) Option "xkb_layout" "us"
[   264.815] (**) Option "xkb_options" "compose:ralt"
[   264.816] (II) event12 - (II) EasyCamera: (II) is tagged by udev as: Keyboard
[   264.816] (II) event12 - (II) EasyCamera: (II) device is a keyboard
[   264.816] (II) config/udev: Adding input device SYNA7501:00 06CB:16CA (/dev/input/event11)
[   264.816] (**) SYNA7501:00 06CB:16CA: Applying InputClass "libinput touchscreen catchall"
[   264.816] (II) Using input driver 'libinput' for 'SYNA7501:00 06CB:16CA'
[   264.816] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 32 paused 0
[   264.816] (**) SYNA7501:00 06CB:16CA: always reports core events
[   264.816] (**) Option "Device" "/dev/input/event11"
[   264.816] (**) Option "_source" "server/udev"
[   264.817] (II) event11 - (II) SYNA7501:00 06CB:16CA: (II) is tagged by udev as: Touchscreen
[   264.817] (II) event11 - (II) SYNA7501:00 06CB:16CA: (II) device is a touch device
[   264.817] (II) event11 - (II) SYNA7501:00 06CB:16CA: (II) device removed
[   264.817] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA7501:00/0018:06CB:16CA.0002/input/input13/event11"
[   264.817] (II) XINPUT: Adding extended input device "SYNA7501:00 06CB:16CA" (type: TOUCHSCREEN, id 10)
[   264.817] (**) Option "AccelerationScheme" "none"
[   264.817] (**) SYNA7501:00 06CB:16CA: (accel) selected scheme none/0
[   264.817] (**) SYNA7501:00 06CB:16CA: (accel) acceleration factor: 2.000
[   264.817] (**) SYNA7501:00 06CB:16CA: (accel) acceleration threshold: 4
[   264.817] (II) event11 - (II) SYNA7501:00 06CB:16CA: (II) is tagged by udev as: Touchscreen
[   264.817] (II) event11 - (II) SYNA7501:00 06CB:16CA: (II) device is a touch device
[   264.817] (II) config/udev: Adding input device SYNA7501:00 06CB:16CA (/dev/input/mouse0)
[   264.817] (II) No input driver specified, ignoring this device.
[   264.817] (II) This device may have been added with another device file.
[   264.817] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event4)
[   264.817] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[   264.817] (**) Ideapad extra buttons: Applying InputClass "system-keyboard"
[   264.817] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[   264.818] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 33 paused 0
[   264.818] (**) Ideapad extra buttons: always reports core events
[   264.818] (**) Option "Device" "/dev/input/event4"
[   264.818] (**) Option "_source" "server/udev"
[   264.818] (II) event4  - (II) Ideapad extra buttons: (II) is tagged by udev as: Keyboard
[   264.818] (II) event4  - (II) Ideapad extra buttons: (II) device is a keyboard
[   264.818] (II) event4  - (II) Ideapad extra buttons: (II) device removed
[   264.818] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input5/event4"
[   264.818] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 11)
[   264.818] (**) Option "xkb_model" "pc105"
[   264.818] (**) Option "xkb_layout" "us"
[   264.818] (**) Option "xkb_options" "compose:ralt"
[   264.818] (II) event4  - (II) Ideapad extra buttons: (II) is tagged by udev as: Keyboard
[   264.818] (II) event4  - (II) Ideapad extra buttons: (II) device is a keyboard
[   264.819] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event8)
[   264.819] (II) No input driver specified, ignoring this device.
[   264.819] (II) This device may have been added with another device file.
[   264.819] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event9)
[   264.819] (II) No input driver specified, ignoring this device.
[   264.819] (II) This device may have been added with another device file.
[   264.819] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event10)
[   264.819] (II) No input driver specified, ignoring this device.
[   264.819] (II) This device may have been added with another device file.
[   264.819] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event6)
[   264.819] (II) No input driver specified, ignoring this device.
[   264.819] (II) This device may have been added with another device file.
[   264.819] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event7)
[   264.819] (II) No input driver specified, ignoring this device.
[   264.819] (II) This device may have been added with another device file.
[   264.819] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[   264.819] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[   264.819] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[   264.819] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[   264.820] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 34 paused 0
[   264.820] (**) AT Translated Set 2 keyboard: always reports core events
[   264.820] (**) Option "Device" "/dev/input/event0"
[   264.820] (**) Option "_source" "server/udev"
[   264.820] (II) event0  - (II) AT Translated Set 2 keyboard: (II) is tagged by udev as: Keyboard
[   264.820] (II) event0  - (II) AT Translated Set 2 keyboard: (II) device is a keyboard
[   264.820] (II) event0  - (II) AT Translated Set 2 keyboard: (II) device removed
[   264.820] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[   264.820] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[   264.820] (**) Option "xkb_model" "pc105"
[   264.820] (**) Option "xkb_layout" "us"
[   264.820] (**) Option "xkb_options" "compose:ralt"
[   264.820] (II) event0  - (II) AT Translated Set 2 keyboard: (II) is tagged by udev as: Keyboard
[   264.820] (II) event0  - (II) AT Translated Set 2 keyboard: (II) device is a keyboard
[   264.821] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event13)
[   264.821] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[   264.821] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[   264.821] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[   264.821] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
[   264.821] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[   264.821] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[   264.821] (II) LoadModule: "synaptics"
[   264.821] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[   264.821] (II) Module synaptics: vendor="X.Org Foundation"
[   264.821] 	compiled for 1.19.0, module version = 1.9.0
[   264.821] 	Module class: X.Org XInput Driver
[   264.821] 	ABI class: X.Org XInput driver, version 24.1
[   264.821] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[   264.821] (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 35 paused 0
[   264.821] (**) SynPS/2 Synaptics TouchPad: always reports core events
[   264.821] (**) Option "Device" "/dev/input/event13"
[   264.821] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1278 - 5664 (res 42)
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1172 - 4682 (res 52)
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[   264.821] (**) Option "FingerLow" "30"
[   264.821] (**) Option "FingerHigh" "50"
[   264.821] (**) Option "MaxTapTime" "125"
[   264.821] (**) Option "EmulateTwoFingerMinW" "8"
[   264.821] (**) Option "VertEdgeScroll" "on"
[   264.821] (**) Option "HorizEdgeScroll" "on"
[   264.821] (**) Option "VertTwoFingerScroll" "on"
[   264.821] (**) Option "HorizTwoFingerScroll" "on"
[   264.821] (**) Option "TapButton1" "1"
[   264.821] (**) Option "TapButton2" "2"
[   264.821] (**) Option "TapButton3" "3"
[   264.821] (**) Option "CoastingSpeed" "0"
[   264.821] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[   264.821] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[   264.821] (**) SynPS/2 Synaptics TouchPad: always reports core events
[   264.821] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event13"
[   264.821] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
[   264.821] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[   264.821] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[   264.821] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.036
[   264.821] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[   264.822] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[   264.822] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[   264.822] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[   264.822] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[   264.822] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[   264.822] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[   275.498] (**) Option "fd" "26"
[   275.498] (II) event3  - (II) Power Button: (II) device removed
[   275.498] (**) Option "fd" "29"
[   275.498] (II) event5  - (II) Video Bus: (II) device removed
[   275.498] (**) Option "fd" "30"
[   275.498] (II) event2  - (II) Power Button: (II) device removed
[   275.498] (**) Option "fd" "31"
[   275.498] (II) event12 - (II) EasyCamera: (II) device removed
[   275.498] (**) Option "fd" "32"
[   275.498] (II) event11 - (II) SYNA7501:00 06CB:16CA: (II) device removed
[   275.498] (**) Option "fd" "33"
[   275.498] (II) event4  - (II) Ideapad extra buttons: (II) device removed
[   275.499] (**) Option "fd" "34"
[   275.499] (II) event0  - (II) AT Translated Set 2 keyboard: (II) device removed
[   275.499] (II) UnloadModule: "synaptics"
[   275.499] (II) systemd-logind: releasing fd for 13:77
[   275.510] (II) UnloadModule: "libinput"
[   275.510] (II) systemd-logind: releasing fd for 13:64
[   275.533] (II) UnloadModule: "libinput"
[   275.533] (II) systemd-logind: releasing fd for 13:68
[   275.553] (II) UnloadModule: "libinput"
[   275.553] (II) systemd-logind: releasing fd for 13:75
[   275.573] (II) UnloadModule: "libinput"
[   275.573] (II) systemd-logind: releasing fd for 13:76
[   275.593] (II) UnloadModule: "libinput"
[   275.593] (II) systemd-logind: releasing fd for 13:66
[   275.613] (II) UnloadModule: "libinput"
[   275.613] (II) systemd-logind: releasing fd for 13:69
[   275.633] (II) UnloadModule: "libinput"
[   275.634] (II) systemd-logind: releasing fd for 13:67
[   276.292] (II) Server terminated successfully (0). Closing log file.

ps u reports this :

 
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
jonas     1202  0.0  0.0  45188  6112 tty2     Ss   21:41   0:00 -zsh
jonas     1392  0.0  0.0  48436  7428 tty2     S    21:44   0:00 /usr/bin/zsh
jonas     2879  0.0  0.0  42560  3532 tty2     R+   22:01   0:00 ps u

Also shutting the computer down takes at least 15 minutes, repeatedly printing "sending SIGKILL to Pid XXX (Xorg.wrap)

Last edited by Cinbu (2017-06-09 20:14:55)

Offline

#6 2017-06-09 20:32:16

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,523
Website

Re: X server not working after update

Ah, oh-my-zsh, that's most likely the cause.

However, there is nothing apparent in there starting X.  It sounded like you must start X via your shell rc from your description.  As that is not the case, we are back to x33a's first question: how do you normally start x?  A user service?

The error you are getting and the problem shutting down, are from X already running.

Also, why are you using Xorg.wrap?

How did you install arch?


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#7 2017-06-09 20:59:27

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

I installed arch following the guide on the archwiki.

In my home directory is a file .zprofile containing only exec startx.

This gets called after login.

I never configured xorg.wrap.

But looking through the xorg.log file I discovered a line stating

(EE) open /dev/fb0: Permission denied

I found this answer to the problem :
https://unix.stackexchange.com/q/149985/231004

Following that answer I added a wrapper.conf file.

After a reboot everything worked, but to be sure I Rebooted a second time. Now it doesn't work again.

At least a new xorg.log was created, maybe this gives a hint?

 
[   393.882] 
X.Org X Server 1.19.3
Release Date: 2017-03-15
[   393.882] X Protocol Version 11, Revision 0
[   393.882] Build Operating System: Linux 4.9.11-1-ARCH x86_64 
[   393.882] Current Operating System: Linux yoga-510-arch 4.11.3-1-ARCH #1 SMP PREEMPT Sun May 28 10:40:17 CEST 2017 x86_64
[   393.883] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=b0c31b50-c336-4e3e-866b-be816a2fa200 rootfstype=ext4 add_efi_memmap rw
[   393.883] Build Date: 07 April 2017  05:42:48PM
[   393.883]  
[   393.883] Current version of pixman: 0.34.0
[   393.883] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   393.883] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   393.884] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 10 00:07:18 2017
[   393.888] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   393.888] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   393.890] (==) No Layout section.  Using the first Screen section.
[   393.890] (==) No screen section available. Using defaults.
[   393.890] (**) |-->Screen "Default Screen Section" (0)
[   393.890] (**) |   |-->Monitor "<default monitor>"
[   393.890] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   393.890] (==) Automatically adding devices
[   393.890] (==) Automatically enabling devices
[   393.890] (==) Automatically adding GPU devices
[   393.890] (==) Automatically binding GPU devices
[   393.890] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   393.892] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[   393.892] 	Entry deleted from font path.
[   393.893] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[   393.893] (==) ModulePath set to "/usr/lib/xorg/modules"
[   393.893] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   393.893] (II) Loader magic: 0x822d60
[   393.893] (II) Module ABI versions:
[   393.893] 	X.Org ANSI C Emulation: 0.4
[   393.893] 	X.Org Video Driver: 23.0
[   393.893] 	X.Org XInput driver : 24.1
[   393.893] 	X.Org Server Extension : 10.0
[   393.894] (++) using VT number 1

[   393.894] (--) controlling tty is VT number 1, auto-enabling KeepTty
[   393.895] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
[   393.896] (II) xfree86: Adding drm device (/dev/dri/card0)
[   393.896] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[   393.897] (II) xfree86: Adding drm device (/dev/dri/card1)
[   400.237] (EE) systemd-logind: failed to take device /dev/dri/card1: Message recipient disconnected

I can't find an answer to that error message.

And already thank you for taking the time looking over my problem!

Edit: I found a more recent log file

Last edited by Cinbu (2017-06-09 22:11:42)

Offline

#8 2017-06-10 05:55:05

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: X server not working after update

Is this the full Xorg log? If not, then post the full log. Also post the output of `journalctl -b`.

Offline

#9 2017-06-10 06:21:21

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

It is the full xorg.log. Here is the output of journalctl for the most recent boot:

 
-- Logs begin at Tue 2017-04-25 17:30:18 CEST, end at Sat 2017-06-10 08:14:23 CEST. --
Jun 10 08:13:51 yoga-510-arch systemd-journald[164]: Time spent on flushing to /var is 567us for 0 entries.
Jun 10 08:13:51 yoga-510-arch kernel: Linux version 4.11.3-1-ARCH (builduser@tobias) (gcc version 7.1.1 20170516 (GCC) ) #1 SMP PREEMPT Sun May 28 10:40:17 CEST 2017
Jun 10 08:13:51 yoga-510-arch kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=b0c31b50-c336-4e3e-866b-be816a2fa200 rootfstype=ext4 add_efi_memmap rw
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 10 08:13:51 yoga-510-arch kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 10 08:13:51 yoga-510-arch kernel: e820: BIOS-provided physical RAM map:
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000000100000-0x000000006f816fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000006f817000-0x000000006f817fff] ACPI NVS
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000006f818000-0x000000006f818fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000006f819000-0x0000000071151fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000071152000-0x0000000072251fff] ACPI NVS
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000072252000-0x0000000088467fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000088468000-0x0000000088e57fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000088e58000-0x000000008ae57fff] ACPI NVS
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000008ae58000-0x000000008aefdfff] ACPI data
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000008aefe000-0x000000008aefefff] usable
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x000000008aeff000-0x000000008fffffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 10 08:13:51 yoga-510-arch kernel: NX (Execute Disable) protection: active
Jun 10 08:13:51 yoga-510-arch kernel: e820: update [mem 0x6e536018-0x6e546057] usable ==> usable
Jun 10 08:13:51 yoga-510-arch kernel: e820: update [mem 0x7225e018-0x72266057] usable ==> usable
Jun 10 08:13:51 yoga-510-arch kernel: e820: update [mem 0x6e528018-0x6e535857] usable ==> usable
Jun 10 08:13:51 yoga-510-arch kernel: extended physical RAM map:
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000000100000-0x000000006e528017] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006e528018-0x000000006e535857] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006e535858-0x000000006e536017] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006e536018-0x000000006e546057] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006e546058-0x000000006f816fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006f817000-0x000000006f817fff] ACPI NVS
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006f818000-0x000000006f818fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000006f819000-0x0000000071151fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000071152000-0x0000000072251fff] ACPI NVS
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000072252000-0x000000007225e017] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000007225e018-0x0000000072266057] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000072266058-0x0000000088467fff] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000088468000-0x0000000088e57fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000088e58000-0x000000008ae57fff] ACPI NVS
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000008ae58000-0x000000008aefdfff] ACPI data
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000008aefe000-0x000000008aefefff] usable
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x000000008aeff000-0x000000008fffffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
Jun 10 08:13:51 yoga-510-arch kernel: reserve setup_data: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 10 08:13:51 yoga-510-arch kernel: efi: EFI v2.50 by INSYDE Corp.
Jun 10 08:13:51 yoga-510-arch kernel: efi:  ACPI 2.0=0x8aefd014  SMBIOS=0x886dd000  SMBIOS 3.0=0x886db000  ESRT=0x886d9dd8  PROP=0x6f813858 
Jun 10 08:13:51 yoga-510-arch kernel: SMBIOS 3.0.0 present.
Jun 10 08:13:51 yoga-510-arch kernel: DMI: LENOVO 80VC/Lenovo YOGA 510-15IKB, BIOS 2SCN23WW(V2.03) 03/24/2017
Jun 10 08:13:51 yoga-510-arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 10 08:13:51 yoga-510-arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 10 08:13:51 yoga-510-arch kernel: e820: last_pfn = 0x26f000 max_arch_pfn = 0x400000000
Jun 10 08:13:51 yoga-510-arch kernel: MTRR default type: write-back
Jun 10 08:13:51 yoga-510-arch kernel: MTRR fixed ranges enabled:
Jun 10 08:13:51 yoga-510-arch kernel:   00000-9FFFF write-back
Jun 10 08:13:51 yoga-510-arch kernel:   A0000-BFFFF uncachable
Jun 10 08:13:51 yoga-510-arch kernel:   C0000-FFFFF write-protect
Jun 10 08:13:51 yoga-510-arch kernel: MTRR variable ranges enabled:
Jun 10 08:13:51 yoga-510-arch kernel:   0 base 00C0000000 mask 7FC0000000 uncachable
Jun 10 08:13:51 yoga-510-arch kernel:   1 base 00A0000000 mask 7FE0000000 uncachable
Jun 10 08:13:51 yoga-510-arch kernel:   2 base 0090000000 mask 7FF0000000 uncachable
Jun 10 08:13:51 yoga-510-arch kernel:   3 base 008C000000 mask 7FFC000000 uncachable
Jun 10 08:13:51 yoga-510-arch kernel:   4 base 008B800000 mask 7FFF800000 uncachable
Jun 10 08:13:51 yoga-510-arch kernel:   5 disabled
Jun 10 08:13:51 yoga-510-arch kernel:   6 disabled
Jun 10 08:13:51 yoga-510-arch kernel:   7 disabled
Jun 10 08:13:51 yoga-510-arch kernel:   8 disabled
Jun 10 08:13:51 yoga-510-arch kernel:   9 disabled
Jun 10 08:13:51 yoga-510-arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Jun 10 08:13:51 yoga-510-arch kernel: e820: last_pfn = 0x8aeff max_arch_pfn = 0x400000000
Jun 10 08:13:51 yoga-510-arch kernel: esrt: Reserving ESRT space from 0x00000000886d9dd8 to 0x00000000886d9e88.
Jun 10 08:13:51 yoga-510-arch kernel: Scanning 1 areas for low memory corruption
Jun 10 08:13:51 yoga-510-arch kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
Jun 10 08:13:51 yoga-510-arch kernel: Using GB pages for direct mapping
Jun 10 08:13:51 yoga-510-arch kernel: BRK [0x01d42000, 0x01d42fff] PGTABLE
Jun 10 08:13:51 yoga-510-arch kernel: BRK [0x01d43000, 0x01d43fff] PGTABLE
Jun 10 08:13:51 yoga-510-arch kernel: BRK [0x01d44000, 0x01d44fff] PGTABLE
Jun 10 08:13:51 yoga-510-arch kernel: BRK [0x01d45000, 0x01d45fff] PGTABLE
Jun 10 08:13:51 yoga-510-arch kernel: BRK [0x01d46000, 0x01d46fff] PGTABLE
Jun 10 08:13:51 yoga-510-arch kernel: BRK [0x01d47000, 0x01d47fff] PGTABLE
Jun 10 08:13:51 yoga-510-arch kernel: Secure boot disabled
Jun 10 08:13:51 yoga-510-arch kernel: RAMDISK: [mem 0x7f960000-0x7fffefff]
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Early table checksum verification disabled
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: RSDP 0x000000008AEFD014 000024 (v02 LENOVO)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: XSDT 0x000000008AEC7188 00011C (v01 LENOVO CB-01    00000001      01000013)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: FACP 0x000000008AEEE000 00010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: DSDT 0x000000008AECD000 01D8A3 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: FACS 0x000000008AE35000 000040
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: UEFI 0x000000008AEFC000 000236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: UEFI 0x000000008AEFB000 000042 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: MSDM 0x000000008AEFA000 000055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEF9000 0004C8 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEF8000 000046 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: TPM2 0x000000008AEF7000 000034 (v03 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEF3000 003113 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: ASF! 0x000000008AEF2000 0000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: ASPT 0x000000008AEF1000 000034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: BOOT 0x000000008AEF0000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: DBGP 0x000000008AEEF000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: HPET 0x000000008AEED000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: APIC 0x000000008AEEC000 0000BC (v03 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: MCFG 0x000000008AEEB000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AECC000 000AD2 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AECB000 0001BC (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LPIT 0x000000008AECA000 000094 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: WSMT 0x000000008AEC9000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEC8000 00029F (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEC6000 000346 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEC2000 003002 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEC1000 00051E (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: DBGP 0x000000008AEC0000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: DBG2 0x000000008AEBF000 000061 (v00 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEBD000 00106A (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEBC000 000EDE (v02 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0x000000008AEBA000 001B0E (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: DMAR 0x000000008AEB9000 0000F0 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: FPDT 0x000000008AEB8000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: BGRT 0x000000008AEB7000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Local APIC address 0xfee00000
Jun 10 08:13:51 yoga-510-arch kernel: No NUMA configuration found
Jun 10 08:13:51 yoga-510-arch kernel: Faking a node at [mem 0x0000000000000000-0x000000026effffff]
Jun 10 08:13:51 yoga-510-arch kernel: NODE_DATA(0) allocated [mem 0x26eff6000-0x26effafff]
Jun 10 08:13:51 yoga-510-arch kernel: Zone ranges:
Jun 10 08:13:51 yoga-510-arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 10 08:13:51 yoga-510-arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 10 08:13:51 yoga-510-arch kernel:   Normal   [mem 0x0000000100000000-0x000000026effffff]
Jun 10 08:13:51 yoga-510-arch kernel:   Device   empty
Jun 10 08:13:51 yoga-510-arch kernel: Movable zone start for each node
Jun 10 08:13:51 yoga-510-arch kernel: Early memory node ranges
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x0000000000059000-0x000000000009dfff]
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x0000000000100000-0x000000006f816fff]
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x000000006f819000-0x0000000071151fff]
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x0000000072252000-0x0000000088467fff]
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x000000008aefe000-0x000000008aefefff]
Jun 10 08:13:51 yoga-510-arch kernel:   node   0: [mem 0x0000000100000000-0x000000026effffff]
Jun 10 08:13:51 yoga-510-arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000026effffff]
Jun 10 08:13:51 yoga-510-arch kernel: On node 0 totalpages: 2056963
Jun 10 08:13:51 yoga-510-arch kernel:   DMA zone: 64 pages used for memmap
Jun 10 08:13:51 yoga-510-arch kernel:   DMA zone: 21 pages reserved
Jun 10 08:13:51 yoga-510-arch kernel:   DMA zone: 3996 pages, LIFO batch:0
Jun 10 08:13:51 yoga-510-arch kernel:   DMA32 zone: 8590 pages used for memmap
Jun 10 08:13:51 yoga-510-arch kernel:   DMA32 zone: 549735 pages, LIFO batch:31
Jun 10 08:13:51 yoga-510-arch kernel:   Normal zone: 23488 pages used for memmap
Jun 10 08:13:51 yoga-510-arch kernel:   Normal zone: 1503232 pages, LIFO batch:31
Jun 10 08:13:51 yoga-510-arch kernel: Reserving Intel graphics memory at 0x000000008c000000-0x000000008fffffff
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PM-Timer IO Port: 0x1808
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Local APIC address 0xfee00000
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun 10 08:13:51 yoga-510-arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: IRQ0 used by override.
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: IRQ9 used by override.
Jun 10 08:13:51 yoga-510-arch kernel: Using ACPI (MADT) for SMP configuration information
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 10 08:13:51 yoga-510-arch kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x6e528000-0x6e528fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x6e535000-0x6e535fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x6e536000-0x6e536fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x6e546000-0x6e546fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x6f817000-0x6f817fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x6f818000-0x6f818fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x71152000-0x72251fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x7225e000-0x7225efff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x72266000-0x72266fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x88468000-0x88e57fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x88e58000-0x8ae57fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x8ae58000-0x8aefdfff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x8aeff000-0x8fffffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0x90000000-0xdfffffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfcffffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfd000000-0xfe7fffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfe800000-0xfebfffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfed0ffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed83fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfed85000-0xfedfffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xfee01000-0xff9fffff]
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registered nosave memory: [mem 0xffa00000-0xffffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: [mem 0x90000000-0xdfffffff] available for PCI devices
Jun 10 08:13:51 yoga-510-arch kernel: Booting paravirtualized kernel on bare hardware
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jun 10 08:13:51 yoga-510-arch kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
Jun 10 08:13:51 yoga-510-arch kernel: percpu: Embedded 35 pages/cpu @ffff88026ec00000 s103256 r8192 d31912 u524288
Jun 10 08:13:51 yoga-510-arch kernel: pcpu-alloc: s103256 r8192 d31912 u524288 alloc=1*2097152
Jun 10 08:13:51 yoga-510-arch kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 10 08:13:51 yoga-510-arch kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 2024800
Jun 10 08:13:51 yoga-510-arch kernel: Policy zone: Normal
Jun 10 08:13:51 yoga-510-arch kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=b0c31b50-c336-4e3e-866b-be816a2fa200 rootfstype=ext4 add_efi_memmap rw
Jun 10 08:13:51 yoga-510-arch kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: Calgary: detecting Calgary via BIOS EBDA area
Jun 10 08:13:51 yoga-510-arch kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun 10 08:13:51 yoga-510-arch kernel: Memory: 7949016K/8227852K available (6483K kernel code, 1090K rwdata, 2016K rodata, 1304K init, 904K bss, 278836K reserved, 0K cma-reserved)
Jun 10 08:13:51 yoga-510-arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 10 08:13:51 yoga-510-arch kernel: Preemptible hierarchical RCU implementation.
Jun 10 08:13:51 yoga-510-arch kernel:         Build-time adjustment of leaf fanout to 64.
Jun 10 08:13:51 yoga-510-arch kernel:         RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
Jun 10 08:13:51 yoga-510-arch kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
Jun 10 08:13:51 yoga-510-arch kernel: NR_IRQS:8448 nr_irqs:1024 16
Jun 10 08:13:51 yoga-510-arch kernel: Console: colour dummy device 80x25
Jun 10 08:13:51 yoga-510-arch kernel: console [tty0] enabled
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Jun 10 08:13:51 yoga-510-arch kernel: hpet clockevent registered
Jun 10 08:13:51 yoga-510-arch kernel: tsc: Detected 2900.000 MHz processor
Jun 10 08:13:51 yoga-510-arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5810.00 BogoMIPS (lpj=9680000)
Jun 10 08:13:51 yoga-510-arch kernel: pid_max: default: 32768 minimum: 301
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Core revision 20170119
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: 13 ACPI AML tables successfully acquired and loaded
Jun 10 08:13:51 yoga-510-arch kernel: Security Framework initialized
Jun 10 08:13:51 yoga-510-arch kernel: Yama: becoming mindful.
Jun 10 08:13:51 yoga-510-arch kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: CPU: Physical Processor ID: 0
Jun 10 08:13:51 yoga-510-arch kernel: CPU: Processor Core ID: 0
Jun 10 08:13:51 yoga-510-arch kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jun 10 08:13:51 yoga-510-arch kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Jun 10 08:13:51 yoga-510-arch kernel: mce: CPU supports 8 MCE banks
Jun 10 08:13:51 yoga-510-arch kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 10 08:13:51 yoga-510-arch kernel: process: using mwait in idle threads
Jun 10 08:13:51 yoga-510-arch kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Jun 10 08:13:51 yoga-510-arch kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Jun 10 08:13:51 yoga-510-arch kernel: Freeing SMP alternatives memory: 24K
Jun 10 08:13:51 yoga-510-arch kernel: ftrace: allocating 25536 entries in 100 pages
Jun 10 08:13:51 yoga-510-arch kernel: smpboot: Max logical packages: 2
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: Host address width 39
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: RMRR base: 0x00000088d54000 end: 0x00000088d73fff
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: RMRR base: 0x0000008b800000 end: 0x0000008fffffff
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
Jun 10 08:13:51 yoga-510-arch kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Jun 10 08:13:51 yoga-510-arch kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jun 10 08:13:51 yoga-510-arch kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Jun 10 08:13:51 yoga-510-arch kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jun 10 08:13:51 yoga-510-arch kernel: x2apic enabled
Jun 10 08:13:51 yoga-510-arch kernel: Switched APIC routing to cluster x2apic.
Jun 10 08:13:51 yoga-510-arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 10 08:13:51 yoga-510-arch kernel: TSC deadline timer enabled
Jun 10 08:13:51 yoga-510-arch kernel: smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
Jun 10 08:13:51 yoga-510-arch kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Jun 10 08:13:51 yoga-510-arch kernel: ... version:                4
Jun 10 08:13:51 yoga-510-arch kernel: ... bit width:              48
Jun 10 08:13:51 yoga-510-arch kernel: ... generic registers:      4
Jun 10 08:13:51 yoga-510-arch kernel: ... value mask:             0000ffffffffffff
Jun 10 08:13:51 yoga-510-arch kernel: ... max period:             00007fffffffffff
Jun 10 08:13:51 yoga-510-arch kernel: ... fixed-purpose events:   3
Jun 10 08:13:51 yoga-510-arch kernel: ... event mask:             000000070000000f
Jun 10 08:13:51 yoga-510-arch kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun 10 08:13:51 yoga-510-arch kernel: smp: Bringing up secondary CPUs ...
Jun 10 08:13:51 yoga-510-arch kernel: x86: Booting SMP configuration:
Jun 10 08:13:51 yoga-510-arch kernel: .... node  #0, CPUs:      #1 #2 #3
Jun 10 08:13:51 yoga-510-arch kernel: smp: Brought up 1 node, 4 CPUs
Jun 10 08:13:51 yoga-510-arch kernel: smpboot: Total of 4 processors activated (23244.78 BogoMIPS)
Jun 10 08:13:51 yoga-510-arch kernel: sched_clock: Marking stable (446666622, 0)->(445599600, 1067022)
Jun 10 08:13:51 yoga-510-arch kernel: devtmpfs: initialized
Jun 10 08:13:51 yoga-510-arch kernel: x86/mm: Memory block size: 128MB
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registering ACPI NVS region [mem 0x6f817000-0x6f817fff] (4096 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registering ACPI NVS region [mem 0x71152000-0x72251fff] (17825792 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: PM: Registering ACPI NVS region [mem 0x88e58000-0x8ae57fff] (33554432 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jun 10 08:13:51 yoga-510-arch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: pinctrl core: initialized pinctrl subsystem
Jun 10 08:13:51 yoga-510-arch kernel: RTC time:  6:13:50, date: 06/10/17
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 16
Jun 10 08:13:51 yoga-510-arch kernel: cpuidle: using governor ladder
Jun 10 08:13:51 yoga-510-arch kernel: cpuidle: using governor menu
Jun 10 08:13:51 yoga-510-arch kernel: PCCT header not found.
Jun 10 08:13:51 yoga-510-arch kernel: Simple Boot Flag at 0x44 set to 0x1
Jun 10 08:13:51 yoga-510-arch kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: bus type PCI registered
Jun 10 08:13:51 yoga-510-arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 10 08:13:51 yoga-510-arch kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun 10 08:13:51 yoga-510-arch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun 10 08:13:51 yoga-510-arch kernel: PCI: Using configuration type 1 for base access
Jun 10 08:13:51 yoga-510-arch kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Jun 10 08:13:51 yoga-510-arch kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Added _OSI(Module Device)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Added _OSI(Processor Device)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Executed 31 blocks of module-level executable AML code
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Dynamic OEM Table Load:
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0xFFFF88026494C800 0006F6 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Executed 1 blocks of module-level executable AML code
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Dynamic OEM Table Load:
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0xFFFF8802648FD000 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Executed 1 blocks of module-level executable AML code
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Dynamic OEM Table Load:
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0xFFFF88026494D000 00065C (v02 PmRef  ApIst    00003000 INTL 20160527)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Executed 1 blocks of module-level executable AML code
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Dynamic OEM Table Load:
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: SSDT 0xFFFF88026498E200 00018A (v02 PmRef  ApCst    00003000 INTL 20160527)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Executed 1 blocks of module-level executable AML code
Jun 10 08:13:51 yoga-510-arch kernel: ACPI : EC: EC started
Jun 10 08:13:51 yoga-510-arch kernel: ACPI : EC: interrupt blocked
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Interpreter enabled
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: (supports S0 S3 S4 S5)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Using IOAPIC for interrupt routing
Jun 10 08:13:51 yoga-510-arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Resource [PC01] (on)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Resource [FN00] (off)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Resource [FN01] (off)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Resource [FN02] (off)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Resource [FN03] (off)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Resource [FN04] (off)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun 10 08:13:51 yoga-510-arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun 10 08:13:51 yoga-510-arch kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun 10 08:13:51 yoga-510-arch kernel: PCI host bridge to bus 0000:00
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:00.0: [8086:5904] type 00 class 0x060000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: [8086:5916] type 00 class 0x030000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: reg 0x10: [mem 0xb1000000-0xb1ffffff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:14.0: reg 0x10: [mem 0xb2500000-0xb250ffff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:14.2: reg 0x10: [mem 0xb252a000-0xb252afff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:15.0: reg 0x10: [mem 0xb252b000-0xb252bfff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:15.1: reg 0x10: [mem 0xb252c000-0xb252cfff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:16.0: reg 0x10: [mem 0xb252d000-0xb252dfff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:16.0: PME# supported from D3hot
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: [8086:9d03] type 00 class 0x010601
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: reg 0x10: [mem 0xb2528000-0xb2529fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: reg 0x14: [mem 0xb2530000-0xb25300ff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: reg 0x18: [io  0x5080-0x5087]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: reg 0x1c: [io  0x5088-0x508b]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: reg 0x20: [io  0x5060-0x507f]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: reg 0x24: [mem 0xb252e000-0xb252e7ff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:17.0: PME# supported from D3hot
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5: [8086:9d15] type 01 class 0x060400
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xb2524000-0xb2527fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040300
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xb2520000-0xb2523fff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xb2510000-0xb251ffff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.3: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xb252f000-0xb252f0ff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1f.4: reg 0x20: [io  0x5040-0x505f]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: [1002:6900] type 00 class 0x038000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: reg 0x18: [mem 0xb0000000-0xb01fffff 64bit pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: reg 0x20: [io  0x4000-0x40ff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: reg 0x24: [mem 0xb2400000-0xb243ffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: supports D1 D2
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xb2400000-0xb24fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xa0000000-0xb01fffff 64bit pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: reg 0x10: [io  0x3000-0x30ff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: reg 0x18: [mem 0xb2304000-0xb2304fff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: reg 0x20: [mem 0xb2300000-0xb2303fff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: supports D1 D2
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4: PCI bridge to [bus 02]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4:   bridge window [mem 0xb2300000-0xb23fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:03:00.0: [168c:0042] type 00 class 0x028000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:03:00.0: reg 0x10: [mem 0xb2000000-0xb21fffff 64bit]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5: PCI bridge to [bus 03]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2000000-0xb21fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:04:00.0: [10ec:5229] type 00 class 0xff0000
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:04:00.0: reg 0x10: [mem 0xb2200000-0xb2200fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:04:00.0: supports D1 D2
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:04:00.0: PME# supported from D1 D2 D3hot
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:04:00.0: System wakeup disabled by ACPI
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0: PCI bridge to [bus 04]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0:   bridge window [mem 0xb2200000-0xb22fffff]
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
Jun 10 08:13:51 yoga-510-arch kernel: platform MSFT0101:00: failed to claim resource 1: [mem 0xfed40000-0xfed40fff]
Jun 10 08:13:51 yoga-510-arch kernel: acpi MSFT0101:00: platform device creation failed: -16
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Enabled 3 GPEs in block 00 to 7F
Jun 10 08:13:51 yoga-510-arch kernel: ACPI : EC: interrupt unblocked
Jun 10 08:13:51 yoga-510-arch kernel: ACPI : EC: event unblocked
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Jun 10 08:13:51 yoga-510-arch kernel: vgaarb: loaded
Jun 10 08:13:51 yoga-510-arch kernel: Registered efivars operations
Jun 10 08:13:51 yoga-510-arch kernel: PCI: Using ACPI for IRQ routing
Jun 10 08:13:51 yoga-510-arch kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x6e528018-0x6fffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x6e536018-0x6fffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x6f817000-0x6fffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x71152000-0x73ffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x7225e018-0x73ffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x88468000-0x8bffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x8aeff000-0x8bffffff]
Jun 10 08:13:51 yoga-510-arch kernel: e820: reserve RAM buffer [mem 0x26f000000-0x26fffffff]
Jun 10 08:13:51 yoga-510-arch kernel: NetLabel: Initializing
Jun 10 08:13:51 yoga-510-arch kernel: NetLabel:  domain hash size = 128
Jun 10 08:13:51 yoga-510-arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 10 08:13:51 yoga-510-arch kernel: NetLabel:  unlabeled traffic allowed by default
Jun 10 08:13:51 yoga-510-arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jun 10 08:13:51 yoga-510-arch kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: Switched to clocksource hpet
Jun 10 08:13:51 yoga-510-arch kernel: VFS: Disk quotas dquot_6.6.0
Jun 10 08:13:51 yoga-510-arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: pnp: PnP ACPI init
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfd000000-0xfdabffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfdad0000-0xfdadffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfdb00000-0xfdffffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfe000000-0xfe01ffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfe036000-0xfe03bfff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfe03d000-0xfe3fffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: [mem 0xfe410000-0xfe7fffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: system 00:01: [io  0x2000-0x20fe] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0x0680-0x069f] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0xfd40-0xfd43] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0xffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0xffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0xffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0x1800-0x18fe] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: [io  0x164e-0x164f] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 10 08:13:51 yoga-510-arch kernel: system 00:04: [io  0x1854-0x1857] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
Jun 10 08:13:51 yoga-510-arch kernel: pnp 00:06: Plug and Play ACPI device, IDs SYN2b8a SYN2b00 SYN0002 PNP0f13 (active)
Jun 10 08:13:51 yoga-510-arch kernel: system 00:07: [mem 0xfe035000-0xfe035fff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:07: [mem 0xfe034008-0xfe034fff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: system 00:08: [mem 0xfe034000-0xfe034007] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfed90000-0xfed93fff] could not be reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] could not be reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xff000000-0xff000fff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xff001000-0xff0010ff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: [mem 0x90000000-0x9001ffff] has been reserved
Jun 10 08:13:51 yoga-510-arch kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 10 08:13:51 yoga-510-arch kernel: pnp: PnP ACPI: found 10 devices
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xb2440000-0xb245ffff pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xb2400000-0xb24fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xa0000000-0xb01fffff 64bit pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4: PCI bridge to [bus 02]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.4:   bridge window [mem 0xb2300000-0xb23fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5: PCI bridge to [bus 03]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2000000-0xb21fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0: PCI bridge to [bus 04]
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:1d.0:   bridge window [mem 0xb2200000-0xb22fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 15 [mem 0x90000000-0xdfffffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:00: resource 16 [mem 0xfd000000-0xfe7fffff window]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:01: resource 1 [mem 0xb2400000-0xb24fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:01: resource 2 [mem 0xa0000000-0xb01fffff 64bit pref]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:02: resource 1 [mem 0xb2300000-0xb23fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:03: resource 1 [mem 0xb2000000-0xb21fffff]
Jun 10 08:13:51 yoga-510-arch kernel: pci_bus 0000:04: resource 1 [mem 0xb2200000-0xb22fffff]
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 2
Jun 10 08:13:51 yoga-510-arch kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jun 10 08:13:51 yoga-510-arch kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 1
Jun 10 08:13:51 yoga-510-arch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 10 08:13:51 yoga-510-arch kernel: PCI: CLS 64 bytes, default 64
Jun 10 08:13:51 yoga-510-arch kernel: Unpacking initramfs...
Jun 10 08:13:51 yoga-510-arch kernel: Freeing initrd memory: 6780K
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: ACPI device "device:77" under DMAR at fed91000 as 00:15.0
Jun 10 08:13:51 yoga-510-arch kernel: DMAR: ACPI device "device:78" under DMAR at fed91000 as 00:15.1
Jun 10 08:13:51 yoga-510-arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 10 08:13:51 yoga-510-arch kernel: software IO TLB [mem 0x83e9c000-0x87e9c000] (64MB) mapped at [ffff880083e9c000-ffff880087e9bfff]
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc05e54fc, max_idle_ns: 440795291716 ns
Jun 10 08:13:51 yoga-510-arch kernel: Scanning for low memory corruption every 60 seconds
Jun 10 08:13:51 yoga-510-arch kernel: Initialise system trusted keyrings
Jun 10 08:13:51 yoga-510-arch kernel: workingset: timestamp_bits=40 max_order=21 bucket_order=0
Jun 10 08:13:51 yoga-510-arch kernel: zbud: loaded
Jun 10 08:13:51 yoga-510-arch kernel: Key type asymmetric registered
Jun 10 08:13:51 yoga-510-arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Jun 10 08:13:51 yoga-510-arch kernel: io scheduler noop registered
Jun 10 08:13:51 yoga-510-arch kernel: io scheduler deadline registered
Jun 10 08:13:51 yoga-510-arch kernel: io scheduler cfq registered (default)
Jun 10 08:13:51 yoga-510-arch kernel: io scheduler mq-deadline registered
Jun 10 08:13:51 yoga-510-arch kernel: efifb: probing for efifb
Jun 10 08:13:51 yoga-510-arch kernel: efifb: framebuffer at 0xc0000000, using 8100k, total 8100k
Jun 10 08:13:51 yoga-510-arch kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
Jun 10 08:13:51 yoga-510-arch kernel: efifb: scrolling: redraw
Jun 10 08:13:51 yoga-510-arch kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 10 08:13:51 yoga-510-arch kernel: Console: switching to colour frame buffer device 240x67
Jun 10 08:13:51 yoga-510-arch kernel: fb0: EFI VGA frame buffer device
Jun 10 08:13:51 yoga-510-arch kernel: intel_idle: MWAIT substates: 0x11142120
Jun 10 08:13:51 yoga-510-arch kernel: intel_idle: v0.4.1 model 0x8E
Jun 10 08:13:51 yoga-510-arch kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Jun 10 08:13:51 yoga-510-arch kernel: GHES: HEST is not enabled!
Jun 10 08:13:51 yoga-510-arch kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jun 10 08:13:51 yoga-510-arch kernel: Linux agpgart interface v0.103
Jun 10 08:13:51 yoga-510-arch kernel: rtc_cmos 00:03: RTC can wake from S4
Jun 10 08:13:51 yoga-510-arch kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun 10 08:13:51 yoga-510-arch kernel: rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun 10 08:13:51 yoga-510-arch kernel: intel_pstate: Intel P-state driver initializing
Jun 10 08:13:51 yoga-510-arch kernel: intel_pstate: HWP enabled
Jun 10 08:13:51 yoga-510-arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 10
Jun 10 08:13:51 yoga-510-arch kernel: Segment Routing with IPv6
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 17
Jun 10 08:13:51 yoga-510-arch kernel: microcode: sig=0x806e9, pf=0x80, revision=0x3c
Jun 10 08:13:51 yoga-510-arch kernel: microcode: Microcode Update Driver: v2.2.
Jun 10 08:13:51 yoga-510-arch kernel: registered taskstats version 1
Jun 10 08:13:51 yoga-510-arch kernel: Loading compiled-in X.509 certificates
Jun 10 08:13:51 yoga-510-arch kernel: zswap: loaded using pool lzo/zbud
Jun 10 08:13:51 yoga-510-arch kernel:   Magic number: 5:552:215
Jun 10 08:13:51 yoga-510-arch kernel: event_source software: hash matches
Jun 10 08:13:51 yoga-510-arch kernel: acpi device:66: hash matches
Jun 10 08:13:51 yoga-510-arch kernel: rtc_cmos 00:03: setting system clock to 2017-06-10 06:13:50 UTC (1497075230)
Jun 10 08:13:51 yoga-510-arch kernel: PM: Hibernation image not present or could not be loaded.
Jun 10 08:13:51 yoga-510-arch kernel: Freeing unused kernel memory: 1304K
Jun 10 08:13:51 yoga-510-arch kernel: Write protecting the kernel read-only data: 10240k
Jun 10 08:13:51 yoga-510-arch kernel: Freeing unused kernel memory: 1696K
Jun 10 08:13:51 yoga-510-arch kernel: Freeing unused kernel memory: 32K
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-tmpfile: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: udevadm: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read)
Jun 10 08:13:51 yoga-510-arch kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Jun 10 08:13:51 yoga-510-arch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 10 08:13:51 yoga-510-arch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: bus type USB registered
Jun 10 08:13:51 yoga-510-arch kernel: usbcore: registered new interface driver usbfs
Jun 10 08:13:51 yoga-510-arch kernel: usbcore: registered new interface driver hub
Jun 10 08:13:51 yoga-510-arch kernel: usbcore: registered new device driver usb
Jun 10 08:13:51 yoga-510-arch kernel: SCSI subsystem initialized
Jun 10 08:13:51 yoga-510-arch kernel: rtsx_pci 0000:04:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 274
Jun 10 08:13:51 yoga-510-arch kernel: libata version 3.00 loaded.
Jun 10 08:13:51 yoga-510-arch kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 10 08:13:51 yoga-510-arch kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jun 10 08:13:51 yoga-510-arch kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
Jun 10 08:13:51 yoga-510-arch kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Jun 10 08:13:51 yoga-510-arch kernel: hub 1-0:1.0: USB hub found
Jun 10 08:13:51 yoga-510-arch kernel: hub 1-0:1.0: 12 ports detected
Jun 10 08:13:51 yoga-510-arch kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 10 08:13:51 yoga-510-arch kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jun 10 08:13:51 yoga-510-arch kernel: hub 2-0:1.0: USB hub found
Jun 10 08:13:51 yoga-510-arch kernel: hub 2-0:1.0: 6 ports detected
Jun 10 08:13:51 yoga-510-arch kernel: usb: port power management may be unreliable
Jun 10 08:13:51 yoga-510-arch kernel: ahci 0000:00:17.0: version 3.0
Jun 10 08:13:51 yoga-510-arch kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x1 impl SATA mode
Jun 10 08:13:51 yoga-510-arch kernel: ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Jun 10 08:13:51 yoga-510-arch kernel: scsi host0: ahci
Jun 10 08:13:51 yoga-510-arch kernel: scsi host1: ahci
Jun 10 08:13:51 yoga-510-arch kernel: ata1: SATA max UDMA/133 abar m2048@0xb252e000 port 0xb252e100 irq 276
Jun 10 08:13:51 yoga-510-arch kernel: ata2: DUMMY
Jun 10 08:13:51 yoga-510-arch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Jun 10 08:13:51 yoga-510-arch kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Jun 10 08:13:51 yoga-510-arch kernel: ata1.00: ATA-9: SAMSUNG MZYTY256HDHP-000L2, MAT61L1Q, max UDMA/133
Jun 10 08:13:51 yoga-510-arch kernel: ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Jun 10 08:13:51 yoga-510-arch kernel: ata1.00: configured for UDMA/133
Jun 10 08:13:51 yoga-510-arch kernel: scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MZYTY256 1L1Q PQ: 0 ANSI: 5
Jun 10 08:13:51 yoga-510-arch kernel: sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
Jun 10 08:13:51 yoga-510-arch kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 10 08:13:51 yoga-510-arch kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 10 08:13:51 yoga-510-arch kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 10 08:13:51 yoga-510-arch kernel:  sda: sda1 sda2 sda3 sda4 sda5 sda6
Jun 10 08:13:51 yoga-510-arch kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 10 08:13:51 yoga-510-arch kernel: usb 1-5: new high-speed USB device number 2 using xhci_hcd
Jun 10 08:13:51 yoga-510-arch kernel: EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
Jun 10 08:13:51 yoga-510-arch kernel: random: fast init done
Jun 10 08:13:51 yoga-510-arch kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 10 08:13:51 yoga-510-arch systemd[1]: systemd 232 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Jun 10 08:13:51 yoga-510-arch systemd[1]: Detected architecture x86-64.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Set hostname to <yoga-510-arch>.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on Process Core Dump Socket.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on udev Kernel Socket.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on Journal Socket.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 10 08:13:51 yoga-510-arch kernel: EXT4-fs (sda4): re-mounted. Opts: data=ordered
Jun 10 08:13:51 yoga-510-arch kernel: usb 1-6: new full-speed USB device number 3 using xhci_hcd
Jun 10 08:13:51 yoga-510-arch systemd-journald[164]: Journal started
Jun 10 08:13:51 yoga-510-arch systemd-journald[164]: System journal (/var/log/journal/ba4b777681884e76822b19ab7753c83f) is 456.1M, max 4.0G, 3.5G free.
Jun 10 08:13:51 yoga-510-arch systemd-sysctl[152]: Couldn't write '0' to 'radeon/runpm', ignoring: No such file or directory
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 10 08:13:51 yoga-510-arch systemd-journald[164]: System journal (/var/log/journal/ba4b777681884e76822b19ab7753c83f) is 456.1M, max 4.0G, 3.5G free.
Jun 10 08:13:51 yoga-510-arch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C0D:00/input/input2
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Lid Switch [LID0]
Jun 10 08:13:51 yoga-510-arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Button [PWRB]
Jun 10 08:13:51 yoga-510-arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Power Button [PWRF]
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Flush Journal to Persistent Storage.
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: AC Adapter [ACAD] (on-line)
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: Core ver 2.22
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 31
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI device and connection manager initialized
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI socket layer initialized
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: L2CAP socket layer initialized
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: SCO socket layer initialized
Jun 10 08:13:51 yoga-510-arch kernel: clocksource: Switched to clocksource tsc
Jun 10 08:13:51 yoga-510-arch kernel: hidraw: raw HID events driver (C) Jiri Kosina
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Battery Slot [BAT1] (battery present)
Jun 10 08:13:51 yoga-510-arch kernel: [Firmware Bug]: No valid trip found
Jun 10 08:13:51 yoga-510-arch kernel: [Firmware Bug]: No valid trip found
Jun 10 08:13:51 yoga-510-arch kernel: wmi: Mapper loaded
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART driver ver 2.3
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol H4 registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol BCSP registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol LL registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol ATH3K registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol Three-wire (H5) registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol Intel registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol Broadcom registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol QCA registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol AG6XX registered
Jun 10 08:13:51 yoga-510-arch kernel: Bluetooth: HCI UART protocol Marvell registered
Jun 10 08:13:51 yoga-510-arch kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Jun 10 08:13:51 yoga-510-arch kernel: input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input5
Jun 10 08:13:51 yoga-510-arch kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Jun 10 08:13:51 yoga-510-arch kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
Jun 10 08:13:51 yoga-510-arch kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Jun 10 08:13:51 yoga-510-arch kernel: (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Jun 10 08:13:51 yoga-510-arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 10 08:13:51 yoga-510-arch kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Jun 10 08:13:51 yoga-510-arch systemd[1]: Found device SAMSUNG_MZYTY256HDHP-000L2 SYSTEM_DRV.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting File System Check on /dev/disk/by-uuid/C675-4CC5...
Jun 10 08:13:51 yoga-510-arch kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 10 08:13:51 yoga-510-arch kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jun 10 08:13:51 yoga-510-arch kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h at 0xffffc90000d51000, fc:45:96:50:02:74, XID 14100800 IRQ 278
Jun 10 08:13:51 yoga-510-arch kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 10 08:13:51 yoga-510-arch kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Jun 10 08:13:51 yoga-510-arch kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Jun 10 08:13:51 yoga-510-arch systemd-fsck[213]: fsck.fat 4.1 (2017-01-24)
Jun 10 08:13:51 yoga-510-arch systemd-fsck[213]: /dev/sda1: 16 files, 9392/65536 clusters
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started File System Check on /dev/disk/by-uuid/C675-4CC5.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Mounting /boot...
Jun 10 08:13:51 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
Jun 10 08:13:51 yoga-510-arch kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
Jun 10 08:13:51 yoga-510-arch kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Jun 10 08:13:51 yoga-510-arch kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Jun 10 08:13:51 yoga-510-arch kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Jun 10 08:13:51 yoga-510-arch kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Jun 10 08:13:51 yoga-510-arch kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Jun 10 08:13:51 yoga-510-arch kernel: AVX2 version of gcm_enc/dec engaged.
Jun 10 08:13:51 yoga-510-arch kernel: AES CTR mode by8 optimization enabled
Jun 10 08:13:51 yoga-510-arch systemd[1]: Mounted /boot.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Local File Systems.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Create Volatile Files and Directories...
Jun 10 08:13:51 yoga-510-arch systemd-tmpfiles[238]: Cannot set file attribute for '/var/log/journal', value=0x00800000, mask=0x00800000: Operation not supported
Jun 10 08:13:51 yoga-510-arch systemd-tmpfiles[238]: Cannot set file attribute for '/var/log/journal/ba4b777681884e76822b19ab7753c83f', value=0x00800000, mask=0x00800000: Operation not supported
Jun 10 08:13:51 yoga-510-arch systemd-tmpfiles[238]: Cannot set file attribute for '/var/log/journal/remote', value=0x00800000, mask=0x00800000: Operation not supported
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Create Volatile Files and Directories.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Update UTMP about System Boot/Shutdown.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target System Initialization.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Daily man-db cache update.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Daily rotation of log files.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Daily verification of password and group files.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Timers.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Sockets.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Basic System.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Powertop tunings...
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Wicd a wireless and wired network manager for Linux...
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started numlockOnTty.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Login Service...
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started D-Bus System Message Bus.
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Memory usable by graphics device = 4096M
Jun 10 08:13:51 yoga-510-arch kernel: checking generic (c0000000 7e9000) vs hw (c0000000 10000000)
Jun 10 08:13:51 yoga-510-arch kernel: fb: switching to inteldrmfb from EFI VGA
Jun 10 08:13:51 yoga-510-arch kernel: Console: switching to colour dummy device 80x25
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Replacing VGA console driver
Jun 10 08:13:51 yoga-510-arch kernel: [drm] amdgpu kernel modesetting enabled.
Jun 10 08:13:51 yoga-510-arch kernel: vga_switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
Jun 10 08:13:51 yoga-510-arch kernel: ATPX version 1, functions 0x00000033
Jun 10 08:13:51 yoga-510-arch kernel: ATPX Hybrid Graphics
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Driver supports precise vblank timestamp query.
Jun 10 08:13:51 yoga-510-arch kernel: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Jun 10 08:13:51 yoga-510-arch kernel: AMD IOMMUv2 functionality not available on this system
Jun 10 08:13:51 yoga-510-arch kernel: CRAT table not found
Jun 10 08:13:51 yoga-510-arch kernel: Finished initializing topology ret=0
Jun 10 08:13:51 yoga-510-arch kernel: kfd kfd: Initialized module
Jun 10 08:13:51 yoga-510-arch kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_01.bin (v1.1)
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: enabling device (0400 -> 0403)
Jun 10 08:13:51 yoga-510-arch kernel: [drm] initializing kernel modesetting (TOPAZ 0x1002:0x6900 0x17AA:0x39BC 0x81).
Jun 10 08:13:51 yoga-510-arch kernel: [drm] register mmio base: 0xB2400000
Jun 10 08:13:51 yoga-510-arch kernel: [drm] register mmio size: 262144
Jun 10 08:13:51 yoga-510-arch kernel: [drm] doorbell mmio base: 0xB0000000
Jun 10 08:13:51 yoga-510-arch kernel: [drm] doorbell mmio size: 2097152
Jun 10 08:13:51 yoga-510-arch kernel: [drm] probing gen 2 caps for device 8086:9d10 = 1724043/e
Jun 10 08:13:51 yoga-510-arch kernel: [drm] probing mlw for device 8086:9d10 = 1724043
Jun 10 08:13:51 yoga-510-arch kernel: vga_switcheroo: enabled
Jun 10 08:13:51 yoga-510-arch kernel: [drm] GuC firmware load skipped
Jun 10 08:13:51 yoga-510-arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 10 08:13:51 yoga-510-arch systemd-logind[263]: New seat seat0.
Jun 10 08:13:51 yoga-510-arch systemd-vconsole-setup[258]: Invalid font metadata - width: 20364552 (max 32), height: 4294953216 (max 32), count: 2166509276 (max 512)
Jun 10 08:13:51 yoga-510-arch systemd-vconsole-setup[258]: Fonts will not be copied to remaining consoles
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Login Service.
Jun 10 08:13:51 yoga-510-arch kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jun 10 08:13:51 yoga-510-arch kernel: usb 1-7: new full-speed USB device number 4 using xhci_hcd
Jun 10 08:13:51 yoga-510-arch kernel: kvm: disabled by bios
Jun 10 08:13:51 yoga-510-arch kernel: iTCO_vendor_support: vendor-support=0
Jun 10 08:13:51 yoga-510-arch kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Jun 10 08:13:51 yoga-510-arch kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Jun 10 08:13:51 yoga-510-arch kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jun 10 08:13:51 yoga-510-arch powertop[259]: modprobe cpufreq_stats failedLoaded 300 prior measurements
Jun 10 08:13:51 yoga-510-arch kernel: intel_rapl: Found RAPL domain package
Jun 10 08:13:51 yoga-510-arch kernel: intel_rapl: Found RAPL domain core
Jun 10 08:13:51 yoga-510-arch kernel: intel_rapl: Found RAPL domain uncore
Jun 10 08:13:51 yoga-510-arch kernel: intel_rapl: Found RAPL domain dram
Jun 10 08:13:51 yoga-510-arch powertop[259]: RAPL device for cpu 0
Jun 10 08:13:51 yoga-510-arch powertop[259]: RAPL Using PowerCap Sysfs : Domain Mask f
Jun 10 08:13:51 yoga-510-arch powertop[259]: RAPL device for cpu 0
Jun 10 08:13:51 yoga-510-arch powertop[259]: RAPL Using PowerCap Sysfs : Domain Mask f
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 10 08:13:51 yoga-510-arch systemd-udevd[191]: Process '/usr/bin/tlp auto' failed with exit code 4.
Jun 10 08:13:51 yoga-510-arch kernel: ATOM BIOS: Lenovo/Compal
Jun 10 08:13:51 yoga-510-arch kernel: [drm] GPU posting now...
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Changing default dispclk from 0Mhz to 600Mhz
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: GTT: 2048M 0x0000000080000000 - 0x00000000FFFFFFFF
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Detected VRAM RAM=2048M, BAR=256M
Jun 10 08:13:51 yoga-510-arch kernel: [drm] RAM width 64bits DDR3
Jun 10 08:13:51 yoga-510-arch kernel: [TTM] Zone  kernel: Available graphics memory: 4009196 kiB
Jun 10 08:13:51 yoga-510-arch kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Jun 10 08:13:51 yoga-510-arch kernel: [TTM] Initializing pool allocator
Jun 10 08:13:51 yoga-510-arch kernel: [TTM] Initializing DMA pool allocator
Jun 10 08:13:51 yoga-510-arch kernel: [drm] amdgpu: 2048M of VRAM memory ready
Jun 10 08:13:51 yoga-510-arch kernel: [drm] amdgpu: 2048M of GTT memory ready.
Jun 10 08:13:51 yoga-510-arch kernel: [drm] GART: num cpu pages 524288, num gpu pages 524288
Jun 10 08:13:51 yoga-510-arch kernel: [drm] PCIE GART of 2048M enabled (table at 0x0000000000040000).
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Driver supports precise vblank timestamp query.
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: amdgpu: using MSI.
Jun 10 08:13:51 yoga-510-arch kernel: [drm] amdgpu: irq initialized.
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] amdgpu: powerplay sw initialized
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000010, cpu addr 0xffff880263c54010
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000020, cpu addr 0xffff880263c54020
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000030, cpu addr 0xffff880263c54030
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000040, cpu addr 0xffff880263c54040
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000050, cpu addr 0xffff880263c54050
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000080000060, cpu addr 0xffff880263c54060
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 6 use gpu addr 0x0000000080000070, cpu addr 0xffff880263c54070
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 7 use gpu addr 0x0000000080000080, cpu addr 0xffff880263c54080
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 8 use gpu addr 0x0000000080000090, cpu addr 0xffff880263c54090
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 9 use gpu addr 0x00000000800000a0, cpu addr 0xffff880263c540a0
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 10 use gpu addr 0x00000000800000b0, cpu addr 0xffff880263c540b0
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu 0000:01:00.0: fence driver on ring 11 use gpu addr 0x00000000800000c0, cpu addr 0xffff880263c540c0
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] Can't find requested voltage id in vddc_dependency_on_sclk table!
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] failed to retrieving EVV voltage!
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] Can't find requested voltage id in vddc_dependency_on_sclk table!
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] failed to retrieving EVV voltage!
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] Can't find requested voltage id in vddc_dependency_on_sclk table!
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] failed to retrieving EVV voltage!
Jun 10 08:13:51 yoga-510-arch kernel: amdgpu: [powerplay] can't get the mac of 5
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 1 succeeded in 18 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 2 succeeded in 9 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 3 succeeded in 22 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 4 succeeded in 11 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 5 succeeded in 11 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 6 succeeded in 11 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 7 succeeded in 11 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 8 succeeded in 10 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 9 succeeded in 11 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 10 succeeded in 6 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ring test on 11 succeeded in 6 usecs
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 1 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 2 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 3 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 4 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 5 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 6 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 7 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 8 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 9 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 10 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] ib test on ring 11 succeeded
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Initialized amdgpu 3.10.0 20150101 for 0000:01:00.0 on minor 1
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Initialized i915 1.6.0 20170123 for 0000:00:02.0 on minor 0
Jun 10 08:13:51 yoga-510-arch kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Jun 10 08:13:51 yoga-510-arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jun 10 08:13:51 yoga-510-arch kernel: [drm] Initialized i915 1.6.0 20170123 for 0000:00:02.0 on minor 0
Jun 10 08:13:51 yoga-510-arch kernel: ahci 0000:00:17.0: port does not support device sleep
Jun 10 08:13:51 yoga-510-arch systemd-logind[263]: Watching system buttons on /dev/input/event2 (Power Button)
Jun 10 08:13:51 yoga-510-arch systemd-logind[263]: Watching system buttons on /dev/input/event1 (Lid Switch)
Jun 10 08:13:51 yoga-510-arch systemd-logind[263]: Watching system buttons on /dev/input/event3 (Power Button)
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0:    inputs:
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0:      Mic=0x19
Jun 10 08:13:51 yoga-510-arch kernel: snd_hda_codec_generic hdaudioC0D0:      Internal Mic=0x12
Jun 10 08:13:51 yoga-510-arch kernel: random: crng init done
Jun 10 08:13:51 yoga-510-arch systemd-logind[263]: Watching system buttons on /dev/input/event5 (Video Bus)
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Sound Card.
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
Jun 10 08:13:51 yoga-510-arch kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Wicd a wireless and wired network manager for Linux.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Network.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Starting Permit User Sessions...
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Permit User Sessions.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Started Getty on tty1.
Jun 10 08:13:51 yoga-510-arch systemd[1]: Reached target Login Prompts.
Jun 10 08:13:51 yoga-510-arch powertop[259]: RAPL device for cpu 0
Jun 10 08:13:51 yoga-510-arch powertop[259]: RAPL Using PowerCap Sysfs : Domain Mask f
Jun 10 08:13:51 yoga-510-arch powertop[259]: Devfreq not enabled
Jun 10 08:13:51 yoga-510-arch powertop[259]: glob returned GLOB_ABORTED
Jun 10 08:13:51 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: qca9377 hw1.1 target 0x05020001 chip_id 0x003821ff sub 17aa:0901
Jun 10 08:13:51 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 0 testmode 0
Jun 10 08:13:51 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: firmware ver WLAN.TF.1.0-00267-1 api 5 features ignore-otp crc32 79cea2c7
Jun 10 08:13:51 yoga-510-arch kernel: NET: Registered protocol family 3
Jun 10 08:13:51 yoga-510-arch kernel: fbcon: inteldrmfb (fb0) is primary device
Jun 10 08:13:52 yoga-510-arch systemd[1]: Reached target Bluetooth.
Jun 10 08:13:53 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: board_file api 2 bmi_id N/A crc32 93da0176
Jun 10 08:13:53 yoga-510-arch kernel: input: SYNA7501:00 06CB:16CA as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA7501:00/0018:06CB:16CA.0002/input/input15
Jun 10 08:13:53 yoga-510-arch kernel: hid-multitouch 0018:06CB:16CA.0002: input,hidraw0: I2C HID v1.00 Device [SYNA7501:00 06CB:16CA] on i2c-SYNA7501:00
Jun 10 08:13:53 yoga-510-arch kernel: mousedev: PS/2 mouse device common for all mice
Jun 10 08:13:53 yoga-510-arch kernel: psmouse serio1: synaptics: queried max coordinates: x [..5664], y [..4682]
Jun 10 08:13:53 yoga-510-arch kernel: psmouse serio1: synaptics: queried min coordinates: x [1278..], y [1172..]
Jun 10 08:13:53 yoga-510-arch kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x127c00/0x0, board id: 2334, fw id: 1508589
Jun 10 08:13:53 yoga-510-arch kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
Jun 10 08:13:53 yoga-510-arch kernel: usbcore: registered new interface driver btusb
Jun 10 08:13:53 yoga-510-arch kernel: [drm] RC6 on
Jun 10 08:13:53 yoga-510-arch kernel: Console: switching to colour frame buffer device 240x67
Jun 10 08:13:53 yoga-510-arch kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Jun 10 08:13:53 yoga-510-arch systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Jun 10 08:13:53 yoga-510-arch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Jun 10 08:13:53 yoga-510-arch systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Jun 10 08:13:53 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: htt-ver 3.1 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
Jun 10 08:13:53 yoga-510-arch kernel: ath: EEPROM regdomain: 0x6c
Jun 10 08:13:53 yoga-510-arch kernel: ath: EEPROM indicates we should expect a direct regpair map
Jun 10 08:13:53 yoga-510-arch kernel: ath: Country alpha2 being used: 00
Jun 10 08:13:53 yoga-510-arch kernel: ath: Regpair used: 0x6c
Jun 10 08:13:53 yoga-510-arch kernel: ath10k_pci 0000:03:00.0 wlp3s0: renamed from wlan0
Jun 10 08:13:54 yoga-510-arch powertop[259]: Leaving PowerTOP
Jun 10 08:13:54 yoga-510-arch kernel: ahci 0000:00:17.0: port does not support device sleep
Jun 10 08:13:56 yoga-510-arch echo[525]: on > /sys/bus/usb/devices/1-2/power/control
Jun 10 08:13:56 yoga-510-arch systemd[1]: Started Powertop tunings.
Jun 10 08:13:56 yoga-510-arch systemd[1]: Reached target Multi-User System.
Jun 10 08:13:56 yoga-510-arch systemd[1]: Starting TLP system startup/shutdown...
Jun 10 08:13:56 yoga-510-arch systemd[1]: Reached target Graphical Interface.
Jun 10 08:13:56 yoga-510-arch kernel: ahci 0000:00:17.0: port does not support device sleep
Jun 10 08:13:56 yoga-510-arch tlp[527]: Applying power save settings...done.
Jun 10 08:13:56 yoga-510-arch tlp[527]: Setting battery charge thresholds...done.
Jun 10 08:13:56 yoga-510-arch systemd[1]: Started TLP system startup/shutdown.
Jun 10 08:13:56 yoga-510-arch systemd[1]: Startup finished in 1.376s (kernel) + 5.312s (userspace) = 9.884s.
Jun 10 08:13:56 yoga-510-arch kernel: r8169 0000:02:00.0 enp2s0: link down
Jun 10 08:13:56 yoga-510-arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
Jun 10 08:13:57 yoga-510-arch kernel: amdgpu: [powerplay] VI should always have 2 performance levels
Jun 10 08:13:57 yoga-510-arch kernel: amdgpu 0000:01:00.0: GPU pci config reset
Jun 10 08:14:00 yoga-510-arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Jun 10 08:14:01 yoga-510-arch kernel: ath10k_pci 0000:03:00.0: no channel configured; ignoring frame(s)!
Jun 10 08:14:05 yoga-510-arch wicd[260]: dhcpcd not running
Jun 10 08:14:05 yoga-510-arch dhcpcd[660]: dhcpcd not running
Jun 10 08:14:07 yoga-510-arch login[391]: pam_unix(login:session): session opened for user root by LOGIN(uid=0)
Jun 10 08:14:07 yoga-510-arch systemd[1]: Created slice User Slice of root.
Jun 10 08:14:07 yoga-510-arch systemd[1]: Starting User Manager for UID 0...
Jun 10 08:14:07 yoga-510-arch systemd[1]: Started Session c1 of user root.
Jun 10 08:14:07 yoga-510-arch systemd-logind[263]: New session c1 of user root.
Jun 10 08:14:07 yoga-510-arch systemd[668]: pam_unix(systemd-user:session): session opened for user root by (uid=0)
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on GnuPG network certificate management daemon.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Reached target Paths.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Starting D-Bus User Message Bus Socket.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Reached target Timers.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on Sound System.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 10 08:14:07 yoga-510-arch systemd[668]: Listening on D-Bus User Message Bus Socket.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Reached target Sockets.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Reached target Basic System.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Starting Update XDG user dir configuration...
Jun 10 08:14:07 yoga-510-arch systemd[668]: Started Update XDG user dir configuration.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Reached target Default.
Jun 10 08:14:07 yoga-510-arch systemd[668]: Startup finished in 23ms.
Jun 10 08:14:07 yoga-510-arch systemd[1]: Started User Manager for UID 0.
Jun 10 08:14:07 yoga-510-arch login[391]: ROOT LOGIN ON tty1
Jun 10 08:14:07 yoga-510-arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Jun 10 08:14:07 yoga-510-arch wicd[260]: Failed to connect to non-global ctrl_ifname: wlp3s0  error: No such file or directory
Jun 10 08:14:07 yoga-510-arch wicd[260]: dhcpcd not running
Jun 10 08:14:07 yoga-510-arch dhcpcd[683]: dhcpcd not running
Jun 10 08:14:07 yoga-510-arch kernel: r8169 0000:02:00.0 enp2s0: link down
Jun 10 08:14:07 yoga-510-arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
Jun 10 08:14:07 yoga-510-arch wicd[260]: Failed to connect to non-global ctrl_ifname: enp2s0  error: No such file or directory
Jun 10 08:14:07 yoga-510-arch wicd[260]: dhcpcd not running
Jun 10 08:14:07 yoga-510-arch dhcpcd[695]: dhcpcd not running
Jun 10 08:14:09 yoga-510-arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Jun 10 08:14:09 yoga-510-arch wicd[260]: Failed to connect to non-global ctrl_ifname: wlp3s0  error: No such file or directory
Jun 10 08:14:09 yoga-510-arch wicd[260]: Error for wireless request "Set Bit Rate" (8B20) :
Jun 10 08:14:09 yoga-510-arch wicd[260]:     SET failed on device %s ; No such device.
Jun 10 08:14:16 yoga-510-arch kernel: wlp3s0: authenticate with 54:67:51:fe:33:4c
Jun 10 08:14:17 yoga-510-arch kernel: wlp3s0: send auth to 54:67:51:fe:33:4c (try 1/3)
Jun 10 08:14:17 yoga-510-arch kernel: wlp3s0: authenticated
Jun 10 08:14:17 yoga-510-arch kernel: wlp3s0: associating with AP with corrupt probe response
Jun 10 08:14:17 yoga-510-arch kernel: wlp3s0: associate with 54:67:51:fe:33:4c (try 1/3)
Jun 10 08:14:17 yoga-510-arch kernel: wlp3s0: RX AssocResp from 54:67:51:fe:33:4c (capab=0x511 status=0 aid=5)
Jun 10 08:14:17 yoga-510-arch kernel: wlp3s0: associated
Jun 10 08:14:17 yoga-510-arch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: DUID 00:01:00:01:20:92:3d:fb:58:00:e3:df:21:1f
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: IAID e3:df:21:1f
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: soliciting a DHCP lease
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: offered 192.168.0.8 from 192.168.0.1
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: probing address 192.168.0.8/24
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: soliciting an IPv6 router
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: Router Advertisement from fe80::5667:51ff:feff:3381
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: adding address 2a02:810d:d40:9965:c5d8:cedc:7fd2:4cf2/64
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: adding route to 2a02:810d:d40:9965::/64
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: adding default route via fe80::5667:51ff:feff:3381
Jun 10 08:14:18 yoga-510-arch dhcpcd[743]: wlp3s0: requesting DHCPv6 information
Jun 10 08:14:20 yoga-510-arch dhcpcd[743]: forked to background, child pid 826
Jun 10 08:14:23 yoga-510-arch dhcpcd[826]: wlp3s0: leased 192.168.0.8 for 3600 seconds
Jun 10 08:14:23 yoga-510-arch dhcpcd[826]: wlp3s0: adding route to 192.168.0.0/24
Jun 10 08:14:23 yoga-510-arch dhcpcd[826]: wlp3s0: adding default route via 192.168.0.1

Offline

#10 2017-06-10 17:14:35

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: X server not working after update

Looks like your laptop has hybrid graphics. Try disabling the discrete GPU and see if it makes any difference.

Offline

#11 2017-06-10 22:47:08

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

I should have stated that earlier, my computer has an integrated chipset for graphics and an amd Radeon graphics card.

I followed the approach of this wiki article: https://wiki.archlinux.org/index.php/Hybrid_graphics

But acpi_calls reports failed for every setting.

Offline

#12 2017-06-11 03:44:23

x33a
Forum Fellow
Registered: 2009-08-15
Posts: 4,587

Re: X server not working after update

acpi_call hasn't been updated for a while. Try VGA switcheroo, or see if you EFI/BIOS has an option to disable the AMD gpu.

Offline

#13 2017-06-11 09:54:13

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

I found the option in the BIOS to use only the IGP. Now everything is working again. Thanks a lot!

Is there any posibility how I could solve the problem without just completely deactivating my AMD GPU?

Offline

#14 2017-06-11 14:03:17

alive4ever
Member
Registered: 2016-07-10
Posts: 65

Re: X server not working after update

Direct Xorg access to /dev/dri/card1 without amdgpu xorg driver is not possible.

Do you have xf86-video-amdgpu installed?

Offline

#15 2017-06-11 16:56:58

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

While checking which drivers I have installed I noticed I have basically all of them installed:

$ pacman -Qs xf86-video
local/xf86-video-amdgpu 1.3.0-1 (xorg-drivers)
    X.org amdgpu video driver
local/xf86-video-ati 1:7.9.0-1 (xorg-drivers)
    X.org ati video driver
local/xf86-video-fbdev 0.4.4-6 (xorg-drivers)
    X.org framebuffer video driver
local/xf86-video-intel 1:2.99.917+777+g6babcf15-1 (xorg-drivers)
    X.org Intel i810/i830/i915/945G/G965+ video drivers
local/xf86-video-nouveau 1.0.15-1 (xorg-drivers)
    Open Source 2D acceleration driver for nVidia cards
local/xf86-video-vesa 2.3.4-3 (xorg-drivers xorg)
    X.org vesa video driver

Could some drivers conflict between each other and cause the problem?

Offline

#16 2017-06-11 17:02:20

ugjka
Member
From: Latvia
Registered: 2014-04-01
Posts: 1,806
Website

Re: X server not working after update

xf86-video-intel may cause some problems since intel is not pouring any money into it anymore


https://ugjka.net
paru > yay | webcord > discord
pacman -S spotify-launcher
mount /dev/disk/by-...

Offline

#17 2017-06-12 07:47:23

Cinbu
Member
Registered: 2016-12-27
Posts: 29

Re: X server not working after update

Removing the intel driver with switchable graphic cards enabled in the BIOS doesn't work neither. Here is the log file to it:

[    27.280] 
X.Org X Server 1.19.3
Release Date: 2017-03-15
[    27.280] X Protocol Version 11, Revision 0
[    27.280] Build Operating System: Linux 4.9.11-1-ARCH x86_64 
[    27.280] Current Operating System: Linux yoga-510-arch 4.11.3-1-ARCH #1 SMP PREEMPT Sun May 28 10:40:17 CEST 2017 x86_64
[    27.280] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=b0c31b50-c336-4e3e-866b-be816a2fa200 rootfstype=ext4 add_efi_memmap rw
[    27.280] Build Date: 07 April 2017  05:42:48PM
[    27.280]  
[    27.280] Current version of pixman: 0.34.0
[    27.280] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    27.280] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    27.281] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 12 10:43:50 2017
[    27.281] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    27.281] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    27.281] (==) No Layout section.  Using the first Screen section.
[    27.281] (==) No screen section available. Using defaults.
[    27.281] (**) |-->Screen "Default Screen Section" (0)
[    27.281] (**) |   |-->Monitor "<default monitor>"
[    27.281] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[    27.281] (**) |   |-->Device "Intel Graphics"
[    27.281] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    27.281] (==) Automatically adding devices
[    27.281] (==) Automatically enabling devices
[    27.281] (==) Automatically adding GPU devices
[    27.281] (==) Automatically binding GPU devices
[    27.281] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    27.281] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    27.281] 	Entry deleted from font path.
[    27.281] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[    27.281] (==) ModulePath set to "/usr/lib/xorg/modules"
[    27.281] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    27.281] (II) Loader magic: 0x822d60
[    27.281] (II) Module ABI versions:
[    27.281] 	X.Org ANSI C Emulation: 0.4
[    27.281] 	X.Org Video Driver: 23.0
[    27.281] 	X.Org XInput driver : 24.1
[    27.281] 	X.Org Server Extension : 10.0
[    27.282] (++) using VT number 1

[    27.282] (--) controlling tty is VT number 1, auto-enabling KeepTty
[    27.282] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
[    27.283] (II) xfree86: Adding drm device (/dev/dri/card0)
[    27.283] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[    27.284] (--) PCI:*(0:0:2:0) 8086:5916:17aa:39bc rev 2, Mem @ 0xb0000000/16777216, 0xa0000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[    27.284] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    27.284] (II) LoadModule: "glx"
[    27.284] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    27.285] (II) Module glx: vendor="X.Org Foundation"
[    27.285] 	compiled for 1.19.3, module version = 1.0.0
[    27.285] 	ABI class: X.Org Server Extension, version 10.0
[    27.285] (II) LoadModule: "intel"
[    27.285] (WW) Warning, couldn't open module intel
[    27.285] (II) UnloadModule: "intel"
[    27.285] (II) Unloading intel
[    27.285] (EE) Failed to load module "intel" (module does not exist, 0)
[    27.285] (EE) No drivers available.
[    27.285] (EE) 
Fatal server error:
[    27.285] (EE) no screens found(EE) 
[    27.285] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[    27.285] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    27.285] (EE) 
[    27.334] (EE) Server terminated with error (1). Closing log file.

Offline

Board footer

Powered by FluxBB