You are not logged in.

#1 2019-11-20 20:59:42

judd1
Member
Registered: 2015-09-04
Posts: 260

[Solved] Linux-zen and xorg

I have the Zen kernel installed next to the Arch and Arch-lts kernel (the latter two, with no operating problems), right now I'm posting from Linux arch 5.3.11-arch1-1, since I can't do it from the Zen kernel since it goes into xorg, after logging in with startx.

The information I could collect, from a tty with the command

cat /home/judd/.local/share/xorg/Xorg.0.log

is a photo: https://i.postimg.cc/tgm1NFNG/linux-zen.jpg

I have linux-zen-headers installed and also mkinitcpio -p linux-zen, which all worked fine, but when restarting it is already stuck in xorg.

grub:
/boot/grub/grub.cfg

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
else
  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=es_AR
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
	else
	  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
	fi
	echo	'Loading Linux linux-zen ...'
	linux	/boot/vmlinuz-linux-zen root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
	echo	'Loading initial ramdisk ...'
	initrd	/boot/intel-ucode.img /boot/initramfs-linux-zen.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
	menuentry 'Arch Linux, with Linux linux-zen' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-zen-advanced-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
		else
		  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
		fi
		echo	'Loading Linux linux-zen ...'
		linux	/boot/vmlinuz-linux-zen root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
		echo	'Loading initial ramdisk ...'
		initrd	/boot/intel-ucode.img /boot/initramfs-linux-zen.img
	}
	menuentry 'Arch Linux, with Linux linux-zen (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-zen-fallback-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
		else
		  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
		fi
		echo	'Loading Linux linux-zen ...'
		linux	/boot/vmlinuz-linux-zen root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-linux-zen-fallback.img
	}
	menuentry 'Arch Linux, with Linux linux-lts' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-advanced-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
		else
		  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
		fi
		echo	'Loading Linux linux-lts ...'
		linux	/boot/vmlinuz-linux-lts root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
		echo	'Loading initial ramdisk ...'
		initrd	/boot/intel-ucode.img /boot/initramfs-linux-lts.img
	}
	menuentry 'Arch Linux, with Linux linux-lts (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-fallback-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
		else
		  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
		fi
		echo	'Loading Linux linux-lts ...'
		linux	/boot/vmlinuz-linux-lts root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-linux-lts-fallback.img
	}
	menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
		else
		  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
		echo	'Loading initial ramdisk ...'
		initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-df548a45-26e2-448c-8c6a-964a8bcd1b6b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
		else
		  search --no-floppy --fs-uuid --set=root df548a45-26e2-448c-8c6a-964a8bcd1b6b
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-linux-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/60_memtest86+ ###
if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        search --fs-uuid --no-floppy --set=root --hint-ieee1275='ieee1275//disk@0,gpt2' --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  df548a45-26e2-448c-8c6a-964a8bcd1b6b
        linux16 /boot/memtest86+/memtest.bin 
    }
fi
### END /etc/grub.d/60_memtest86+ ###

/etc/default/grub

# GRUB boot loader configuration

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="quiet btusb.enable_autosuspend=n loglevel=3"
GRUB_CMDLINE_LINUX="bluetooth.disable_ertm=1"

# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"

# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y

# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT=5
#GRUB_HIDDEN_TIMEOUT_QUIET=true

# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto

# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true

# Uncomment and set to the desired menu colors.  Used by normal and wallpaper
# modes only.  Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"

# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"

# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"

# Uncomment to make GRUB remember the last selection. This requires to
# set 'GRUB_DEFAULT=saved' above.
#GRUB_SAVEDEFAULT="true"

dmesg | grep microcode

[    0.000000] microcode: microcode updated early to revision 0x21, date = 2019-02-13
[    0.837925] microcode: sig=0x306a9, pf=0x10, revision=0x21
[    0.838106] microcode: Microcode Update Driver: v2.2.

lspci

00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C216 Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C216 Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C216 Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.3 PCI bridge: Intel Corporation 7 Series/C216 Chipset Family PCI Express Root Port 4 (rev c4)
00:1c.5 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 6 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
00:1f.2 RAID bus controller: Intel Corporation 82801 Mobile SATA Controller [RAID mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C216 Chipset Family SMBus Controller (rev 04)
02:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7550M/7570M/7650M]
07:00.0 Network controller: Broadcom Inc. and subsidiaries BCM43142 802.11b/g/n (rev 01)
09:00.0 Ethernet controller: Qualcomm Atheros AR8162 Fast Ethernet (rev 10)

Grateful in advance!

Last edited by judd1 (2019-11-21 16:30:34)


This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

#2 2019-11-20 21:59:31

Zod
Member
From: Hoosiertucky
Registered: 2019-03-10
Posts: 636

Re: [Solved] Linux-zen and xorg

https://wiki.archlinux.org/index.php/Dy … le_Support

In my case, I also had to migrate to the nvidia dkms drivers and the virtualbox dkms host modules.

I decided that I didn't particularly want that stuff rebuilt as often as they were so I went back to the vanilla kernel.

Offline

#3 2019-11-20 22:42:03

judd1
Member
Registered: 2015-09-04
Posts: 260

Re: [Solved] Linux-zen and xorg

I just updated -Syu and I was able to enter the Zen core:

[2019-11-20T19:21:04-0300] [PACMAN] Running 'pacman -Syu'
[2019-11-20T19:21:04-0300] [PACMAN] synchronizing package lists
[2019-11-20T19:22:23-0300] [PACMAN] starting full system upgrade
[2019-11-20T19:24:03-0300] [ALPM] transaction started
[2019-11-20T19:24:03-0300] [ALPM] upgraded bind-tools (9.14.7-4 -> 9.14.8-1)
[2019-11-20T19:24:03-0300] [ALPM] upgraded systemd-libs (243.78-2 -> 243.162-2)
[2019-11-20T19:24:04-0300] [ALPM] upgraded systemd (243.78-2 -> 243.162-2)
[2019-11-20T19:24:04-0300] [ALPM] upgraded lib32-systemd (243.78-1 -> 243.162-2)
[2019-11-20T19:24:04-0300] [ALPM] upgraded systemd-sysvcompat (243.78-2 -> 243.162-2)
[2019-11-20T19:24:04-0300] [ALPM] upgraded x264 (3:0.157.r2980.34c06d1-1 -> 3:0.157.r2980.34c06d1-2)
[2019-11-20T19:24:04-0300] [ALPM] upgraded xdg-utils (1.1.3+18+g0547886-3 -> 1.1.3+18+g0547886-4)
[2019-11-20T19:24:06-0300] [ALPM] transaction completed
[2019-11-20T19:24:06-0300] [ALPM] running '20-systemd-sysusers.hook'...
[2019-11-20T19:24:06-0300] [ALPM] running '30-systemd-catalog.hook'...
[2019-11-20T19:24:06-0300] [ALPM] running '30-systemd-daemon-reload.hook'...
[2019-11-20T19:24:06-0300] [ALPM] running '30-systemd-hwdb.hook'...
[2019-11-20T19:24:07-0300] [ALPM] running '30-systemd-sysctl.hook'...
[2019-11-20T19:24:07-0300] [ALPM] running '30-systemd-tmpfiles.hook'...
[2019-11-20T19:24:07-0300] [ALPM] running '30-systemd-udev-reload.hook'...
[2019-11-20T19:24:07-0300] [ALPM] running '30-systemd-update.hook'...
[2019-11-20T19:24:07-0300] [ALPM] running '90-mkinitcpio-install.hook'...
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'default'
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts.img
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET] ==> Starting build: 4.19.84-1-lts
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2019-11-20T19:24:07-0300] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2019-11-20T19:24:10-0300] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2019-11-20T19:24:11-0300] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2019-11-20T19:24:11-0300] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2019-11-20T19:24:11-0300] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2019-11-20T19:24:11-0300] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-lts.img
[2019-11-20T19:24:13-0300] [ALPM-SCRIPTLET] ==> Image generation successful
[2019-11-20T19:24:13-0300] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'fallback'
[2019-11-20T19:24:13-0300] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts-fallback.img -S autodetect
[2019-11-20T19:24:13-0300] [ALPM-SCRIPTLET] ==> Starting build: 4.19.84-1-lts
[2019-11-20T19:24:13-0300] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2019-11-20T19:24:13-0300] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2019-11-20T19:24:14-0300] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2019-11-20T19:24:14-0300] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2019-11-20T19:24:16-0300] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: wd719x
[2019-11-20T19:24:16-0300] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
[2019-11-20T19:24:19-0300] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2019-11-20T19:24:21-0300] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2019-11-20T19:24:23-0300] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2019-11-20T19:24:25-0300] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2019-11-20T19:24:25-0300] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-lts-fallback.img
[2019-11-20T19:24:30-0300] [ALPM-SCRIPTLET] ==> Image generation successful
[2019-11-20T19:24:30-0300] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-zen.preset: 'default'
[2019-11-20T19:24:30-0300] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux-zen -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-zen.img
[2019-11-20T19:24:30-0300] [ALPM-SCRIPTLET] ==> Starting build: 5.3.11-zen1-1-zen
[2019-11-20T19:24:30-0300] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2019-11-20T19:24:31-0300] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2019-11-20T19:24:31-0300] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2019-11-20T19:24:31-0300] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2019-11-20T19:24:31-0300] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2019-11-20T19:24:34-0300] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2019-11-20T19:24:35-0300] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2019-11-20T19:24:35-0300] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2019-11-20T19:24:35-0300] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2019-11-20T19:24:35-0300] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-zen.img
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET] ==> Image generation successful
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-zen.preset: 'fallback'
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux-zen -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-zen-fallback.img -S autodetect
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET] ==> Starting build: 5.3.11-zen1-1-zen
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2019-11-20T19:24:37-0300] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2019-11-20T19:24:40-0300] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: wd719x
[2019-11-20T19:24:40-0300] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
[2019-11-20T19:24:43-0300] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2019-11-20T19:24:45-0300] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2019-11-20T19:24:47-0300] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2019-11-20T19:24:49-0300] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2019-11-20T19:24:49-0300] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-zen-fallback.img
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET] ==> Image generation successful
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET] ==> Starting build: 5.3.11-arch1-1
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2019-11-20T19:24:55-0300] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2019-11-20T19:24:56-0300] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2019-11-20T19:24:59-0300] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2019-11-20T19:24:59-0300] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2019-11-20T19:24:59-0300] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2019-11-20T19:24:59-0300] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2019-11-20T19:25:00-0300] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux.img
[2019-11-20T19:25:01-0300] [ALPM-SCRIPTLET] ==> Image generation successful
[2019-11-20T19:25:01-0300] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
[2019-11-20T19:25:01-0300] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
[2019-11-20T19:25:01-0300] [ALPM-SCRIPTLET] ==> Starting build: 5.3.11-arch1-1
[2019-11-20T19:25:01-0300] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2019-11-20T19:25:02-0300] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2019-11-20T19:25:02-0300] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2019-11-20T19:25:02-0300] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2019-11-20T19:25:04-0300] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: wd719x
[2019-11-20T19:25:04-0300] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
[2019-11-20T19:25:08-0300] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2019-11-20T19:25:09-0300] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2019-11-20T19:25:11-0300] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2019-11-20T19:25:13-0300] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2019-11-20T19:25:13-0300] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-fallback.img
[2019-11-20T19:25:19-0300] [ALPM-SCRIPTLET] ==> Image generation successful
[2019-11-20T19:25:19-0300] [ALPM] running 'dbus-reload.hook'...

lspci | grep VGA

00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
02:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7550M/7570M/7650M]

cat /home/judd/.local/share/xorg/Xorg.0.log   #Now complete!

[    25.433] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[    25.433] 
X.Org X Server 1.20.5
X Protocol Version 11, Revision 0
[    25.433] Build Operating System: Linux Arch Linux
[    25.434] Current Operating System: Linux arch 5.3.11-zen1-1-zen #1 ZEN SMP PREEMPT Tue, 12 Nov 2019 22:19:44 +0000 x86_64
[    25.434] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-zen root=UUID=df548a45-26e2-448c-8c6a-964a8bcd1b6b rw bluetooth.disable_ertm=1 quiet btusb.enable_autosuspend=n loglevel=3
[    25.434] Build Date: 25 October 2019  08:43:50AM
[    25.434]  
[    25.435] Current version of pixman: 0.38.4
[    25.435] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    25.435] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    25.436] (==) Log file: "/home/judd/.local/share/xorg/Xorg.0.log", Time: Wed Nov 20 19:26:19 2019
[    25.438] (==) Using config file: "/etc/X11/xorg.conf"
[    25.438] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    25.438] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    25.441] (==) No Layout section.  Using the first Screen section.
[    25.441] (==) No screen section available. Using defaults.
[    25.441] (**) |-->Screen "Default Screen Section" (0)
[    25.441] (**) |   |-->Monitor "<default monitor>"
[    25.442] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    25.442] (==) Automatically adding devices
[    25.442] (==) Automatically enabling devices
[    25.442] (==) Automatically adding GPU devices
[    25.442] (==) Automatically binding GPU devices
[    25.442] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    25.447] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    25.447] 	Entry deleted from font path.
[    25.447] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    25.447] (==) ModulePath set to "/usr/lib/xorg/modules"
[    25.447] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    25.447] (II) Module ABI versions:
[    25.447] 	X.Org ANSI C Emulation: 0.4
[    25.447] 	X.Org Video Driver: 24.0
[    25.447] 	X.Org XInput driver : 24.1
[    25.447] 	X.Org Server Extension : 10.0
[    25.448] (++) using VT number 1

[    25.451] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    25.453] (II) xfree86: Adding drm device (/dev/dri/card1)
[    25.454] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 10 paused 0
[    25.454] (II) xfree86: Adding drm device (/dev/dri/card0)
[    25.455] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[    25.461] (--) PCI:*(0@0:2:0) 8086:0166:1028:057f rev 9, Mem @ 0xf7800000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[    25.461] (--) PCI: (2@0:0:0) 1002:6841:1028:057f rev 0, Mem @ 0xe0000000/268435456, 0xf7e20000/131072, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[    25.461] (II) Open ACPI successful (/var/run/acpid.socket)
[    25.461] (II) LoadModule: "glx"
[    25.464] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    25.466] (II) Module glx: vendor="X.Org Foundation"
[    25.466] 	compiled for 1.20.5, module version = 1.0.0
[    25.466] 	ABI class: X.Org Server Extension, version 10.0
[    25.466] (II) Applying OutputClass "Radeon" to /dev/dri/card1
[    25.466] 	loading driver: radeon
[    25.466] (==) Matched intel as autoconfigured driver 0
[    25.466] (==) Matched radeon as autoconfigured driver 1
[    25.466] (==) Matched ati as autoconfigured driver 2
[    25.466] (==) Matched modesetting as autoconfigured driver 3
[    25.466] (==) Matched fbdev as autoconfigured driver 4
[    25.466] (==) Matched vesa as autoconfigured driver 5
[    25.466] (==) Assigned the driver to the xf86ConfigLayout
[    25.466] (II) LoadModule: "intel"
[    25.466] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    25.467] (II) Module intel: vendor="X.Org Foundation"
[    25.467] 	compiled for 1.20.5, module version = 2.99.917
[    25.467] 	Module class: X.Org Video Driver
[    25.467] 	ABI class: X.Org Video Driver, version 24.0
[    25.467] (II) LoadModule: "radeon"
[    25.467] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    25.468] (II) Module radeon: vendor="X.Org Foundation"
[    25.468] 	compiled for 1.20.5, module version = 19.1.0
[    25.468] 	Module class: X.Org Video Driver
[    25.468] 	ABI class: X.Org Video Driver, version 24.0
[    25.468] (II) LoadModule: "ati"
[    25.468] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    25.470] (II) Module ati: vendor="X.Org Foundation"
[    25.470] 	compiled for 1.20.5, module version = 19.1.0
[    25.470] 	Module class: X.Org Video Driver
[    25.470] 	ABI class: X.Org Video Driver, version 24.0
[    25.470] (II) LoadModule: "modesetting"
[    25.470] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    25.471] (II) Module modesetting: vendor="X.Org Foundation"
[    25.471] 	compiled for 1.20.5, module version = 1.20.5
[    25.471] 	Module class: X.Org Video Driver
[    25.471] 	ABI class: X.Org Video Driver, version 24.0
[    25.471] (II) LoadModule: "fbdev"
[    25.471] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    25.471] (II) Module fbdev: vendor="X.Org Foundation"
[    25.471] 	compiled for 1.20.0, module version = 0.5.0
[    25.471] 	Module class: X.Org Video Driver
[    25.471] 	ABI class: X.Org Video Driver, version 24.0
[    25.471] (II) LoadModule: "vesa"
[    25.471] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    25.472] (II) Module vesa: vendor="X.Org Foundation"
[    25.472] 	compiled for 1.20.0, module version = 2.4.0
[    25.472] 	Module class: X.Org Video Driver
[    25.472] 	ABI class: X.Org Video Driver, version 24.0
[    25.472] (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
[    25.472] (II) intel: Driver for Intel(R) HD Graphics
[    25.472] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[    25.472] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[    25.472] (II) RADEON: Driver for ATI/AMD Radeon chipsets:
	ATI Radeon Mobility X600 (M24), ATI FireMV 2400,
	ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL,
	ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380),
	ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4),
	ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE,
	ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE,
	ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360,
	ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW,
	ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2),
	ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000,
	ATI Radeon X800 (R420), ATI Radeon X800PRO (R420),
	ATI Radeon X800SE (R420), ATI FireGL X3 (R420),
	ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420),
	ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420),
	ATI Radeon X850 (R480), ATI Radeon X850 XT (R480),
	ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480),
	ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7,
	ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6,
	ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9),
	ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1,
	ATI Radeon 9800PRO, ATI Radeon 9800XT,
	ATI Radeon Mobility 9600/9700 (M10/M11),
	ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11),
	ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11),
	ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100,
	ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000,
	ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C),
	ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423),
	ATI Radeon X800LE (R423), ATI Radeon X800SE (R423),
	ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430),
	ATI Radeon X800 SE (R430), ATI Radeon X800 (R430),
	ATI FireGL V7100 (R423), ATI FireGL V5100 (R423),
	ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26),
	ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26),
	ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5),
	ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200,
	ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200,
	ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370),
	ATI Radeon X600 (RV370), ATI Radeon X550 (RV370),
	ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370),
	ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28),
	ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28),
	ATI Radeon X850, ATI unknown Radeon / FireGL (R480),
	ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410),
	ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410),
	ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410),
	ATI Radeon X1800, ATI Mobility Radeon X1800 XT,
	ATI Mobility Radeon X1800, ATI Mobility FireGL V7200,
	ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300,
	ATI FireGL V3350, ATI Mobility Radeon X1450,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200,
	ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro,
	ATI FireGL V3400, ATI Mobility FireGL V5250,
	ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT,
	ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor,
	ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570,
	ATI FireGL V7400, ATI Radeon 9100 PRO IGP,
	ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro,
	ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600,
	ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL),
	ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
	ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770,
	AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650,
	ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
	ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610,
	ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
	ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350,
	ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400,
	ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870,
	ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2,
	ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170,
	ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350,
	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700,
	ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2,
	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series,
	REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270,
	ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series,
	AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS,
	ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI,
	MULLINS, KAVERI, HAWAII
[    25.474] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    25.474] (II) FBDEV: driver for framebuffer: fbdev
[    25.474] (II) VESA: driver for VESA chipsets: vesa
[    25.474] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[    25.474] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20190619
[    25.474] (II) intel(0): SNA compiled from 2.99.917-895-gcb6bff95
[    25.487] (WW) Falling back to old probe method for modesetting
[    25.487] (WW) Falling back to old probe method for fbdev
[    25.487] (II) Loading sub module "fbdevhw"
[    25.487] (II) LoadModule: "fbdevhw"
[    25.487] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    25.488] (II) Module fbdevhw: vendor="X.Org Foundation"
[    25.488] 	compiled for 1.20.5, module version = 0.0.2
[    25.488] 	ABI class: X.Org Video Driver, version 24.0
[    25.488] (EE) open /dev/fb0: Permission denied
[    25.488] (II) [KMS] Kernel modesetting enabled.
[    25.488] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    25.489] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
[    25.489] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx; using a maximum of 2 threads
[    25.489] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    25.489] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    25.489] (==) intel(0): RGB weight 888
[    25.489] (==) intel(0): Default visual is TrueColor
[    25.490] (II) intel(0): Output LVDS1 has no monitor section
[    25.491] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
[    25.491] (II) intel(0): Enabled output LVDS1
[    25.491] (II) intel(0): Output VGA1 has no monitor section
[    25.492] (II) intel(0): Enabled output VGA1
[    25.492] (II) intel(0): Output HDMI1 has no monitor section
[    25.492] (II) intel(0): Enabled output HDMI1
[    25.492] (II) intel(0): Output DP1 has no monitor section
[    25.492] (II) intel(0): Enabled output DP1
[    25.492] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[    25.493] (II) intel(0): Output VIRTUAL1 has no monitor section
[    25.493] (II) intel(0): Enabled output VIRTUAL1
[    25.493] (--) intel(0): Output LVDS1 using initial mode 1366x768 on pipe 0
[    25.493] (==) intel(0): TearFree disabled
[    25.493] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[    25.493] (==) intel(0): DPI set to (96, 96)
[    25.493] (II) Loading sub module "dri3"
[    25.493] (II) LoadModule: "dri3"
[    25.493] (II) Module "dri3" already built-in
[    25.493] (II) Loading sub module "dri2"
[    25.493] (II) LoadModule: "dri2"
[    25.493] (II) Module "dri2" already built-in
[    25.493] (II) Loading sub module "present"
[    25.493] (II) LoadModule: "present"
[    25.493] (II) Module "present" already built-in
[    25.493] (==) RADEON(G0): Depth 24, (--) framebuffer bpp 32
[    25.493] (II) RADEON(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    25.493] (==) RADEON(G0): Default visual is TrueColor
[    25.493] (==) RADEON(G0): RGB weight 888
[    25.493] (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
[    25.493] (--) RADEON(G0): Chipset: "TURKS" (ChipID = 0x6841)
[    25.493] (II) Loading sub module "fb"
[    25.493] (II) LoadModule: "fb"
[    25.494] (II) Loading /usr/lib/xorg/modules/libfb.so
[    25.494] (II) Module fb: vendor="X.Org Foundation"
[    25.494] 	compiled for 1.20.5, module version = 1.0.0
[    25.494] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    25.494] (II) Loading sub module "dri2"
[    25.494] (II) LoadModule: "dri2"
[    25.494] (II) Module "dri2" already built-in
[    25.780] (II) Loading sub module "glamoregl"
[    25.780] (II) LoadModule: "glamoregl"
[    25.780] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    25.787] (II) Module glamoregl: vendor="X.Org Foundation"
[    25.787] 	compiled for 1.20.5, module version = 1.0.1
[    25.787] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    25.805] (II) RADEON(G0): glamor X acceleration enabled on AMD TURKS (DRM 2.50.0 / 5.3.11-zen1-1-zen, LLVM 9.0.0)
[    25.805] (II) RADEON(G0): glamor detected, initialising EGL layer.
[    25.805] (II) RADEON(G0): KMS Color Tiling: enabled
[    25.805] (II) RADEON(G0): KMS Color Tiling 2D: enabled
[    25.805] (==) RADEON(G0): TearFree property default: auto
[    25.805] (II) RADEON(G0): mem size init: gart size :3fdde000 vram size: s:40000000 visible:fc9d000
[    25.805] (==) RADEON(G0): DPI set to (96, 96)
[    25.805] (==) RADEON(G0): Using gamma correction (1.0, 1.0, 1.0)
[    25.805] (II) Loading sub module "ramdac"
[    25.805] (II) LoadModule: "ramdac"
[    25.805] (II) Module "ramdac" already built-in
[    25.805] (II) UnloadModule: "modesetting"
[    25.805] (II) Unloading modesetting
[    25.805] (II) UnloadModule: "fbdev"
[    25.805] (II) Unloading fbdev
[    25.805] (II) UnloadSubModule: "fbdevhw"
[    25.805] (II) Unloading fbdevhw
[    25.805] (II) UnloadModule: "vesa"
[    25.805] (II) Unloading vesa
[    25.805] (II) RADEON(G0): [DRI2] Setup complete
[    25.805] (II) RADEON(G0): [DRI2]   DRI driver: r600
[    25.805] (II) RADEON(G0): [DRI2]   VDPAU driver: r600
[    25.805] (II) RADEON(G0): Front buffer size: 3072K
[    25.805] (II) RADEON(G0): VRAM usage limit set to 229957K
[    25.805] (==) RADEON(G0): Backing store enabled
[    25.806] (II) RADEON(G0): Direct rendering enabled
[    26.045] (II) RADEON(G0): Use GLAMOR acceleration.
[    26.045] (II) RADEON(G0): Acceleration enabled
[    26.045] (==) RADEON(G0): DPMS enabled
[    26.045] (==) RADEON(G0): Silken mouse disabled
[    26.047] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
[    26.047] (==) intel(0): Backing store enabled
[    26.047] (==) intel(0): Silken mouse disabled
[    26.047] (II) intel(0): HW Cursor enabled
[    26.047] (==) intel(0): DPMS enabled
[    26.048] (==) intel(0): Display hotplug detection enabled
[    26.048] (II) intel(0): [DRI2] Setup complete
[    26.048] (II) intel(0): [DRI2]   DRI driver: i965
[    26.048] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[    26.048] (II) intel(0): direct rendering: DRI2 DRI3 enabled
[    26.048] (II) intel(0): hardware support for Present enabled
[    26.048] (II) Initializing extension Generic Event Extension
[    26.048] (II) Initializing extension SHAPE
[    26.048] (II) Initializing extension MIT-SHM
[    26.048] (II) Initializing extension XInputExtension
[    26.048] (II) Initializing extension XTEST
[    26.048] (II) Initializing extension BIG-REQUESTS
[    26.048] (II) Initializing extension SYNC
[    26.048] (II) Initializing extension XKEYBOARD
[    26.048] (II) Initializing extension XC-MISC
[    26.048] (II) Initializing extension SECURITY
[    26.048] (II) Initializing extension XFIXES
[    26.048] (II) Initializing extension RENDER
[    26.048] (II) Initializing extension RANDR
[    26.048] (II) Initializing extension COMPOSITE
[    26.049] (II) Initializing extension DAMAGE
[    26.049] (II) Initializing extension MIT-SCREEN-SAVER
[    26.049] (II) Initializing extension DOUBLE-BUFFER
[    26.049] (II) Initializing extension RECORD
[    26.049] (II) Initializing extension DPMS
[    26.049] (II) Initializing extension Present
[    26.049] (II) Initializing extension DRI3
[    26.049] (II) Initializing extension X-Resource
[    26.049] (II) Initializing extension XVideo
[    26.049] (II) Initializing extension XVideo-MotionCompensation
[    26.049] (II) Initializing extension GLX
[    26.072] (II) AIGLX: Loaded and initialized i965
[    26.072] (II) GLX: Initialized DRI2 GL provider for screen 0
[    26.072] (II) Initializing extension XFree86-VidModeExtension
[    26.072] (II) Initializing extension XFree86-DGA
[    26.072] (II) Initializing extension XFree86-DRI
[    26.072] (II) Initializing extension DRI2
[    26.081] (II) intel(0): switch to mode 1366x768@60.0 on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
[    26.083] (II) intel(0): Setting screen physical size to 361 x 203
[    26.188] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    26.188] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    26.188] (**) Power Button: Applying InputClass "system-keyboard"
[    26.188] (II) LoadModule: "libinput"
[    26.188] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    26.189] (II) Module libinput: vendor="X.Org Foundation"
[    26.189] 	compiled for 1.20.5, module version = 0.29.0
[    26.189] 	Module class: X.Org XInput Driver
[    26.189] 	ABI class: X.Org XInput driver, version 24.1
[    26.189] (II) Using input driver 'libinput' for 'Power Button'
[    26.191] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 23 paused 0
[    26.191] (**) Power Button: always reports core events
[    26.192] (**) Option "Device" "/dev/input/event3"
[    26.192] (**) Option "_source" "server/udev"
[    26.206] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    26.206] (II) event3  - Power Button: device is a keyboard
[    26.206] (II) event3  - Power Button: device removed
[    26.206] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[    26.206] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    26.206] (**) Option "xkb_layout" "es"
[    26.236] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    26.236] (II) event3  - Power Button: device is a keyboard
[    26.238] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[    26.238] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    26.238] (**) Video Bus: Applying InputClass "system-keyboard"
[    26.238] (II) Using input driver 'libinput' for 'Video Bus'
[    26.240] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 26 paused 0
[    26.240] (**) Video Bus: always reports core events
[    26.240] (**) Option "Device" "/dev/input/event8"
[    26.240] (**) Option "_source" "server/udev"
[    26.241] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[    26.241] (II) event8  - Video Bus: device is a keyboard
[    26.241] (II) event8  - Video Bus: device removed
[    26.241] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input10/event8"
[    26.241] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    26.241] (**) Option "xkb_layout" "es"
[    26.242] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[    26.242] (II) event8  - Video Bus: device is a keyboard
[    26.242] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[    26.242] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    26.242] (**) Video Bus: Applying InputClass "system-keyboard"
[    26.242] (II) Using input driver 'libinput' for 'Video Bus'
[    26.243] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 27 paused 0
[    26.243] (**) Video Bus: always reports core events
[    26.244] (**) Option "Device" "/dev/input/event7"
[    26.244] (**) Option "_source" "server/udev"
[    26.245] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[    26.245] (II) event7  - Video Bus: device is a keyboard
[    26.245] (II) event7  - Video Bus: device removed
[    26.245] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:19/LNXVIDEO:00/input/input9/event7"
[    26.245] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    26.245] (**) Option "xkb_layout" "es"
[    26.246] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[    26.246] (II) event7  - Video Bus: device is a keyboard
[    26.247] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    26.247] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    26.247] (**) Power Button: Applying InputClass "system-keyboard"
[    26.247] (II) Using input driver 'libinput' for 'Power Button'
[    26.248] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 28 paused 0
[    26.248] (**) Power Button: always reports core events
[    26.248] (**) Option "Device" "/dev/input/event1"
[    26.248] (**) Option "_source" "server/udev"
[    26.249] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    26.249] (II) event1  - Power Button: device is a keyboard
[    26.249] (II) event1  - Power Button: device removed
[    26.249] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    26.249] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[    26.249] (**) Option "xkb_layout" "es"
[    26.250] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    26.250] (II) event1  - Power Button: device is a keyboard
[    26.251] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    26.251] (II) No input driver specified, ignoring this device.
[    26.251] (II) This device may have been added with another device file.
[    26.251] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[    26.251] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    26.251] (**) Sleep Button: Applying InputClass "system-keyboard"
[    26.251] (II) Using input driver 'libinput' for 'Sleep Button'
[    26.252] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
[    26.252] (**) Sleep Button: always reports core events
[    26.252] (**) Option "Device" "/dev/input/event2"
[    26.252] (**) Option "_source" "server/udev"
[    26.253] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    26.253] (II) event2  - Sleep Button: device is a keyboard
[    26.253] (II) event2  - Sleep Button: device removed
[    26.253] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[    26.253] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[    26.253] (**) Option "xkb_layout" "es"
[    26.254] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    26.255] (II) event2  - Sleep Button: device is a keyboard
[    26.256] (II) config/udev: Adding input device Laptop_Integrated_Webcam_HD: In (/dev/input/event9)
[    26.256] (**) Laptop_Integrated_Webcam_HD: In: Applying InputClass "libinput keyboard catchall"
[    26.256] (**) Laptop_Integrated_Webcam_HD: In: Applying InputClass "system-keyboard"
[    26.256] (II) Using input driver 'libinput' for 'Laptop_Integrated_Webcam_HD: In'
[    26.257] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 30 paused 0
[    26.257] (**) Laptop_Integrated_Webcam_HD: In: always reports core events
[    26.257] (**) Option "Device" "/dev/input/event9"
[    26.257] (**) Option "_source" "server/udev"
[    26.260] (II) event9  - Laptop_Integrated_Webcam_HD: In: is tagged by udev as: Keyboard
[    26.260] (II) event9  - Laptop_Integrated_Webcam_HD: In: device is a keyboard
[    26.260] (II) event9  - Laptop_Integrated_Webcam_HD: In: device removed
[    26.260] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input11/event9"
[    26.260] (II) XINPUT: Adding extended input device "Laptop_Integrated_Webcam_HD: In" (type: KEYBOARD, id 11)
[    26.260] (**) Option "xkb_layout" "es"
[    26.263] (II) event9  - Laptop_Integrated_Webcam_HD: In: is tagged by udev as: Keyboard
[    26.263] (II) event9  - Laptop_Integrated_Webcam_HD: In: device is a keyboard
[    26.264] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event11)
[    26.264] (II) No input driver specified, ignoring this device.
[    26.264] (II) This device may have been added with another device file.
[    26.265] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
[    26.265] (II) No input driver specified, ignoring this device.
[    26.265] (II) This device may have been added with another device file.
[    26.265] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event13)
[    26.265] (II) No input driver specified, ignoring this device.
[    26.265] (II) This device may have been added with another device file.
[    26.266] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[    26.266] (II) No input driver specified, ignoring this device.
[    26.266] (II) This device may have been added with another device file.
[    26.267] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event6)
[    26.267] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    26.267] (**) Dell WMI hotkeys: Applying InputClass "system-keyboard"
[    26.267] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[    26.269] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 31 paused 0
[    26.269] (**) Dell WMI hotkeys: always reports core events
[    26.269] (**) Option "Device" "/dev/input/event6"
[    26.269] (**) Option "_source" "server/udev"
[    26.270] (II) event6  - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    26.270] (II) event6  - Dell WMI hotkeys: device is a keyboard
[    26.270] (II) event6  - Dell WMI hotkeys: device removed
[    26.270] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input8/event6"
[    26.270] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 12)
[    26.270] (**) Option "xkb_layout" "es"
[    26.272] (II) event6  - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    26.272] (II) event6  - Dell WMI hotkeys: device is a keyboard
[    26.273] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[    26.273] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    26.273] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[    26.273] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    26.274] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 32 paused 0
[    26.274] (**) AT Translated Set 2 keyboard: always reports core events
[    26.274] (**) Option "Device" "/dev/input/event4"
[    26.274] (**) Option "_source" "server/udev"
[    26.275] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    26.275] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    26.276] (II) event4  - AT Translated Set 2 keyboard: device removed
[    26.276] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[    26.276] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
[    26.276] (**) Option "xkb_layout" "es"
[    26.277] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    26.277] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    26.278] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event10)
[    26.278] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[    26.278] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    26.278] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[    26.278] (II) LoadModule: "synaptics"
[    26.278] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    26.279] (II) Module synaptics: vendor="X.Org Foundation"
[    26.279] 	compiled for 1.20.0, module version = 1.9.1
[    26.279] 	Module class: X.Org XInput Driver
[    26.279] 	ABI class: X.Org XInput driver, version 24.1
[    26.279] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[    26.280] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 33 paused 0
[    26.280] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    26.280] (**) Option "Device" "/dev/input/event10"
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1264 - 5676 (res 45)
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1054 - 4800 (res 78)
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    26.280] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    26.280] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event10"
[    26.280] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
[    26.280] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    26.280] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[    26.280] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[    26.280] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    26.280] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    26.280] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    26.280] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    26.280] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    26.281] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    26.281] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[    26.281] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[    26.281] (II) No input driver specified, ignoring this device.
[    26.281] (II) This device may have been added with another device file.
[    28.047] (II) intel(0): EDID vendor "AUO", prod id 9020
[    28.047] (II) intel(0): Printing DDC gathered Modelines:
[    28.047] (II) intel(0): Modeline "1366x768"x0.0   76.66  1366 1404 1426 1600  768 771 777 798 +hsync -vsync (47.9 kHz eP)
[    28.047] (II) intel(0): Modeline "1366x768"x0.0   51.11  1366 1404 1426 1600  768 771 777 798 +hsync -vsync (31.9 kHz e)

dmesg → https://hastebin.com/raw/inotucorol

Last edited by judd1 (2019-11-20 22:46:39)


This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

#4 2019-11-21 05:42:13

judd1
Member
Registered: 2015-09-04
Posts: 260

Re: [Solved] Linux-zen and xorg

Zod wrote:

https://wiki.archlinux.org/index.php/Dy … le_Support

In my case, I also had to migrate to the nvidia dkms drivers and the virtualbox dkms host modules.

I decided that I didn't particularly want that stuff rebuilt as often as they were so I went back to the vanilla kernel.

My interest lies mainly in the * why * the Zen core does not work, which sometimes opens a graphic session and sometimes not, becoming a prisoner of the xorg, just that.

As for VB it is not my taste.

We will see if it can be resolved or at least try.

Thank you for your response and your time!


This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

#5 2019-11-21 15:45:00

judd1
Member
Registered: 2015-09-04
Posts: 260

Re: [Solved] Linux-zen and xorg

dkms status

broadcom-wl, 6.30.223.271, 4.14.41-1-lts, x86_64: installed
broadcom-wl, 6.30.223.271, 4.16.11-1-ARCH, x86_64: installed
broadcom-wl, 6.30.223.271, 4.19.84-1-lts, x86_64: installed
broadcom-wl, 6.30.223.271, 5.3.11-arch1-1, x86_64: installed
broadcom-wl, 6.30.223.271, 5.3.11-zen1-1-zen, x86_64: installed

This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

#6 2019-11-21 16:04:27

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,234

Re: [Solved] Linux-zen and xorg

In the error log you are running into the quite established race condition of xorg starting up before logind properly provides access to the graphics hardware, one common workaround is to add your graphic kernel modules to your initramfs via early KMS

Offline

#7 2019-11-21 16:22:36

judd1
Member
Registered: 2015-09-04
Posts: 260

Re: [Solved] Linux-zen and xorg

V1del wrote:

In the error log you are running into the quite established race condition of xorg starting up before logind properly provides access to the graphics hardware, one common workaround is to add your graphic kernel modules to your initramfs via early KMS

@ V1del !

Thank you very much, when you answered me, I was seeing the same https://wiki.archlinux.org/index.php/Ke … _KMS_start and the xorg problem was solved, since I was missing i915 in modules of /etc/mkinitcpio. conf then regenerate mkintcpio -p linux-zen, I've already done several reboots and had no problems!

Ask for the syntax:

 MODULES="i915" 

→ this way I have it written in /etc/mkinitcpio.conf and that's how it works!

 MODULES=(... i915 ...) 

→ does the wiki set it this way and it does NOT work  ??

Last edited by judd1 (2019-11-21 16:32:52)


This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

#8 2019-11-21 17:24:06

Ropid
Member
Registered: 2015-03-09
Posts: 1,069

Re: [Solved] Linux-zen and xorg

Do you mean you added those "..." to that line in your config? Those "..." are supposed to mean other module names that you might already have in your config file for other reasons.

Both 'MODULES="i915"' and 'MODULES=(i915)' should work. In the past (with old versions of mkinitcpio) you could only use '="..."', but nowadays you can also write '=(...)'.

Offline

#9 2019-11-21 17:35:39

loqs
Member
Registered: 2014-03-06
Posts: 18,928

Re: [Solved] Linux-zen and xorg

Alternative workaround is to have systemd-modules-load.service load the drm module
/etc/modules-load.d/drm.conf

drm

Edit:
Upstream bug report https://github.com/systemd/systemd/issues/13943

Last edited by loqs (2019-11-21 17:38:34)

Offline

#10 2019-11-21 18:03:00

judd1
Member
Registered: 2015-09-04
Posts: 260

Re: [Solved] Linux-zen and xorg

Ropid wrote:

Do you mean you added those "..." to that line in your config?

Yes, MODULES="i915"

Ropid wrote:

Those "..." are supposed to mean other module names that you might already have in your config file for other reasons.

It is the only module.

Ropid wrote:

Both 'MODULES="i915"' and 'MODULES=(i915)' should work. In the past (with old versions of mkinitcpio) you could only use '="..."', but nowadays you can also write '=(...)'.

I did not know, very kind.


This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

#11 2019-11-21 18:05:12

judd1
Member
Registered: 2015-09-04
Posts: 260

Re: [Solved] Linux-zen and xorg

loqs wrote:

Alternative workaround is to have systemd-modules-load.service load the drm module
/etc/modules-load.d/drm.conf

drm

Edit:
Upstream bug report https://github.com/systemd/systemd/issues/13943

Thanks loqs, I point it out, it's good to know!


This isn't right. This isn't even wrong.
-- Wolfgang Pauli --

Offline

Board footer

Powered by FluxBB