You are not logged in.
Show your /etc/apt/sources.list or /etc/apt/sources.list.d depending on what you use. There isn't a Devuan release with the name 'crowz'.
recklessswing,
At least provide context. Which internet connection is this? Which interface? What do you mean by DHCP (isc-dhcp-client? dhcpcd5? udhcpc? something else?)? Whatever "DHCP" you use, what is the configuration? What is in /etc/network/interfaces? Maybe there are some udev rules? Maybe there is indeed something like macchanger? Maybe you use a network manager and configured something there?
Thankfully seems to work, so I'll mark as solved until (hopefully never) some new issues from this domain arise.
ralph.ronnquist, thank you.
So I stopped the logger, did yes hi > runsvdirpipe and the result is
sv d and sv exit work
sv u and sv start work, but only if runsv is already running on the given directory, otherwise block. sv u doesn't block, but doesn't do anything either.
I'm not suggesting anything, but this below works.
diff --git a/buffer.h b/buffer.h
index 8f2e572..8f998fd 100644
--- a/buffer.h
+++ b/buffer.h
@@ -51,6 +51,7 @@ extern int buffer_copy(buffer *,buffer *);
extern int buffer_unixread(int,char *,unsigned int);
extern int buffer_unixwrite(int,const char *,unsigned int);
+extern int buffer_unixwrite_nonblock(int,const char *,unsigned int);
extern buffer *buffer_0;
extern buffer *buffer_0small;
diff --git a/buffer_1.c b/buffer_1.c
index f4bac3d..1fe5ed1 100644
--- a/buffer_1.c
+++ b/buffer_1.c
@@ -3,5 +3,5 @@
#include "buffer.h"
char buffer_1_space[BUFFER_OUTSIZE];
-static buffer it = BUFFER_INIT(buffer_unixwrite,1,buffer_1_space,sizeof buffer_1_space);
+static buffer it = BUFFER_INIT(buffer_unixwrite_nonblock,1,buffer_1_space,sizeof buffer_1_space);
buffer *buffer_1 = ⁢
diff --git a/buffer_2.c b/buffer_2.c
index f255a92..d8a9c6d 100644
--- a/buffer_2.c
+++ b/buffer_2.c
@@ -3,5 +3,5 @@
#include "buffer.h"
char buffer_2_space[256];
-static buffer it = BUFFER_INIT(buffer_unixwrite,2,buffer_2_space,sizeof buffer_2_space);
+static buffer it = BUFFER_INIT(buffer_unixwrite_nonblock,2,buffer_2_space,sizeof buffer_2_space);
buffer *buffer_2 = ⁢
diff --git a/buffer_write.c b/buffer_write.c
index 4ba13ef..10fe8a0 100644
--- a/buffer_write.c
+++ b/buffer_write.c
@@ -1,5 +1,6 @@
/* Public domain. */
+#include <errno.h>
#include <unistd.h>
#include "buffer.h"
@@ -7,3 +8,14 @@ int buffer_unixwrite(int fd,const char *buf,unsigned int len)
{
return write(fd,buf,len);
}
+
+int buffer_unixwrite_nonblock(int fd, const char *buf, unsigned int len)
+{
+ ssize_t w = write(fd, buf, len);
+ if (w < 0 && (errno == EWOULDBLOCK || errno == EAGAIN)) {
+ // pretend success
+ return len;
+ } else {
+ return w;
+ }
+}
diff --git a/runsvdir.c b/runsvdir.c
index de430f2..99d3ce4 100644
--- a/runsvdir.c
+++ b/runsvdir.c
@@ -1,7 +1,8 @@
-#include <sys/types.h>
+#include <fcntl.h>
+#include <signal.h>
#include <sys/stat.h>
+#include <sys/types.h>
#include <unistd.h>
-#include <signal.h>
#include "direntry.h"
#include "strerr.h"
#include "error.h"
@@ -212,6 +213,18 @@ int main(int argc, char **argv) {
if (! argv || ! *argv) usage();
}
+ for (int i = 1; i <= 2; i++) {
+ struct stat sb;
+ int flags;
+ if (fstat(i, &sb) < 0) {
+ continue;
+ }
+ if (S_ISFIFO(sb.st_mode) && (flags = fcntl(i, F_GETFL)) >= 0) {
+ flags |= O_NONBLOCK;
+ fcntl(i, F_SETFL, flags);
+ }
+ }
+
sig_catch(sig_term, s_term);
sig_catch(sig_hangup, s_hangup);
sig_catch(sig_alarm, s_alarm);
Applied on top of all other patches though.
By the way, I found it. drivers/tty/tty_io.c, function void __do_SAK(struct tty_struct *tty).
Lorenzo,
As a side note, you've already rolled a lot of Devuan (and Debian) specific configuration for runit (at least I conclude it by comparing to Void, not to upstream runit implementation), I don't think it will hurt to add a configuration option for the runsvdir's command line log. It would be by far the most clean solution to abower's issue and the issue doesn't seem like one you can just ignore (some people might actually rely on readproctitle in their headless systems, probably).
Also, beware of /dev/ttyS1. It is a serial port. On my laptop accessing it yields an I/O error, and I've never heard that absence of tty12 is a sure indicator of ttyS1 being functional, correct me if I'm wrong. Maybe it should be given the least priority? Or at least perform some error checking. Another thing I want to mention is that writing to /dev/ttyS0 on my laptop does not yield any errors, but I don't have any serial ports, so the output gets lost.
Also, there's a nasty gotcha with the space after "log:", so this could be a workaround.
if [ -f /etc/runit/runsvdir.readproctitle.log ]; then
CMDLINELOG='...........................................................................................................................................................................................................................................................................................................................................................................................................'
fi
exec env - PATH=$PATH runsvdir -P "${SVDIR}" ${CMDLINELOG:+"log: $CMDLINELOG"}
abower,
You should wait until Lorenzo replies, since he's the competent developer (while I'm literally nobody), but I have several suggestions.
One is reading /dev/vcs*. I don't know about embedded but otherwise you most likely have tty12 available, and the runsvdir will log there, so grep $error /dev/vcs12 will do it. Though virtual console memory's size may be unreliable?
Another way is getting the 'log: ...........................................................................................................................................................................................................................................................................................................................................................................................................' command line parameter back in place.
Another way, you could add logging and then grep the log. I left an example script above. The /etc/runit/2 is fine, but the logger service itself had a few bugs, right now I use
#!/bin/sh
# do not use echo to report error
# if this service is needed and logs go to FIFO, all error
# messages will get lost in the FIFO anyway
#SVDIR="$(dirname "$(pwd)")"
SVDIR=/etc/service
SVNAME="runsvdir-log" # must be runsvdir-log, MUST
DEF=/etc/default/runsvdir-log
LOGDIR=/var/log/runit/"$SVNAME"
LOGFIFO=/run/runit/runsvdirpipe
LOGDUP=no
is_number () {
case "$1" in
*[!0-9]*|"") return 1;;
*) return 0;;
esac
}
is_yes () {
case "$1" in
y|ye|yes) return 0;;
*) return 1;;
esac
}
msg_start () {
echo "Starting $SVNAME"
}
[ -f ./conf ] && . ./conf
[ -f "$DEF" ] && . "$DEF"
if ! [ -p "$LOGFIFO" ]; then
mv "$SVDIR/$SVNAME" "$SVDIR/.$SVNAME"
exit
fi
if is_number "$LOGTTY" && [ -c /dev/tty"$LOGTTY" ]; then
LOGTTY=/dev/tty"$LOGTTY"
else
LOGTTY=""
fi
if ! is_yes "$LOGDUP" && [ -n "$LOGTTY" ]; then
msg_start
exec cat < "$LOGFIFO" > "$LOGTTY" 2> "$LOGTTY"
fi
if ! mkdir -p "$LOGDIR"; then
sv d . # down instead of 'mv' as a kind of error reporting
fi
chown -R _runit-log:adm "$LOGDIR"
chmod 750 "$LOGDIR"
msg_start
if is_yes "$LOGDUP" && [ -n "$LOGTTY" ]; then
DUPPIPE=/run/runit/duppipe
rm -f "$DUPPIPE"
if ! mkfifo "$DUPPIPE"; then
# at least do something
rm -f "$DUPPIPE" # just in case
exec chpst -u _runit-log svlogd -tt "$LOGDIR" < "$LOGFIFO"
fi
chpst -u _runit-log svlogd -tt "$LOGDIR" < "$DUPPIPE" &
# this could deadlock... still it would at least be an indication of an error
# unlike writing into a FIFO nobody reads, so don't use <> on $DUPPIPE
exec 8>"$DUPPIPE"
exec 9<"$LOGFIFO"
# this way after exit svlogd will receive EOF and exit
rm -f "$DUPPIPE"
while read -r logline <&9; do
echo "$logline" >&8
echo "$logline" >> "$LOGTTY"
done
else
exec chpst -u _runit-log svlogd -tt "$LOGDIR" < "$LOGFIFO"
fi
You can greatly simplify it by reducing the whole thing to
exec chpst -u _runit-log svlogd -tt "$LOGDIR" < "$LOGFIFO"
which I think will be the best way to approach it, since this script isn't really... polished? For example, I still use /etc/default, though I should not, accordingly to packaging logic (Lorenzo wrote something about it above).
Hi Lorenzo,
I redirected runsvdir output to /dev/tty10 on my system and tested <sysrq>+K on tty1 and it brings down the system;
Weird. If you redirected to /dev/tty10 then sysrq only brings down the system when invoked on the tty in question. This is the way my system behaves. The kernel's 6.6.56, pristine. Ehh it's a bit bothersome to reboot several times while writing a post , but...
exec env - PATH="$PATH" runsvdir -P "${SVDIR}" >/dev/tty12 2>/dev/tty12
sysrq brings the system down both on tt1 and tty12. I wish I remembered which kernel function does it to have a look at it, but as far as trial, error and memory go kernel checks what processes "sit" on the current tty (perhaps just have it open, I don't remember), locks them (to prevent TOU bugs), and kills recursively down to the last child. So yes, it is imperative that not only stdout and stderr are redirected, but stdin as well.
As for <>, I do not observe the said behavior.
exec env - PATH="$PATH" runsvdir -P "${SVDIR}" </dev/tty12 >/dev/tty12 2>/dev/tty12
prevents sysrq from bringing the system down on tty1 and moves the "bug" (quotes because not sure if it's really a bug) to tty12. On my system.
apologise if this wasted your time in search of a solution with a proper log
So much for enthusiasm!
that does the trick and shields runsvdir from <sysrq>+K
Please either double check or clarify.
exec env - PATH="$PATH" runsvdir -P "${SVDIR}" <>/dev/tty12 >/dev/tty12 2>/dev/tty12
<sysrq>+K on tty12 is followed by a shutdown all right.
I'm not sure if that can affect runsvdir in a bad way
This isn't hard to check.
mkfifo test
exec 4<>test
head -c 65536 < /dev/urandom > test
echo 1 > test
So unless runsvdir specifically avoids blocking on writes (poll, O_NONBLOCK, whatever), it's gonna block. I more or less knew this, but didn't pay much attention. I guess I understand your concerns here.
your proposed code could be fine if I roll runit specific bootscripts but for now I prefer to keep stage 2 more simple
I'm not sure I fully understand what you mean here. Elaborate, please?
Something like (recycling you code, simplified)
Do you mean to try and guess the most likely unused tty and put logs there?
I dunno. It looks like for stdout and stderr runit uses buffer_unixwrite(), which is just write(). Furthermore, buffer_1 and buffer_2 are mainly used with buffer_puts() and the return status isn't really checked at the first glance. This is very thin ice, but theoretically, if we could open the FIFO in non-blocking mode, it could work. I can't say I like it.
The core of the problem here is that we attach to a VT. Do openrc guys have this problem? I dunno how it works, but looks like they're using startup scripts for their services so they probably don't have any critical processes attached to any VTs.
Listen, since runit is an almost trivial (in terms of UX at least) init system, can we really hope to avoid tinkering completely? What do you think about leaving the default behavior alone and instead leaving a BIG and FAT piece of documentation somewhere everybody is very likely to look and explain the situation to people? We could then make a stage 2 logger around FIFO and just tell them to enable it manually or whatever. Maybe even put something at /etc/default, though I don't know all the pitfalls of packaging. Better than /etc/default, we could just have a conf file. It feels like backing off, but it doesn't look like we can cope without some black magic.
Thank you for reaching out.
Consequently, /etc/default/runsvdir-log sets up two variables.
LOGTTY: VT number to which log is written.
LOGDUP: If set to yes (or ye or y) and LOGTTY is defined, write log to svlogd and duplicate it to VT number $LOGTTY.
If LOGTTY is undefined, or VT with such number does not exist, log to svlogd. You could easily add support for logging/duplicating to /dev/console, if you think this solution is any good at all.
Lorenzo,
I gave it more thought and here is what I have. Append this to the current default /etc/runit/2:
LOGSVNAME=runsvdir-log
[ -L "$SVDIR/.$LOGSVNAME" ] && mv "$SVDIR/.$LOGSVNAME" "$SVDIR/$LOGSVNAME"
LOGFIFO=/run/runit/runsvdirpipe
LOG="$LOGFIFO"
if ! mkfifo "$LOGFIFO"; then
# mkfifo already output error
echo "runsvdir will log to /dev/console" >&2
LOG=/dev/console
# just in case
rm -f "$LOGFIFO"
fi
# Use <> for stdin, otherwise FIFO blocks
exec <>"$LOG" >"$LOG" 2>"$LOG"
exec env - PATH="$PATH" runsvdir -P "${SVDIR}"
The logger service must be called runsvdir-log, the run file is
#!/bin/sh
# do not use echo to report error
# if this service is needed and logs go to FIFO, all error
# messages will get lost in the FIFO anyway
SVDIR="$(dirname "$(readlink -f .)")"
SVNAME="runsvdir-log" # must be runsvdir-log, MUST
DEF=/etc/default/runsvdir-log
LOGDIR=/var/log/runit/"$SVNAME"
LOGFIFO=/run/runit/runsvdirpipe
LOGDUP=no
is_number () {
case "$1" in
*[!0-9]*|"") return 1;;
*) return 0;;
esac
}
is_yes () {
case "$1" in
y|ye|yes) return 0;;
*) return 1;;
esac
}
msg_start () {
echo "Starting $SVNAME"
}
[ -f ./conf ] && . ./conf
[ -f "$DEF" ] && . "$DEF"
if ! [ -p "$LOGFIFO" ]; then
mv "$SVDIR/$SVNAME" "$SVDIR/.$SVNAME"
exit
fi
if is_number "$LOGTTY" && [ -c /dev/tty"$LOGTTY" ]; then
LOGTTY=/dev/tty"$LOGTTY"
else
LOGTTY=""
fi
if ! is_yes "$LOGDUP" && [ -n "$LOGTTY" ]; then
msg_start
exec cat < "$LOGFIFO" > "$LOGTTY" 2> "$LOGTTY"
fi
if ! mkdir -p "$LOGDIR"; then
sv d . # down instead of 'mv' as a kind of error reporting
fi
chown -R _runit-log:adm "$LOGDIR"
chmod 750 "$LOGDIR"
msg_start
if is_yes "$LOGDUP" && [ -n "$LOGTTY" ]; then
DUPPIPE=/run/runit/duppipe
rm -f "$DUPPIPE"
if ! mkfifo "$DUPPIPE"; then
# at least do something
rm -f "$DUPPIPE" # just in case
exec chpst -u _runit-log svlogd -tt "$LOGDIR" < "$LOGFIFO"
fi
chpst -u _runit-log svlogd -tt "$LOGDIR" < "$DUPPIPE" &
# this could deadlock... still it would at least be an indication of an error
# unlike writing into a FIFO nobody reads, so don't use <> on $DUPPIPE
exec 8>"$DUPPIPE"
exec 9<"$LOGFIFO"
# this way after exit svlogd will receive EOF and exit
rm -f "$DUPPIPE"
while read -r logline <&9; do
echo "$logline" >&8
echo "$logline" > "$LOGTTY"
done
else
exec chpst -u _runit-log svlogd -tt "$LOGDIR" < "$LOGFIFO"
fi
This
Keeps /etc/runit/2 as small as possible.
Prevents https://github.com/void-linux/runit/issues/14 because cmdline logging feature is disabled.
Prevents <sysrq>+K from bringing system down. It probably kills the logger when it's cat, but that is not critical.
What do you think?
Also, here
elif ! mkfifo "$PIPE"; then
maybe use /dev/console instead of /dev/null, it would be more sensible.
but this discards all output from runsvdir right?
Correct.
Or are you able to get it in some other way?
Yep, I've put /dev/tty12 instead of /dev/null there. <sysrq>+K on tty12 still brings the system down, but I don't care because it doesn't get in the way of my routinely workflow, unlike tty1 which I use heavily. I have some suspicions that part of the output gets lost somehow, though... Need to test that more thoroughly.
I would like to address them all, and keep a log or runsvdir if possible..
I hurry to notify you that I (very personally) find runsvdir's cmdline logging feature useless. Ever since I've put an svlogd on every service that needs it, and >/dev/null 2>&1 on every service that maintains logs on its own (hello mullvad-daemon), my ps -ef | grep runsvdir is
runsvdir -P /etc/service log: ...........................................................................................................................................................................................................................................................................................................................................................................................................
and my tty12 console output is as good as non-existent.
Regarding your FIFO approach, I mostly agree with it, but will still give you some input that popped up in my head.
First, in case of a big amount of services, will the default 16 pages be enough to keep all the logs in the FIFO before the svlogd starts? I think it should, but if you settle on this solution, maybe you want to keep your hand on the pulse for possible bug reports. Bottom line, you can start svlogd prior to runsvdir and then restart it under runsv.
Second, consistency. Stage 1 and sysvinit scripts log to tty1. Are runsvdir logs important enough to be concerned about, or is nobody interested in seeing them anyway? sysvinit logs are very important as they notify you about possible errors during startup of critical parts, I presume many people rely on them and I am no exception. On the other hand, I (very personally) do not find runsvdir logs as useful. As long as I get a getty I will be fine. I can imagine a few use cases to it. One would be not using svlogd for getty, this way if getty fails, you immediately know why. Is this useful? No, because since you can't log in you would need a separate boot media anyway, as such you could as well check the log. On the other hand, some critical, not very verbose services, could still make use of it. Want to check errors/warning? Switch to the tty and read the text on your screen. Easy, no hassle, no logging in as root etc etc.
Lastly, why /run/runit/runsvdir-log? This beats the purpose. I suggest this is changed to /var/log/runit instead.
I humbly suggest the following modifications.
SVNAME=runsvdir-log
DEF=/etc/default/runsvdir-log
PIPE=/run/runit/runsvdirpipe
is_number () {
case "$1" in
*[!0-9]*|"") return 1;;
*) return 0;;
esac
}
if [ -L "$SVDIR/.$SVNAME" ]; then
mv "$SVDIR/.$SVNAME" "$SVDIR/$SVNAME"
fi
[ -f "$DEF" ] && . "$DEF"
if is_number "$LOG_TTY" && [ -c /dev/tty$LOG_TTY ]; then
echo "runsvdir log goes to /dev/tty$LOG_TTY"
PIPE=/dev/tty$LOG_TTY
[ -L "$SVDIR/$SVNAME" ] && mv "$SVDIR/$SVNAME" "$SVDIR/.$SVNAME"
elif ! [ -L "$SVDIR/$SVNAME" ]; then
PIPE=/dev/console # default
elif ! mkfifo "$PIPE"; then
echo "Failed to create runsvdir pipe for logging: $PIPE"
echo "runsvdir will run with logging disabled"
PIPE=/dev/null
[ -L "$SVDIR/$SVNAME" ] && mv "$SVDIR/$SVNAME" "$SVDIR/.$SVNAME"
fi
# no blocking for FIFO, please, so <> is mandatory
exec <> "$PIPE"
# must redirect twice for FIFO
exec env - PATH="$PATH" runsvdir -P "${SVDIR}" >"$PIPE" 2>"$PIPE"
and
#!/bin/sh
SVNAME="runsvdir-log"
LOG=/var/log/runit/"$SVNAME"
if ! mkdir -p "$LOG"; then
# mkdir output error already, this is to help making sense of it
echo "$SVNAME: $LOG: mkdir failed" >&2
sv d .
fi
chown -R _runit-log:adm "$LOG"
chmod 750 "$LOG"
exec 2>&1
exec < /run/runit/runsvdirpipe
echo "Starting $SVNAME"
exec chpst -u _runit-log svlogd -tt "$LOG"
I find this quite involved to be honest. I am not sure how good exactly the idea is. Also, if svlogd fails here, you'll never know why because of the loop, it might get somebody confused. I honestly fail to see a flawless solution here. I suspect the scripts above are flexible enough to let people do whatever they want. Put LOG_TTY=1 in the /etc/default/runsvdir-log and you get the default behavior.
Also, maybe somehow add an option to the runsvdir-log service to duplicate the log to a tty. I'm afraid my head is not clear enough now to suggest anything more sensible.
Also, the scripts above work, I've just tested them.
Is it of any help that I believe in you?
What now ?
Unfortunately Alverstone has hand edited the log before posting -- the log we see is not actually the log they got. But I believe that all log lines are included with their correct timestamps and only certain identifiers have been "mangle mapped" under an idea of protecting personal information.
I obscured hostname, UUID of root partition, vendor and product ids, EDID in hex (dunno why), device names and their paths under /sys. Everything else is intact. Still, I kept device names unique. Obscured OpticalMouse is the device that gets replugged. It's just an optical mouse, the keyboard that comes with it is either the buttons, or maybe just the DPI button, I don't really know.
IMHO there isn't anything overly useful in the logs, except "Permission denied". Might be that libseat1 improperly releases the disconnected device and then returns invalid fd. Which reminds me, take a look at this.
2024-10-19_14:57:19.92747 00:00:00.000 [INFO] [seatd/seat.c:39] Created VT-bound seat seat0
2024-10-19_14:57:19.92763 00:00:00.000 [INFO] [seatd/seatd.c:194] seatd started
2024-10-19_14:57:24.06845 00:00:04.141 [INFO] [seatd/server.c:145] New client connected (pid: 2531, uid: 1006, gid: 1007)
2024-10-19_14:57:24.06848 00:00:04.141 [INFO] [seatd/seat.c:170] Added client 4 to seat0
2024-10-19_14:57:24.06858 00:00:04.141 [INFO] [seatd/seat.c:480] Opened client 4 on seat0
2024-10-19_14:57:29.84625 00:00:09.918 [ERROR] [seatd/seat.c:242] /dev/input/mouse1 is not a supported device type
2024-10-19_14:57:29.84627 00:00:09.918 [ERROR] [seatd/client.c:238] Could not open device: No such file or directory
2024-10-19_14:57:41.79399 00:00:21.866 [INFO] [seatd/seat.c:621] Switching from VT 4 to VT 3
2024-10-19_14:57:41.79416 00:00:21.866 [INFO] [seatd/seat.c:560] Disabling client 4 on seat0
2024-10-19_14:57:42.27594 00:00:22.348 [ERROR] [seatd/client.c:282] No such device
2024-10-19_14:57:42.27644 00:00:22.349 [INFO] [seatd/seat.c:576] Disabled client 4 on seat0
2024-10-19_14:57:44.57358 00:00:24.646 [ERROR] [seatd/client.c:282] No such device
2024-10-19_14:57:46.77685 00:00:26.849 [ERROR] [seatd/seat.c:222] Could open device: client is not active
2024-10-19_14:57:46.77687 00:00:26.849 [ERROR] [seatd/client.c:238] Could not open device: Operation not permitted
2024-10-19_14:57:46.84516 00:00:26.917 [ERROR] [seatd/seat.c:222] Could open device: client is not active
2024-10-19_14:57:46.84518 00:00:26.917 [ERROR] [seatd/client.c:238] Could not open device: Operation not permitted
2024-10-19_14:57:47.81068 00:00:27.883 [INFO] [seatd/seat.c:480] Opened client 4 on seat0
2024-10-19_14:57:53.06541 00:00:33.137 [INFO] [seatd/seat.c:418] No clients on seat0 to activate
2024-10-19_14:57:53.11650 00:00:33.189 [INFO] [seatd/seat.c:524] Closed client 4 on seat0
2024-10-19_14:57:53.11654 00:00:33.189 [INFO] [seatd/seat.c:192] Removed client 4 from seat0
2024-10-19_14:57:53.11659 00:00:33.189 [INFO] [seatd/client.c:471] Client disconnected
2024-10-19_14:57:54.61958 00:00:34.692 [INFO] [seatd/seat.c:418] No clients on seat0 to activate
2024-10-19_14:58:04.71006 00:00:44.782 [INFO] [seatd/seatd.c:218] seatd stopped
Bad.
[ 169.118]
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[ 169.126] Current Operating System: Linux hostname 6.6.56 #6 SMP PREEMPT_DYNAMIC Tue Oct 15 20:18:05 EEST 2024 x86_64
[ 169.126] Kernel command line: BOOT_IMAGE=/vmlinuz root=UUID= ro loglevel=0 net.ifnames=1
[ 169.129] xorg-server 2:21.1.13-2devuan1 (https://www.devuan.org/os/community)
[ 169.130] Current version of pixman: 0.42.2
[ 169.133] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 169.133] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 169.140] (==) Log file: "/home/idle/.local/share/xorg/Xorg.0.log", Time: Fri Oct 18 23:13:31 2024
[ 169.142] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 169.143] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 169.144] (==) No Layout section. Using the first Screen section.
[ 169.144] (==) No screen section available. Using defaults.
[ 169.144] (**) |-->Screen "Default Screen Section" (0)
[ 169.144] (**) | |-->Monitor "<default monitor>"
[ 169.144] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 169.144] (**) Allowing byte-swapped clients
[ 169.144] (==) Automatically adding devices
[ 169.144] (==) Automatically enabling devices
[ 169.144] (==) Automatically adding GPU devices
[ 169.144] (==) Automatically binding GPU devices
[ 169.144] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 169.144] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 169.144] Entry deleted from font path.
[ 169.144] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 169.144] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 169.144] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 169.144] (II) Loader magic: 0x558540a93ec0
[ 169.144] (II) Module ABI versions:
[ 169.144] X.Org ANSI C Emulation: 0.4
[ 169.144] X.Org Video Driver: 25.2
[ 169.144] X.Org XInput driver : 24.4
[ 169.144] X.Org Server Extension : 10.0
[ 169.144] (++) using VT number 4
[ 169.144] (II) seatd_libseat init
[ 169.144] (II) [libseat/libseat.c:62] Seat opened with backend 'seatd'
[ 169.144] (II) [libseat/backend/seatd.c:212] Enabling seat
[ 169.144] (II) seatd_libseat enable
[ 169.144] (II) seatd_libseat handled 2 events
[ 169.245] (II) seatd_libseat client activated
[ 169.246] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 169.246] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[ 169.246] (II) seatd_libseat try open graphics /dev/dri/card0
[ 169.246] (II) seatd_libseat opened graphics: /dev/dri/card0 (1:11)
[ 169.250] (--) PCI:*(0@0:2:0) 8086:5921:1043:12d1 rev 6, Mem @ 0xee000000/16777216, 0xd0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[ 169.250] (II) LoadModule: "glx"
[ 169.251] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 169.252] (II) Module glx: vendor="X.Org Foundation"
[ 169.252] compiled for 1.21.1.13, module version = 1.0.0
[ 169.252] ABI class: X.Org Server Extension, version 10.0
[ 169.252] (==) Matched modesetting as autoconfigured driver 0
[ 169.252] (==) Matched fbdev as autoconfigured driver 1
[ 169.252] (==) Matched vesa as autoconfigured driver 2
[ 169.252] (==) Assigned the driver to the xf86ConfigLayout
[ 169.252] (II) LoadModule: "modesetting"
[ 169.253] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 169.253] (II) Module modesetting: vendor="X.Org Foundation"
[ 169.253] compiled for 1.21.1.13, module version = 1.21.1
[ 169.253] Module class: X.Org Video Driver
[ 169.253] ABI class: X.Org Video Driver, version 25.2
[ 169.253] (II) LoadModule: "fbdev"
[ 169.253] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 169.253] (II) Module fbdev: vendor="X.Org Foundation"
[ 169.253] compiled for 1.21.1.3, module version = 0.5.0
[ 169.253] Module class: X.Org Video Driver
[ 169.253] ABI class: X.Org Video Driver, version 25.2
[ 169.253] (II) LoadModule: "vesa"
[ 169.253] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 169.253] (II) Module vesa: vendor="X.Org Foundation"
[ 169.253] compiled for 1.21.1.9, module version = 2.6.0
[ 169.253] Module class: X.Org Video Driver
[ 169.253] ABI class: X.Org Video Driver, version 25.2
[ 169.253] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 169.253] (II) FBDEV: driver for framebuffer: fbdev
[ 169.254] (II) VESA: driver for VESA chipsets: vesa
[ 169.254] xf86EnableIO: failed to enable I/O ports 0000-03ff (Operation not permitted)
[ 169.254] (II) modeset(0): using drv /dev/dri/card0
[ 169.254] (WW) Falling back to old probe method for fbdev
[ 169.254] (II) Loading sub module "fbdevhw"
[ 169.254] (II) LoadModule: "fbdevhw"
[ 169.254] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 169.254] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 169.254] compiled for 1.21.1.13, module version = 0.0.2
[ 169.254] ABI class: X.Org Video Driver, version 25.2
[ 169.254] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 169.254] (II) modeset(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 169.254] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 169.254] (==) modeset(0): RGB weight 888
[ 169.254] (==) modeset(0): Default visual is TrueColor
[ 169.254] (II) Loading sub module "glamoregl"
[ 169.254] (II) LoadModule: "glamoregl"
[ 169.254] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 169.299] (II) Module glamoregl: vendor="X.Org Foundation"
[ 169.299] compiled for 1.21.1.13, module version = 1.0.1
[ 169.299] ABI class: X.Org ANSI C Emulation, version 0.4
[ 169.315] (II) modeset(0): glamor X acceleration enabled on Graphics Card
[ 169.315] (II) modeset(0): glamor initialized
[ 169.315] (==) modeset(0): VariableRefresh: disabled
[ 169.315] (==) modeset(0): AsyncFlipSecondaries: disabled
[ 169.317] (II) modeset(0): Output eDP-1 has no monitor section
[ 169.317] (II) modeset(0): Output DP-1 has no monitor section
[ 169.373] (II) modeset(0): Output HDMI-1 has no monitor section
[ 169.377] (II) modeset(0): Output HDMI-2 has no monitor section
[ 169.379] (II) modeset(0): EDID for output eDP-1
[ 169.379] (II) modeset(0): Manufacturer: manufacturer Model: ???? Serial#: 0
[ 169.379] (II) modeset(0): Year: 2014 Week: 43
[ 169.379] (II) modeset(0): EDID Version: 1.4
[ 169.379] (II) modeset(0): Digital Display Input
[ 169.379] (II) modeset(0): 6 bits per channel
[ 169.379] (II) modeset(0): Digital interface is DisplayPort
[ 169.379] (II) modeset(0): Max Image Size [cm]: horiz.: 34 vert.: 19
[ 169.379] (II) modeset(0): Gamma: 2.20
[ 169.379] (II) modeset(0): No DPMS capabilities specified
[ 169.379] (II) modeset(0): Supported color encodings: RGB 4:4:4
[ 169.379] (II) modeset(0): First detailed timing is preferred mode
[ 169.379] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[ 169.379] (II) modeset(0): redX: 0.575 redY: 0.345 greenX: 0.340 greenY: 0.560
[ 169.379] (II) modeset(0): blueX: 0.156 blueY: 0.123 whiteX: 0.313 whiteY: 0.329
[ 169.379] (II) modeset(0): Manufacturer's mask: 0
[ 169.379] (II) modeset(0): Supported detailed timing:
[ 169.379] (II) modeset(0): clock: 142.0 MHz Image Size: 344 x 193 mm
[ 169.379] (II) modeset(0): h_active: 1920 h_sync: 2028 h_sync_end 2076 h_blank_end 2100 h_border: 0
[ 169.379] (II) modeset(0): v_active: 1080 v_sync: 1090 v_sync_end 1100 v_blanking: 1126 v_border: 0
[ 169.379] (II) modeset(0): Unknown vendor-specific block f
[ 169.379] (II) modeset(0): manufacturer
[ 169.379] (II) modeset(0): ?????????.?
[ 169.379] (II) modeset(0): EDID (in hex):
[ 169.379] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): ????????????????????????????????
[ 169.380] (II) modeset(0): Printing probed modes for output eDP-1
[ 169.380] (II) modeset(0): Modeline "1920x1080"x60.1 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 169.380] (II) modeset(0): Modeline "1920x1080"x120.0 356.38 1920 2080 2288 2656 1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[ 169.380] (II) modeset(0): Modeline "1920x1080"x119.9 266.50 1920 1944 1960 2000 1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[ 169.380] (II) modeset(0): Modeline "1920x1080"x60.0 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[ 169.380] (II) modeset(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[ 169.380] (II) modeset(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[ 169.380] (II) modeset(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[ 169.380] (II) modeset(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[ 169.380] (II) modeset(0): Modeline "1600x900"x120.0 246.00 1600 1728 1900 2200 900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[ 169.380] (II) modeset(0): Modeline "1600x900"x119.9 186.50 1600 1624 1640 1680 900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "1600x900"x59.9 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync (56.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "1600x900"x59.8 97.50 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.4 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "1400x900"x60.0 103.50 1400 1480 1624 1848 900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "1400x900"x59.9 86.50 1400 1448 1480 1560 900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "1440x810"x120.0 198.12 1440 1548 1704 1968 810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 169.380] (II) modeset(0): Modeline "1440x810"x119.9 151.88 1440 1464 1480 1520 810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 169.380] (II) modeset(0): Modeline "1368x768"x59.9 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 169.380] (II) modeset(0): Modeline "1368x768"x59.9 72.25 1368 1416 1448 1528 768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x800"x120.0 174.25 1280 1380 1516 1752 800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x800"x119.9 134.25 1280 1304 1320 1360 800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x720"x120.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x720"x120.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 169.380] (II) modeset(0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 169.380] (II) modeset(0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 169.380] (II) modeset(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 169.380] (II) modeset(0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 169.380] (II) modeset(0): Modeline "1024x576"x119.9 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 169.380] (II) modeset(0): Modeline "1024x576"x119.9 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 169.380] (II) modeset(0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x600"x119.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x600"x120.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x540"x119.9 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x540"x120.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 169.380] (II) modeset(0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 169.380] (II) modeset(0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 169.380] (II) modeset(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 169.380] (II) modeset(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 169.380] (II) modeset(0): Modeline "840x525"x120.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "840x525"x119.8 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 169.381] (II) modeset(0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 169.381] (II) modeset(0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 169.381] (II) modeset(0): Modeline "800x450"x119.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 169.381] (II) modeset(0): Modeline "800x450"x119.6 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 169.381] (II) modeset(0): Modeline "700x450"x119.9 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 169.381] (II) modeset(0): Modeline "700x450"x119.8 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 169.381] (II) modeset(0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 169.381] (II) modeset(0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 169.381] (II) modeset(0): Modeline "684x384"x119.8 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 169.381] (II) modeset(0): Modeline "684x384"x119.7 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x400"x119.8 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x400"x120.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x360"x119.7 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x360"x119.7 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 169.381] (II) modeset(0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 169.381] (II) modeset(0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 169.381] (II) modeset(0): Modeline "512x288"x120.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 169.381] (II) modeset(0): Modeline "512x288"x119.8 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 169.381] (II) modeset(0): Modeline "480x270"x119.3 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 169.381] (II) modeset(0): Modeline "480x270"x119.6 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 169.381] (II) modeset(0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 169.381] (II) modeset(0): Modeline "432x243"x119.8 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 169.381] (II) modeset(0): Modeline "432x243"x119.1 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 169.381] (II) modeset(0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 169.381] (II) modeset(0): Modeline "360x202"x119.0 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 169.381] (II) modeset(0): Modeline "360x202"x118.3 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 169.381] (II) modeset(0): Modeline "320x180"x119.7 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 169.381] (II) modeset(0): Modeline "320x180"x118.6 8.88 320 344 360 400 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[ 169.381] (II) modeset(0): EDID for output DP-1
[ 169.437] (II) modeset(0): EDID for output HDMI-1
[ 169.441] (II) modeset(0): EDID for output HDMI-2
[ 169.441] (II) modeset(0): Output eDP-1 connected
[ 169.441] (II) modeset(0): Output DP-1 disconnected
[ 169.441] (II) modeset(0): Output HDMI-1 disconnected
[ 169.441] (II) modeset(0): Output HDMI-2 disconnected
[ 169.441] (II) modeset(0): Using exact sizes for initial modes
[ 169.441] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[ 169.441] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 169.441] (==) modeset(0): DPI set to (96, 96)
[ 169.441] (II) Loading sub module "fb"
[ 169.441] (II) LoadModule: "fb"
[ 169.441] (II) Module "fb" already built-in
[ 169.441] (II) UnloadModule: "fbdev"
[ 169.441] (II) Unloading fbdev
[ 169.441] (II) UnloadSubModule: "fbdevhw"
[ 169.441] (II) Unloading fbdevhw
[ 169.441] (II) UnloadModule: "vesa"
[ 169.441] (II) Unloading vesa
[ 169.468] (==) modeset(0): Backing store enabled
[ 169.468] (==) modeset(0): Silken mouse enabled
[ 169.547] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[ 169.547] (==) modeset(0): DPMS enabled
[ 169.547] (II) modeset(0): [DRI2] Setup complete
[ 169.547] (II) modeset(0): [DRI2] DRI driver: iris
[ 169.547] (II) modeset(0): [DRI2] VDPAU driver: va_gl
[ 169.547] (II) Initializing extension Generic Event Extension
[ 169.548] (II) Initializing extension SHAPE
[ 169.548] (II) Initializing extension MIT-SHM
[ 169.548] (II) Initializing extension XInputExtension
[ 169.549] (II) Initializing extension XTEST
[ 169.549] (II) Initializing extension BIG-REQUESTS
[ 169.549] (II) Initializing extension SYNC
[ 169.549] (II) Initializing extension XKEYBOARD
[ 169.550] (II) Initializing extension XC-MISC
[ 169.550] (II) Initializing extension SECURITY
[ 169.550] (II) Initializing extension XFIXES
[ 169.550] (II) Initializing extension RENDER
[ 169.551] (II) Initializing extension RANDR
[ 169.551] (II) Initializing extension COMPOSITE
[ 169.551] (II) Initializing extension DAMAGE
[ 169.552] (II) Initializing extension MIT-SCREEN-SAVER
[ 169.552] (II) Initializing extension DOUBLE-BUFFER
[ 169.552] (II) Initializing extension RECORD
[ 169.552] (II) Initializing extension DPMS
[ 169.553] (II) Initializing extension Present
[ 169.553] (II) Initializing extension DRI3
[ 169.553] (II) Initializing extension X-Resource
[ 169.553] (II) Initializing extension XVideo
[ 169.554] (II) Initializing extension XVideo-MotionCompensation
[ 169.554] (II) Initializing extension SELinux
[ 169.554] (II) SELinux: Disabled on system
[ 169.554] (II) Initializing extension GLX
[ 169.605] (II) AIGLX: Loaded and initialized iris
[ 169.605] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 169.605] (II) Initializing extension XFree86-VidModeExtension
[ 169.606] (II) Initializing extension XFree86-DGA
[ 169.606] (II) Initializing extension XFree86-DRI
[ 169.606] (II) Initializing extension DRI2
[ 169.607] (II) modeset(0): Damage tracking initialized
[ 169.607] (II) modeset(0): Setting screen physical size to 508 x 285
[ 169.661] (II) config/udev: Adding input device Power Button (/dev/input/event9)
[ 169.662] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 169.662] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 169.662] (II) LoadModule: "libinput"
[ 169.662] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 169.663] (II) Module libinput: vendor="X.Org Foundation"
[ 169.663] compiled for 1.21.1.11, module version = 1.4.0
[ 169.663] Module class: X.Org XInput Driver
[ 169.663] ABI class: X.Org XInput driver, version 24.4
[ 169.663] (II) Using input driver 'libinput' for 'Power Button'
[ 169.663] (II) seatd_libseat try open /dev/input/event9
[ 169.664] (II) seatd_libseat opened /dev/input/event9 (2:124)
[ 169.664] (**) Power Button: always reports core events
[ 169.664] (**) Option "Device" "/dev/input/event9"
[ 169.666] (II) event9 - Power Button: is tagged by udev as: Keyboard
[ 169.666] (II) event9 - Power Button: device is a keyboard
[ 169.666] (II) event9 - Power Button: device removed
[ 169.666] (**) Option "config_info" "udev:/sys//event9"
[ 169.666] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 169.666] (**) Option "xkb_model" "pc105"
[ 169.667] (**) Option "xkb_layout" "us"
[ 169.668] (II) event9 - Power Button: is tagged by udev as: Keyboard
[ 169.668] (II) event9 - Power Button: device is a keyboard
[ 169.669] (II) config/udev: Adding input device Obscured Radio Control (/dev/input/event10)
[ 169.669] (**) Obscured Radio Control: Applying InputClass "evdev keyboard catchall"
[ 169.669] (**) Obscured Radio Control: Applying InputClass "libinput keyboard catchall"
[ 169.669] (II) Using input driver 'libinput' for 'Obscured Radio Control'
[ 169.669] (II) seatd_libseat try open /dev/input/event10
[ 169.669] (II) seatd_libseat opened /dev/input/event10 (3:127)
[ 169.669] (**) Obscured Radio Control: always reports core events
[ 169.669] (**) Option "Device" "/dev/input/event10"
[ 169.670] (II) event10 - Obscured Radio Control: is tagged by udev as: Keyboard
[ 169.670] (II) event10 - Obscured Radio Control: device is a keyboard
[ 169.670] (II) event10 - Obscured Radio Control: device removed
[ 169.670] (**) Option "config_info" "udev:/sys//event10"
[ 169.670] (II) XINPUT: Adding extended input device "Obscured Radio Control" (type: KEYBOARD, id 7)
[ 169.670] (**) Option "xkb_model" "pc105"
[ 169.670] (**) Option "xkb_layout" "us"
[ 169.671] (II) event10 - Obscured Radio Control: is tagged by udev as: Keyboard
[ 169.671] (II) event10 - Obscured Radio Control: device is a keyboard
[ 169.672] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
[ 169.672] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 169.672] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 169.672] (II) Using input driver 'libinput' for 'Video Bus'
[ 169.672] (II) seatd_libseat try open /dev/input/event13
[ 169.672] (II) seatd_libseat opened /dev/input/event13 (4:128)
[ 169.672] (**) Video Bus: always reports core events
[ 169.672] (**) Option "Device" "/dev/input/event13"
[ 169.673] (II) event13 - Video Bus: is tagged by udev as: Keyboard
[ 169.673] (II) event13 - Video Bus: device is a keyboard
[ 169.673] (II) event13 - Video Bus: device removed
[ 169.673] (**) Option "config_info" "udev:/sys//event13"
[ 169.674] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[ 169.674] (**) Option "xkb_model" "pc105"
[ 169.674] (**) Option "xkb_layout" "us"
[ 169.675] (II) event13 - Video Bus: is tagged by udev as: Keyboard
[ 169.675] (II) event13 - Video Bus: device is a keyboard
[ 169.676] (II) config/udev: Adding input device Lid Switch (/dev/input/event6)
[ 169.676] (II) No input driver specified, ignoring this device.
[ 169.676] (II) This device may have been added with another device file.
[ 169.676] (II) config/udev: Adding input device Power Button (/dev/input/event8)
[ 169.676] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 169.676] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 169.676] (II) Using input driver 'libinput' for 'Power Button'
[ 169.676] (II) seatd_libseat try open /dev/input/event8
[ 169.676] (II) seatd_libseat opened /dev/input/event8 (5:129)
[ 169.677] (**) Power Button: always reports core events
[ 169.677] (**) Option "Device" "/dev/input/event8"
[ 169.677] (II) event8 - Power Button: is tagged by udev as: Keyboard
[ 169.678] (II) event8 - Power Button: device is a keyboard
[ 169.678] (II) event8 - Power Button: device removed
[ 169.678] (**) Option "config_info" "udev:/sys//event8"
[ 169.678] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[ 169.678] (**) Option "xkb_model" "pc105"
[ 169.678] (**) Option "xkb_layout" "us"
[ 169.679] (II) event8 - Power Button: is tagged by udev as: Keyboard
[ 169.679] (II) event8 - Power Button: device is a keyboard
[ 169.680] (II) config/udev: Adding input device Sleep Button (/dev/input/event7)
[ 169.680] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 169.680] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 169.680] (II) Using input driver 'libinput' for 'Sleep Button'
[ 169.680] (II) seatd_libseat try open /dev/input/event7
[ 169.680] (II) seatd_libseat opened /dev/input/event7 (6:130)
[ 169.680] (**) Sleep Button: always reports core events
[ 169.680] (**) Option "Device" "/dev/input/event7"
[ 169.681] (II) event7 - Sleep Button: is tagged by udev as: Keyboard
[ 169.681] (II) event7 - Sleep Button: device is a keyboard
[ 169.681] (II) event7 - Sleep Button: device removed
[ 169.681] (**) Option "config_info" "udev:/sys//event7"
[ 169.681] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[ 169.681] (**) Option "xkb_model" "pc105"
[ 169.681] (**) Option "xkb_layout" "us"
[ 169.682] (II) event7 - Sleep Button: is tagged by udev as: Keyboard
[ 169.682] (II) event7 - Sleep Button: device is a keyboard
[ 169.684] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 169.684] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 169.684] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 169.684] (II) Using input driver 'libinput' for 'Obscured OpticalMouse'
[ 169.684] (II) seatd_libseat try open /dev/input/event3
[ 169.748] (II) seatd_libseat opened /dev/input/event3 (7:131)
[ 169.748] (**) Obscured OpticalMouse: always reports core events
[ 169.748] (**) Option "Device" "/dev/input/event3"
[ 169.751] (II) event3 - Obscured OpticalMouse: is tagged by udev as: Mouse
[ 169.752] (II) event3 - Obscured OpticalMouse: device is a pointer
[ 169.752] (II) event3 - Obscured OpticalMouse: device removed
[ 169.752] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.752] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.752] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.752] (**) Option "config_info" "udev:/sys//event3"
[ 169.752] (II) XINPUT: Adding extended input device "Obscured OpticalMouse" (type: MOUSE, id 11)
[ 169.753] (**) Option "AccelerationScheme" "none"
[ 169.753] (**) Obscured OpticalMouse: (accel) selected scheme none/0
[ 169.753] (**) Obscured OpticalMouse: (accel) acceleration factor: 2.000
[ 169.753] (**) Obscured OpticalMouse: (accel) acceleration threshold: 4
[ 169.756] (II) event3 - Obscured OpticalMouse: is tagged by udev as: Mouse
[ 169.756] (II) event3 - Obscured OpticalMouse: device is a pointer
[ 169.758] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 169.758] (II) No input driver specified, ignoring this device.
[ 169.758] (II) This device may have been added with another device file.
[ 169.760] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 169.760] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 169.760] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 169.760] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 169.760] (II) seatd_libseat try open /dev/input/event4
[ 169.761] (II) seatd_libseat opened /dev/input/event4 (8:132)
[ 169.761] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 169.761] (**) Option "Device" "/dev/input/event4"
[ 169.764] (II) event4 - Obscured OpticalMouse Keyboard: is tagged by udev as: Keyboard
[ 169.764] (II) event4 - Obscured OpticalMouse Keyboard: device is a keyboard
[ 169.765] (II) event4 - Obscured OpticalMouse Keyboard: device removed
[ 169.765] (II) libinput: Obscured OpticalMouse Keyboard: needs a virtual subdevice
[ 169.765] (**) Option "config_info" "udev:/sys//event4"
[ 169.765] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: MOUSE, id 12)
[ 169.765] (**) Option "AccelerationScheme" "none"
[ 169.765] (**) Obscured OpticalMouse Keyboard: (accel) selected scheme none/0
[ 169.765] (**) Obscured OpticalMouse Keyboard: (accel) acceleration factor: 2.000
[ 169.765] (**) Obscured OpticalMouse Keyboard: (accel) acceleration threshold: 4
[ 169.768] (II) event4 - Obscured OpticalMouse Keyboard: is tagged by udev as: Keyboard
[ 169.768] (II) event4 - Obscured OpticalMouse Keyboard: device is a keyboard
[ 169.771] (II) config/udev: Adding input device Obscured USB Keyboard (/dev/input/event5)
[ 169.771] (**) Obscured USB Keyboard: Applying InputClass "evdev keyboard catchall"
[ 169.771] (**) Obscured USB Keyboard: Applying InputClass "libinput keyboard catchall"
[ 169.771] (II) Using input driver 'libinput' for 'Obscured USB Keyboard'
[ 169.771] (II) seatd_libseat try open /dev/input/event5
[ 169.771] (II) seatd_libseat opened /dev/input/event5 (9:133)
[ 169.771] (**) Obscured USB Keyboard: always reports core events
[ 169.771] (**) Option "Device" "/dev/input/event5"
[ 169.774] (II) event5 - Obscured USB Keyboard: is tagged by udev as: Keyboard
[ 169.774] (II) event5 - Obscured USB Keyboard: device is a keyboard
[ 169.775] (II) event5 - Obscured USB Keyboard: device removed
[ 169.775] (**) Option "config_info" "udev:/sys//event5"
[ 169.775] (II) XINPUT: Adding extended input device "Obscured USB Keyboard" (type: KEYBOARD, id 13)
[ 169.775] (**) Option "xkb_model" "pc105"
[ 169.775] (**) Option "xkb_layout" "us"
[ 169.778] (II) event5 - Obscured USB Keyboard: is tagged by udev as: Keyboard
[ 169.778] (II) event5 - Obscured USB Keyboard: device is a keyboard
[ 169.779] (II) config/udev: Adding input device Obscured Touchpad Mouse (/dev/input/event1)
[ 169.779] (**) Obscured Touchpad Mouse: Applying InputClass "evdev pointer catchall"
[ 169.779] (**) Obscured Touchpad Mouse: Applying InputClass "libinput pointer catchall"
[ 169.779] (II) Using input driver 'libinput' for 'Obscured Touchpad Mouse'
[ 169.779] (II) seatd_libseat try open /dev/input/event1
[ 169.779] (II) seatd_libseat opened /dev/input/event1 (10:134)
[ 169.779] (**) Obscured Touchpad Mouse: always reports core events
[ 169.779] (**) Option "Device" "/dev/input/event1"
[ 169.781] (II) event1 - Obscured Touchpad Mouse: is tagged by udev as: Mouse
[ 169.782] (II) event1 - Obscured Touchpad Mouse: device is a pointer
[ 169.782] (II) event1 - Obscured Touchpad Mouse: device removed
[ 169.782] (II) libinput: Obscured Touchpad Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.782] (II) libinput: Obscured Touchpad Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.782] (II) libinput: Obscured Touchpad Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.782] (**) Option "config_info" "udev:/sys//event1"
[ 169.782] (II) XINPUT: Adding extended input device "Obscured Touchpad Mouse" (type: MOUSE, id 14)
[ 169.782] (**) Option "AccelerationScheme" "none"
[ 169.782] (**) Obscured Touchpad Mouse: (accel) selected scheme none/0
[ 169.782] (**) Obscured Touchpad Mouse: (accel) acceleration factor: 2.000
[ 169.782] (**) Obscured Touchpad Mouse: (accel) acceleration threshold: 4
[ 169.783] (II) event1 - Obscured Touchpad Mouse: is tagged by udev as: Mouse
[ 169.784] (II) event1 - Obscured Touchpad Mouse: device is a pointer
[ 169.785] (II) config/udev: Adding input device Obscured Touchpad Mouse (/dev/input/mouse0)
[ 169.785] (II) No input driver specified, ignoring this device.
[ 169.785] (II) This device may have been added with another device file.
[ 169.785] (II) config/udev: Adding input device Obscured Touchpad Touchpad (/dev/input/event2)
[ 169.785] (**) Obscured Touchpad Touchpad: Applying InputClass "evdev touchpad catchall"
[ 169.785] (**) Obscured Touchpad Touchpad: Applying InputClass "libinput touchpad catchall"
[ 169.785] (**) Obscured Touchpad Touchpad: Applying InputClass "My Touchpad"
[ 169.785] (II) Using input driver 'libinput' for 'Obscured Touchpad Touchpad'
[ 169.785] (II) seatd_libseat try open /dev/input/event2
[ 169.786] (II) seatd_libseat opened /dev/input/event2 (11:135)
[ 169.786] (**) Obscured Touchpad Touchpad: always reports core events
[ 169.786] (**) Option "Device" "/dev/input/event2"
[ 169.787] (II) event2 - Obscured Touchpad Touchpad: is tagged by udev as: Touchpad
[ 169.789] (II) event2 - Obscured Touchpad Touchpad: device is a touchpad
[ 169.789] (II) event2 - Obscured Touchpad Touchpad: device removed
[ 169.789] (**) Option "Tapping" "true"
[ 169.789] (II) libinput: Obscured Touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.789] (II) libinput: Obscured Touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.789] (II) libinput: Obscured Touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 169.789] (**) Option "NaturalScrolling" "true"
[ 169.789] (**) Option "config_info" "udev:/sys//event2"
[ 169.789] (II) XINPUT: Adding extended input device "Obscured Touchpad Touchpad" (type: TOUCHPAD, id 15)
[ 169.790] (**) Option "AccelerationScheme" "none"
[ 169.790] (**) Obscured Touchpad Touchpad: (accel) selected scheme none/0
[ 169.790] (**) Obscured Touchpad Touchpad: (accel) acceleration factor: 2.000
[ 169.790] (**) Obscured Touchpad Touchpad: (accel) acceleration threshold: 4
[ 169.792] (II) event2 - Obscured Touchpad Touchpad: is tagged by udev as: Touchpad
[ 169.793] (II) event2 - Obscured Touchpad Touchpad: device is a touchpad
[ 169.794] (II) config/udev: Adding input device Obscured Touchpad Touchpad (/dev/input/mouse1)
[ 169.794] (**) Obscured Touchpad Touchpad: Applying InputClass "My Touchpad"
[ 169.794] (II) Using input driver 'libinput' for 'Obscured Touchpad Touchpad'
[ 169.794] (II) seatd_libseat try open /dev/input/mouse1
[ 169.794] (EE) seatd_libseat open /dev/input/mouse1 (-1) failed: -2
[ 169.794] (**) Obscured Touchpad Touchpad: always reports core events
[ 169.794] (**) Option "Device" "/dev/input/mouse1"
[ 169.794] (EE) xf86OpenSerial: Cannot open device /dev/input/mouse1
Permission denied.
[ 169.794] (II) mouse1: opening input device '/dev/input/mouse1' failed (Permission denied).
[ 169.794] (II) mouse1 - failed to create input device '/dev/input/mouse1'.
[ 169.794] (EE) libinput: Obscured Touchpad Touchpad: Failed to create a device for /dev/input/mouse1
[ 169.794] (EE) PreInit returned 2 for "Obscured Touchpad Touchpad"
[ 169.794] (II) UnloadModule: "libinput"
[ 169.795] (II) config/udev: Adding input device Obscured Headphone (/dev/input/event14)
[ 169.795] (II) No input driver specified, ignoring this device.
[ 169.795] (II) This device may have been added with another device file.
[ 169.795] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=3 (/dev/input/event15)
[ 169.795] (II) No input driver specified, ignoring this device.
[ 169.795] (II) This device may have been added with another device file.
[ 169.796] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=7 (/dev/input/event16)
[ 169.796] (II) No input driver specified, ignoring this device.
[ 169.796] (II) This device may have been added with another device file.
[ 169.797] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=8 (/dev/input/event17)
[ 169.797] (II) No input driver specified, ignoring this device.
[ 169.797] (II) This device may have been added with another device file.
[ 169.797] (II) config/udev: Adding input device Obscured hotkeys (/dev/input/event12)
[ 169.797] (**) Obscured hotkeys: Applying InputClass "evdev keyboard catchall"
[ 169.797] (**) Obscured hotkeys: Applying InputClass "libinput keyboard catchall"
[ 169.797] (II) Using input driver 'libinput' for 'Obscured hotkeys'
[ 169.797] (II) seatd_libseat try open /dev/input/event12
[ 169.797] (II) seatd_libseat opened /dev/input/event12 (12:136)
[ 169.797] (**) Obscured hotkeys: always reports core events
[ 169.797] (**) Option "Device" "/dev/input/event12"
[ 169.798] (II) event12 - Obscured hotkeys: is tagged by udev as: Keyboard
[ 169.798] (II) event12 - Obscured hotkeys: device is a keyboard
[ 169.798] (II) event12 - Obscured hotkeys: device removed
[ 169.798] (**) Option "config_info" "udev:/sys//event12"
[ 169.798] (II) XINPUT: Adding extended input device "Obscured hotkeys" (type: KEYBOARD, id 16)
[ 169.798] (**) Option "xkb_model" "pc105"
[ 169.798] (**) Option "xkb_layout" "us"
[ 169.799] (II) event12 - Obscured hotkeys: is tagged by udev as: Keyboard
[ 169.799] (II) event12 - Obscured hotkeys: device is a keyboard
[ 169.800] (II) config/udev: Adding input device Obscured Built-in keyboard (/dev/input/event0)
[ 169.800] (**) Obscured Built-in keyboard: Applying InputClass "evdev keyboard catchall"
[ 169.800] (**) Obscured Built-in keyboard: Applying InputClass "libinput keyboard catchall"
[ 169.800] (II) Using input driver 'libinput' for 'Obscured Built-in keyboard'
[ 169.800] (II) seatd_libseat try open /dev/input/event0
[ 169.800] (II) seatd_libseat opened /dev/input/event0 (13:137)
[ 169.800] (**) Obscured Built-in keyboard: always reports core events
[ 169.800] (**) Option "Device" "/dev/input/event0"
[ 169.801] (II) event0 - Obscured Built-in keyboard: is tagged by udev as: Keyboard
[ 169.801] (II) event0 - Obscured Built-in keyboard: device is a keyboard
[ 169.802] (II) event0 - Obscured Built-in keyboard: device removed
[ 169.802] (**) Option "config_info" "udev:/sys//event0"
[ 169.802] (II) XINPUT: Adding extended input device "Obscured Built-in keyboard" (type: KEYBOARD, id 17)
[ 169.802] (**) Option "xkb_model" "pc105"
[ 169.802] (**) Option "xkb_layout" "us"
[ 169.803] (II) event0 - Obscured Built-in keyboard: is tagged by udev as: Keyboard
[ 169.803] (II) event0 - Obscured Built-in keyboard: device is a keyboard
[ 169.805] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[ 169.805] (II) No input driver specified, ignoring this device.
[ 169.805] (II) This device may have been added with another device file.
[ 169.812] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 169.812] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 169.812] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 169.812] (II) seatd_libseat reuse 125 for /dev/input/event4
[ 169.812] (II) seatd_libseat opened /dev/input/event4 (21893:125)
[ 169.812] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 169.812] (**) Option "Device" "/dev/input/event4"
[ 169.812] (II) libinput: Obscured OpticalMouse Keyboard: is a virtual subdevice
[ 169.812] (**) Option "config_info" "udev:/sys//event4"
[ 169.812] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: KEYBOARD, id 18)
[ 169.812] (**) Option "xkb_model" "pc105"
[ 169.812] (**) Option "xkb_layout" "us"
[ 170.297] (II) modeset(0): Allocate new frame buffer 1280x720 stride
[ 171.613] (II) modeset(0): EDID vendor "manufacturer", prod id ?????
[ 171.613] (II) modeset(0): Printing DDC gathered Modelines:
[ 171.613] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 174.228] (II) seatd_libseat switch VT 3
[ 174.228] (II) seatd_libseat event handler
[ 174.228] (II) event0 - Obscured Built-in keyboard: device removed
[ 174.228] (II) event12 - Obscured hotkeys: device removed
[ 174.228] (II) event2 - Obscured Touchpad Touchpad: device removed
[ 174.228] (II) event1 - Obscured Touchpad Mouse: device removed
[ 174.228] (II) event5 - Obscured USB Keyboard: device removed
[ 174.228] (II) event4 - Obscured OpticalMouse Keyboard: device removed
[ 174.228] (II) event3 - Obscured OpticalMouse: device removed
[ 174.228] (II) event7 - Sleep Button: device removed
[ 174.228] (II) event8 - Power Button: device removed
[ 174.228] (II) event13 - Video Bus: device removed
[ 174.229] (II) event10 - Obscured Radio Control: device removed
[ 174.229] (II) event9 - Power Button: device removed
[ 174.297] (II) [libseat/backend/seatd.c:207] Disabling seat
[ 174.297] (II) seatd_libseat disable
[ 174.298] (WW) modeset(0): Present-unflip: queue flip during flip on CRTC 0 failed: Permission denied
[ 174.298] (EE) modeset(0): Failed to set CTM property: -13
[ 174.298] (EE) modeset(0): failed to set mode: No such file or directory
[ 174.299] (II) seatd_libseat try close /dev/input/event9 (2:124)
[ 174.336] (II) seatd_libseat try close /dev/input/event10 (3:127)
[ 174.368] (II) seatd_libseat try close /dev/input/event13 (4:128)
[ 174.400] (II) seatd_libseat try close /dev/input/event8 (5:129)
[ 174.432] (II) seatd_libseat try close /dev/input/event7 (6:130)
[ 174.464] (II) seatd_libseat try close /dev/input/event3 (7:131)
[ 174.496] (II) seatd_libseat try close /dev/input/event4 (8:132)
[ 174.528] (II) seatd_libseat try close /dev/input/event5 (9:133)
[ 174.560] (II) seatd_libseat try close /dev/input/event1 (10:134)
[ 174.592] (II) seatd_libseat try close /dev/input/event2 (11:135)
[ 174.624] (II) seatd_libseat try close /dev/input/event12 (12:136)
[ 174.656] (II) seatd_libseat try close /dev/input/event0 (13:137)
[ 174.692] (II) seatd_libseat try close /dev/input/event4 (21893:132)
[ 174.692] (EE) seatd_libseat close failed -9
[ 174.692] (**) Option "fd" "132"
[ 174.693] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 174.693] (II) seatd_libseat handled 2 events
[ 175.989] (II) config/udev: removing device Obscured OpticalMouse
[ 175.992] (II) UnloadModule: "libinput"
[ 175.992] (II) seatd_libseat try close /dev/input/event3 (7:-1)
[ 175.992] (EE) seatd_libseat device not open (/dev/input/event3)
[ 176.056] (II) config/udev: removing device Obscured OpticalMouse Keyboard
[ 176.057] (II) UnloadModule: "libinput"
[ 176.057] (II) seatd_libseat try close /dev/input/event4 (21893:132)
[ 176.058] (EE) seatd_libseat close failed -9
[ 176.058] (II) config/udev: removing device Obscured OpticalMouse Keyboard
[ 176.059] (II) UnloadModule: "libinput"
[ 176.059] (II) seatd_libseat try close /dev/input/event4 (8:-1)
[ 176.059] (EE) seatd_libseat device not open (/dev/input/event4)
[ 180.506] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 180.506] (II) No input driver specified, ignoring this device.
[ 180.506] (II) This device may have been added with another device file.
[ 180.564] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 180.565] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 180.565] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 180.565] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 180.565] (II) seatd_libseat try open /dev/input/event4
[ 180.566] (EE) seatd_libseat open /dev/input/event4 (-1) failed: -1
[ 180.566] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 180.566] (**) Option "Device" "/dev/input/event4"
[ 180.567] (EE) xf86OpenSerial: Cannot open device /dev/input/event4
Permission denied.
[ 180.567] (II) event4: opening input device '/dev/input/event4' failed (Permission denied).
[ 180.567] (II) event4 - failed to create input device '/dev/input/event4'.
[ 180.567] (EE) libinput: Obscured OpticalMouse Keyboard: Failed to create a device for /dev/input/event4
[ 180.567] (EE) PreInit returned 2 for "Obscured OpticalMouse Keyboard"
[ 180.567] (II) UnloadModule: "libinput"
[ 180.637] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 180.637] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 180.637] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 180.637] (II) Using input driver 'libinput' for 'Obscured OpticalMouse'
[ 180.637] (II) seatd_libseat try open /dev/input/event3
[ 180.639] (EE) seatd_libseat open /dev/input/event3 (-1) failed: -1
[ 180.639] (**) Obscured OpticalMouse: always reports core events
[ 180.639] (**) Option "Device" "/dev/input/event3"
[ 180.639] (EE) xf86OpenSerial: Cannot open device /dev/input/event3
Permission denied.
[ 180.639] (II) event3: opening input device '/dev/input/event3' failed (Permission denied).
[ 180.639] (II) event3 - failed to create input device '/dev/input/event3'.
[ 180.639] (EE) libinput: Obscured OpticalMouse: Failed to create a device for /dev/input/event3
[ 180.639] (EE) PreInit returned 2 for "Obscured OpticalMouse"
[ 180.639] (II) UnloadModule: "libinput"
[ 192.148] (II) seatd_libseat event handler
[ 192.149] (II) [libseat/backend/seatd.c:212] Enabling seat
[ 192.149] (II) seatd_libseat enable
[ 192.149] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 192.228] (II) modeset(0): EDID vendor "manufacturer", prod id ?????
[ 192.228] (II) modeset(0): Printing DDC gathered Modelines:
[ 192.228] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 192.378] (II) modeset(0): EDID vendor "manufacturer", prod id ?????
[ 192.378] (II) modeset(0): Printing DDC gathered Modelines:
[ 192.378] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 192.461] (II) seatd_libseat try open /dev/input/event9
[ 192.462] (II) seatd_libseat opened /dev/input/event9 (2:124)
[ 192.464] (II) event9 - Power Button: is tagged by udev as: Keyboard
[ 192.464] (II) event9 - Power Button: device is a keyboard
[ 192.465] (II) seatd_libseat try open /dev/input/event10
[ 192.466] (II) seatd_libseat opened /dev/input/event10 (3:127)
[ 192.468] (II) event10 - Obscured Radio Control: is tagged by udev as: Keyboard
[ 192.468] (II) event10 - Obscured Radio Control: device is a keyboard
[ 192.468] (II) seatd_libseat try open /dev/input/event13
[ 192.468] (II) seatd_libseat opened /dev/input/event13 (4:128)
[ 192.471] (II) event13 - Video Bus: is tagged by udev as: Keyboard
[ 192.471] (II) event13 - Video Bus: device is a keyboard
[ 192.471] (II) seatd_libseat try open /dev/input/event8
[ 192.472] (II) seatd_libseat opened /dev/input/event8 (5:129)
[ 192.474] (II) event8 - Power Button: is tagged by udev as: Keyboard
[ 192.474] (II) event8 - Power Button: device is a keyboard
[ 192.474] (II) seatd_libseat try open /dev/input/event7
[ 192.474] (II) seatd_libseat opened /dev/input/event7 (6:130)
[ 192.476] (II) event7 - Sleep Button: is tagged by udev as: Keyboard
[ 192.477] (II) event7 - Sleep Button: device is a keyboard
[ 192.477] (II) seatd_libseat try open /dev/input/event5
[ 192.477] (II) seatd_libseat opened /dev/input/event5 (7:131)
[ 192.482] (II) event5 - Obscured USB Keyboard: is tagged by udev as: Keyboard
[ 192.482] (II) event5 - Obscured USB Keyboard: device is a keyboard
[ 192.483] (II) seatd_libseat try open /dev/input/event1
[ 192.483] (II) seatd_libseat opened /dev/input/event1 (8:132)
[ 192.486] (II) event1 - Obscured Touchpad Mouse: is tagged by udev as: Mouse
[ 192.486] (II) event1 - Obscured Touchpad Mouse: device is a pointer
[ 192.487] (II) seatd_libseat try open /dev/input/event2
[ 192.487] (II) seatd_libseat opened /dev/input/event2 (9:133)
[ 192.490] (II) event2 - Obscured Touchpad Touchpad: is tagged by udev as: Touchpad
[ 192.492] (II) event2 - Obscured Touchpad Touchpad: device is a touchpad
[ 192.492] (II) seatd_libseat try open /dev/input/event12
[ 192.493] (II) seatd_libseat opened /dev/input/event12 (10:134)
[ 192.494] (II) event12 - Obscured hotkeys: is tagged by udev as: Keyboard
[ 192.494] (II) event12 - Obscured hotkeys: device is a keyboard
[ 192.494] (II) seatd_libseat try open /dev/input/event0
[ 192.495] (II) seatd_libseat opened /dev/input/event0 (11:135)
[ 192.496] (II) event0 - Obscured Built-in keyboard: is tagged by udev as: Keyboard
[ 192.496] (II) event0 - Obscured Built-in keyboard: device is a keyboard
[ 192.497] (II) seatd_libseat handled 2 events
[ 195.493] (II) seatd_libseat try close /dev/input/event9 (2:124)
[ 195.552] (II) event9 - Power Button: device removed
[ 195.553] (II) seatd_libseat try close /dev/input/event10 (3:127)
[ 195.596] (II) event10 - Obscured Radio Control: device removed
[ 195.596] (II) seatd_libseat try close /dev/input/event13 (4:128)
[ 195.632] (II) event13 - Video Bus: device removed
[ 195.633] (II) seatd_libseat try close /dev/input/event8 (5:129)
[ 195.633] (II) event8 - Power Button: device removed
[ 195.665] (II) seatd_libseat try close /dev/input/event7 (6:130)
[ 195.665] (II) event7 - Sleep Button: device removed
[ 195.696] (II) seatd_libseat try close /dev/input/event5 (7:131)
[ 195.697] (II) event5 - Obscured USB Keyboard: device removed
[ 195.729] (II) seatd_libseat try close /dev/input/event1 (8:132)
[ 195.729] (II) event1 - Obscured Touchpad Mouse: device removed
[ 195.760] (II) seatd_libseat try close /dev/input/event2 (9:133)
[ 195.761] (II) event2 - Obscured Touchpad Touchpad: device removed
[ 195.793] (II) seatd_libseat try close /dev/input/event12 (10:134)
[ 195.793] (II) event12 - Obscured hotkeys: device removed
[ 195.833] (II) seatd_libseat try close /dev/input/event0 (11:135)
[ 195.833] (II) event0 - Obscured Built-in keyboard: device removed
[ 195.865] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 195.960] (II) UnloadModule: "libinput"
[ 195.960] (II) seatd_libseat try close /dev/input/event0 (11:-1)
[ 195.960] (EE) seatd_libseat device not open (/dev/input/event0)
[ 195.960] (II) UnloadModule: "libinput"
[ 195.960] (II) seatd_libseat try close /dev/input/event12 (10:-1)
[ 195.960] (EE) seatd_libseat device not open (/dev/input/event12)
[ 195.960] (II) UnloadModule: "libinput"
[ 195.960] (II) seatd_libseat try close /dev/input/event2 (9:-1)
[ 195.960] (EE) seatd_libseat device not open (/dev/input/event2)
[ 195.961] (II) UnloadModule: "libinput"
[ 195.961] (II) seatd_libseat try close /dev/input/event1 (8:-1)
[ 195.961] (EE) seatd_libseat device not open (/dev/input/event1)
[ 195.961] (II) UnloadModule: "libinput"
[ 195.961] (II) seatd_libseat try close /dev/input/event5 (7:-1)
[ 195.961] (EE) seatd_libseat device not open (/dev/input/event5)
[ 195.961] (II) UnloadModule: "libinput"
[ 195.961] (II) seatd_libseat try close /dev/input/event7 (6:-1)
[ 195.961] (EE) seatd_libseat device not open (/dev/input/event7)
[ 195.961] (II) UnloadModule: "libinput"
[ 195.961] (II) seatd_libseat try close /dev/input/event8 (5:-1)
[ 195.961] (EE) seatd_libseat device not open (/dev/input/event8)
[ 195.961] (II) UnloadModule: "libinput"
[ 195.961] (II) seatd_libseat try close /dev/input/event13 (4:-1)
[ 195.961] (EE) seatd_libseat device not open (/dev/input/event13)
[ 195.961] (II) UnloadModule: "libinput"
[ 195.961] (II) seatd_libseat try close /dev/input/event10 (3:-1)
[ 195.961] (EE) seatd_libseat device not open (/dev/input/event10)
[ 195.962] (II) UnloadModule: "libinput"
[ 195.962] (II) seatd_libseat try close /dev/input/event9 (2:-1)
[ 195.962] (EE) seatd_libseat device not open (/dev/input/event9)
[ 195.976] (II) seatd_libseat finish
[ 196.026] (II) Server terminated successfully (0). Closing log file.
Good.
[ 79.416]
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[ 79.417] Current Operating System: Linux hostname 6.6.56 #6 SMP PREEMPT_DYNAMIC Tue Oct 15 20:18:05 EEST 2024 x86_64
[ 79.417] Kernel command line: BOOT_IMAGE=/vmlinuz root=UUID= ro loglevel=0 net.ifnames=1
[ 79.417] xorg-server 2:21.1.13-2 (https://www.debian.org/support)
[ 79.417] Current version of pixman: 0.42.2
[ 79.417] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 79.417] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 79.418] (==) Log file: "/home/idle/.local/share/xorg/Xorg.0.log", Time: Fri Oct 18 23:19:25 2024
[ 79.525] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 79.525] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 79.716] (==) No Layout section. Using the first Screen section.
[ 79.716] (==) No screen section available. Using defaults.
[ 79.716] (**) |-->Screen "Default Screen Section" (0)
[ 79.716] (**) | |-->Monitor "<default monitor>"
[ 79.718] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 79.718] (**) Allowing byte-swapped clients
[ 79.718] (==) Automatically adding devices
[ 79.718] (==) Automatically enabling devices
[ 79.718] (==) Automatically adding GPU devices
[ 79.718] (==) Automatically binding GPU devices
[ 79.718] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 79.756] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 79.756] Entry deleted from font path.
[ 79.783] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 79.783] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 79.783] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 79.783] (II) Loader magic: 0x559146ba5f20
[ 79.783] (II) Module ABI versions:
[ 79.783] X.Org ANSI C Emulation: 0.4
[ 79.783] X.Org Video Driver: 25.2
[ 79.783] X.Org XInput driver : 24.4
[ 79.783] X.Org Server Extension : 10.0
[ 79.785] (++) using VT number 4
[ 79.789] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 79.792] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 79.792] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[ 79.793] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 12 paused 0
[ 79.801] (--) PCI:*(0@0:2:0) 8086:5921:1043:12d1 rev 6, Mem @ 0xee000000/16777216, 0xd0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[ 79.833] (II) LoadModule: "glx"
[ 79.851] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 79.972] (II) Module glx: vendor="X.Org Foundation"
[ 79.972] compiled for 1.21.1.13, module version = 1.0.0
[ 79.972] ABI class: X.Org Server Extension, version 10.0
[ 79.972] (==) Matched modesetting as autoconfigured driver 0
[ 79.972] (==) Matched fbdev as autoconfigured driver 1
[ 79.972] (==) Matched vesa as autoconfigured driver 2
[ 79.972] (==) Assigned the driver to the xf86ConfigLayout
[ 79.972] (II) LoadModule: "modesetting"
[ 80.039] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 80.070] (II) Module modesetting: vendor="X.Org Foundation"
[ 80.070] compiled for 1.21.1.13, module version = 1.21.1
[ 80.070] Module class: X.Org Video Driver
[ 80.070] ABI class: X.Org Video Driver, version 25.2
[ 80.070] (II) LoadModule: "fbdev"
[ 80.103] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 80.104] (II) Module fbdev: vendor="X.Org Foundation"
[ 80.104] compiled for 1.21.1.3, module version = 0.5.0
[ 80.104] Module class: X.Org Video Driver
[ 80.104] ABI class: X.Org Video Driver, version 25.2
[ 80.104] (II) LoadModule: "vesa"
[ 80.104] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 80.114] (II) Module vesa: vendor="X.Org Foundation"
[ 80.114] compiled for 1.21.1.9, module version = 2.6.0
[ 80.114] Module class: X.Org Video Driver
[ 80.114] ABI class: X.Org Video Driver, version 25.2
[ 80.114] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 80.114] (II) FBDEV: driver for framebuffer: fbdev
[ 80.114] (II) VESA: driver for VESA chipsets: vesa
[ 80.115] xf86EnableIO: failed to enable I/O ports 0000-03ff (Operation not permitted)
[ 80.115] (II) modeset(0): using drv /dev/dri/card0
[ 80.115] (WW) Falling back to old probe method for fbdev
[ 80.115] (II) Loading sub module "fbdevhw"
[ 80.115] (II) LoadModule: "fbdevhw"
[ 80.115] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 80.163] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 80.163] compiled for 1.21.1.13, module version = 0.0.2
[ 80.163] ABI class: X.Org Video Driver, version 25.2
[ 80.163] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 80.163] (II) modeset(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 80.163] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 80.163] (==) modeset(0): RGB weight 888
[ 80.163] (==) modeset(0): Default visual is TrueColor
[ 80.163] (II) Loading sub module "glamoregl"
[ 80.163] (II) LoadModule: "glamoregl"
[ 80.163] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 83.249] (II) Module glamoregl: vendor="X.Org Foundation"
[ 83.249] compiled for 1.21.1.13, module version = 1.0.1
[ 83.249] ABI class: X.Org ANSI C Emulation, version 0.4
[ 84.007] (II) modeset(0): glamor X acceleration enabled on Graphics Card
[ 84.008] (II) modeset(0): glamor initialized
[ 84.008] (==) modeset(0): VariableRefresh: disabled
[ 84.008] (==) modeset(0): AsyncFlipSecondaries: disabled
[ 84.010] (II) modeset(0): Output eDP-1 has no monitor section
[ 84.010] (II) modeset(0): Output DP-1 has no monitor section
[ 84.068] (II) modeset(0): Output HDMI-1 has no monitor section
[ 84.071] (II) modeset(0): Output HDMI-2 has no monitor section
[ 84.073] (II) modeset(0): EDID for output eDP-1
[ 84.073] (II) modeset(0): Manufacturer: manufacturer Model: ???? Serial#: 0
[ 84.073] (II) modeset(0): Year: 2014 Week: 43
[ 84.073] (II) modeset(0): EDID Version: 1.4
[ 84.073] (II) modeset(0): Digital Display Input
[ 84.073] (II) modeset(0): 6 bits per channel
[ 84.073] (II) modeset(0): Digital interface is DisplayPort
[ 84.073] (II) modeset(0): Max Image Size [cm]: horiz.: 34 vert.: 19
[ 84.073] (II) modeset(0): Gamma: 2.20
[ 84.073] (II) modeset(0): No DPMS capabilities specified
[ 84.073] (II) modeset(0): Supported color encodings: RGB 4:4:4
[ 84.073] (II) modeset(0): First detailed timing is preferred mode
[ 84.073] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[ 84.073] (II) modeset(0): redX: 0.575 redY: 0.345 greenX: 0.340 greenY: 0.560
[ 84.073] (II) modeset(0): blueX: 0.156 blueY: 0.123 whiteX: 0.313 whiteY: 0.329
[ 84.073] (II) modeset(0): Manufacturer's mask: 0
[ 84.073] (II) modeset(0): Supported detailed timing:
[ 84.073] (II) modeset(0): clock: 142.0 MHz Image Size: 344 x 193 mm
[ 84.073] (II) modeset(0): h_active: 1920 h_sync: 2028 h_sync_end 2076 h_blank_end 2100 h_border: 0
[ 84.073] (II) modeset(0): v_active: 1080 v_sync: 1090 v_sync_end 1100 v_blanking: 1126 v_border: 0
[ 84.073] (II) modeset(0): Unknown vendor-specific block f
[ 84.073] (II) modeset(0): manufacturer
[ 84.073] (II) modeset(0): ?????????.?
[ 84.073] (II) modeset(0): EDID (in hex):
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): ????????????????????????????????
[ 84.073] (II) modeset(0): Printing probed modes for output eDP-1
[ 84.073] (II) modeset(0): Modeline "1920x1080"x60.1 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 84.073] (II) modeset(0): Modeline "1920x1080"x120.0 356.38 1920 2080 2288 2656 1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[ 84.073] (II) modeset(0): Modeline "1920x1080"x119.9 266.50 1920 1944 1960 2000 1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[ 84.073] (II) modeset(0): Modeline "1920x1080"x60.0 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[ 84.073] (II) modeset(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[ 84.073] (II) modeset(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[ 84.073] (II) modeset(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[ 84.073] (II) modeset(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[ 84.073] (II) modeset(0): Modeline "1600x900"x120.0 246.00 1600 1728 1900 2200 900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "1600x900"x119.9 186.50 1600 1624 1640 1680 900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "1600x900"x59.9 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync (56.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "1600x900"x59.8 97.50 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "1400x900"x60.0 103.50 1400 1480 1624 1848 900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "1400x900"x59.9 86.50 1400 1448 1480 1560 900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "1440x810"x120.0 198.12 1440 1548 1704 1968 810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "1440x810"x119.9 151.88 1440 1464 1480 1520 810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 84.074] (II) modeset(0): Modeline "1368x768"x59.9 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "1368x768"x59.9 72.25 1368 1416 1448 1528 768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x800"x120.0 174.25 1280 1380 1516 1752 800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x800"x119.9 134.25 1280 1304 1320 1360 800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x720"x120.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x720"x120.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "1024x576"x119.9 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 84.074] (II) modeset(0): Modeline "1024x576"x119.9 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 84.074] (II) modeset(0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x600"x119.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x600"x120.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x540"x119.9 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x540"x120.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 84.074] (II) modeset(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 84.074] (II) modeset(0): Modeline "840x525"x120.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "840x525"x119.8 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 84.074] (II) modeset(0): Modeline "800x450"x119.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "800x450"x119.6 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "700x450"x119.9 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "700x450"x119.8 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 84.074] (II) modeset(0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "684x384"x119.8 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "684x384"x119.7 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x400"x119.8 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x400"x120.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x360"x119.7 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x360"x119.7 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 84.074] (II) modeset(0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 84.074] (II) modeset(0): Modeline "512x288"x120.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 84.074] (II) modeset(0): Modeline "512x288"x119.8 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "480x270"x119.3 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "480x270"x119.6 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 84.074] (II) modeset(0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 84.074] (II) modeset(0): Modeline "432x243"x119.8 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 84.074] (II) modeset(0): Modeline "432x243"x119.1 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 84.074] (II) modeset(0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 84.074] (II) modeset(0): Modeline "360x202"x119.0 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 84.074] (II) modeset(0): Modeline "360x202"x118.3 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 84.074] (II) modeset(0): Modeline "320x180"x119.7 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 84.074] (II) modeset(0): EDID for output DP-1
[ 84.132] (II) modeset(0): EDID for output HDMI-1
[ 84.135] (II) modeset(0): EDID for output HDMI-2
[ 84.135] (II) modeset(0): Output eDP-1 connected
[ 84.135] (II) modeset(0): Output DP-1 disconnected
[ 84.135] (II) modeset(0): Output HDMI-1 disconnected
[ 84.135] (II) modeset(0): Output HDMI-2 disconnected
[ 84.135] (II) modeset(0): Using exact sizes for initial modes
[ 84.135] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[ 84.135] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 84.135] (==) modeset(0): DPI set to (96, 96)
[ 84.135] (II) Loading sub module "fb"
[ 84.135] (II) LoadModule: "fb"
[ 84.135] (II) Module "fb" already built-in
[ 84.135] (II) UnloadModule: "fbdev"
[ 84.135] (II) Unloading fbdev
[ 84.136] (II) UnloadSubModule: "fbdevhw"
[ 84.136] (II) Unloading fbdevhw
[ 84.136] (II) UnloadModule: "vesa"
[ 84.136] (II) Unloading vesa
[ 84.393] (==) modeset(0): Backing store enabled
[ 84.393] (==) modeset(0): Silken mouse enabled
[ 84.480] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[ 84.481] (==) modeset(0): DPMS enabled
[ 84.481] (II) modeset(0): [DRI2] Setup complete
[ 84.481] (II) modeset(0): [DRI2] DRI driver: iris
[ 84.481] (II) modeset(0): [DRI2] VDPAU driver: va_gl
[ 84.481] (II) Initializing extension Generic Event Extension
[ 84.481] (II) Initializing extension SHAPE
[ 84.481] (II) Initializing extension MIT-SHM
[ 84.482] (II) Initializing extension XInputExtension
[ 84.483] (II) Initializing extension XTEST
[ 84.483] (II) Initializing extension BIG-REQUESTS
[ 84.483] (II) Initializing extension SYNC
[ 84.484] (II) Initializing extension XKEYBOARD
[ 84.484] (II) Initializing extension XC-MISC
[ 84.484] (II) Initializing extension SECURITY
[ 84.485] (II) Initializing extension XFIXES
[ 84.485] (II) Initializing extension RENDER
[ 84.485] (II) Initializing extension RANDR
[ 84.486] (II) Initializing extension COMPOSITE
[ 84.486] (II) Initializing extension DAMAGE
[ 84.486] (II) Initializing extension MIT-SCREEN-SAVER
[ 84.487] (II) Initializing extension DOUBLE-BUFFER
[ 84.487] (II) Initializing extension RECORD
[ 84.487] (II) Initializing extension DPMS
[ 84.487] (II) Initializing extension Present
[ 84.488] (II) Initializing extension DRI3
[ 84.488] (II) Initializing extension X-Resource
[ 84.488] (II) Initializing extension XVideo
[ 84.488] (II) Initializing extension XVideo-MotionCompensation
[ 84.488] (II) Initializing extension SELinux
[ 84.488] (II) SELinux: Disabled on system
[ 84.488] (II) Initializing extension GLX
[ 84.536] (II) AIGLX: Loaded and initialized iris
[ 84.536] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 84.536] (II) Initializing extension XFree86-VidModeExtension
[ 84.537] (II) Initializing extension XFree86-DGA
[ 84.537] (II) Initializing extension XFree86-DRI
[ 84.537] (II) Initializing extension DRI2
[ 84.539] (II) modeset(0): Damage tracking initialized
[ 84.539] (II) modeset(0): Setting screen physical size to 508 x 285
[ 85.202] (II) config/udev: Adding input device Power Button (/dev/input/event9)
[ 85.202] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 85.202] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 85.202] (II) LoadModule: "libinput"
[ 85.202] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 85.319] (II) Module libinput: vendor="X.Org Foundation"
[ 85.319] compiled for 1.21.1.11, module version = 1.4.0
[ 85.319] Module class: X.Org XInput Driver
[ 85.319] ABI class: X.Org XInput driver, version 24.4
[ 85.319] (II) Using input driver 'libinput' for 'Power Button'
[ 85.321] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 124 paused 0
[ 85.321] (**) Power Button: always reports core events
[ 85.321] (**) Option "Device" "/dev/input/event9"
[ 85.445] (II) event9 - Power Button: is tagged by udev as: Keyboard
[ 85.445] (II) event9 - Power Button: device is a keyboard
[ 85.445] (II) event9 - Power Button: device removed
[ 85.446] (**) Option "config_info" "udev:/sys//event9"
[ 85.446] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 85.446] (**) Option "xkb_model" "pc105"
[ 85.446] (**) Option "xkb_layout" "us"
[ 85.448] (II) event9 - Power Button: is tagged by udev as: Keyboard
[ 85.448] (II) event9 - Power Button: device is a keyboard
[ 85.450] (II) config/udev: Adding input device Obscured Radio Control (/dev/input/event10)
[ 85.450] (**) Obscured Radio Control: Applying InputClass "evdev keyboard catchall"
[ 85.450] (**) Obscured Radio Control: Applying InputClass "libinput keyboard catchall"
[ 85.450] (II) Using input driver 'libinput' for 'Obscured Radio Control'
[ 85.452] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 127 paused 0
[ 85.452] (**) Obscured Radio Control: always reports core events
[ 85.452] (**) Option "Device" "/dev/input/event10"
[ 85.454] (II) event10 - Obscured Radio Control: is tagged by udev as: Keyboard
[ 85.454] (II) event10 - Obscured Radio Control: device is a keyboard
[ 85.454] (II) event10 - Obscured Radio Control: device removed
[ 85.455] (**) Option "config_info" "udev:/sys//event10"
[ 85.455] (II) XINPUT: Adding extended input device "Obscured Radio Control" (type: KEYBOARD, id 7)
[ 85.455] (**) Option "xkb_model" "pc105"
[ 85.455] (**) Option "xkb_layout" "us"
[ 85.457] (II) event10 - Obscured Radio Control: is tagged by udev as: Keyboard
[ 85.457] (II) event10 - Obscured Radio Control: device is a keyboard
[ 85.458] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
[ 85.458] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 85.458] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 85.458] (II) Using input driver 'libinput' for 'Video Bus'
[ 85.459] (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 128 paused 0
[ 85.459] (**) Video Bus: always reports core events
[ 85.459] (**) Option "Device" "/dev/input/event13"
[ 85.460] (II) event13 - Video Bus: is tagged by udev as: Keyboard
[ 85.460] (II) event13 - Video Bus: device is a keyboard
[ 85.460] (II) event13 - Video Bus: device removed
[ 85.460] (**) Option "config_info" "udev:/sys//event13"
[ 85.460] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[ 85.460] (**) Option "xkb_model" "pc105"
[ 85.460] (**) Option "xkb_layout" "us"
[ 85.461] (II) event13 - Video Bus: is tagged by udev as: Keyboard
[ 85.461] (II) event13 - Video Bus: device is a keyboard
[ 85.462] (II) config/udev: Adding input device Lid Switch (/dev/input/event6)
[ 85.462] (II) No input driver specified, ignoring this device.
[ 85.462] (II) This device may have been added with another device file.
[ 85.463] (II) config/udev: Adding input device Power Button (/dev/input/event8)
[ 85.463] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 85.463] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 85.463] (II) Using input driver 'libinput' for 'Power Button'
[ 85.463] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 129 paused 0
[ 85.464] (**) Power Button: always reports core events
[ 85.464] (**) Option "Device" "/dev/input/event8"
[ 85.465] (II) event8 - Power Button: is tagged by udev as: Keyboard
[ 85.465] (II) event8 - Power Button: device is a keyboard
[ 85.465] (II) event8 - Power Button: device removed
[ 85.465] (**) Option "config_info" "udev:/sys//event8"
[ 85.465] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[ 85.465] (**) Option "xkb_model" "pc105"
[ 85.465] (**) Option "xkb_layout" "us"
[ 85.466] (II) event8 - Power Button: is tagged by udev as: Keyboard
[ 85.466] (II) event8 - Power Button: device is a keyboard
[ 85.467] (II) config/udev: Adding input device Sleep Button (/dev/input/event7)
[ 85.467] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 85.467] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 85.467] (II) Using input driver 'libinput' for 'Sleep Button'
[ 85.467] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 130 paused 0
[ 85.467] (**) Sleep Button: always reports core events
[ 85.467] (**) Option "Device" "/dev/input/event7"
[ 85.468] (II) event7 - Sleep Button: is tagged by udev as: Keyboard
[ 85.469] (II) event7 - Sleep Button: device is a keyboard
[ 85.469] (II) event7 - Sleep Button: device removed
[ 85.469] (**) Option "config_info" "udev:/sys//event7"
[ 85.469] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[ 85.469] (**) Option "xkb_model" "pc105"
[ 85.469] (**) Option "xkb_layout" "us"
[ 85.470] (II) event7 - Sleep Button: is tagged by udev as: Keyboard
[ 85.470] (II) event7 - Sleep Button: device is a keyboard
[ 85.471] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 85.471] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 85.471] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 85.471] (II) Using input driver 'libinput' for 'Obscured OpticalMouse'
[ 85.532] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 131 paused 0
[ 85.532] (**) Obscured OpticalMouse: always reports core events
[ 85.532] (**) Option "Device" "/dev/input/event3"
[ 85.537] (II) event3 - Obscured OpticalMouse: is tagged by udev as: Mouse
[ 85.537] (II) event3 - Obscured OpticalMouse: device is a pointer
[ 85.538] (II) event3 - Obscured OpticalMouse: device removed
[ 85.538] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.538] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.538] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.538] (**) Option "config_info" "udev:/sys//event3"
[ 85.538] (II) XINPUT: Adding extended input device "Obscured OpticalMouse" (type: MOUSE, id 11)
[ 85.538] (**) Option "AccelerationScheme" "none"
[ 85.538] (**) Obscured OpticalMouse: (accel) selected scheme none/0
[ 85.538] (**) Obscured OpticalMouse: (accel) acceleration factor: 2.000
[ 85.538] (**) Obscured OpticalMouse: (accel) acceleration threshold: 4
[ 85.542] (II) event3 - Obscured OpticalMouse: is tagged by udev as: Mouse
[ 85.542] (II) event3 - Obscured OpticalMouse: device is a pointer
[ 85.545] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 85.545] (II) No input driver specified, ignoring this device.
[ 85.545] (II) This device may have been added with another device file.
[ 85.547] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 85.547] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 85.547] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 85.547] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 85.549] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 132 paused 0
[ 85.549] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 85.549] (**) Option "Device" "/dev/input/event4"
[ 85.553] (II) event4 - Obscured OpticalMouse Keyboard: is tagged by udev as: Keyboard
[ 85.553] (II) event4 - Obscured OpticalMouse Keyboard: device is a keyboard
[ 85.554] (II) event4 - Obscured OpticalMouse Keyboard: device removed
[ 85.554] (II) libinput: Obscured OpticalMouse Keyboard: needs a virtual subdevice
[ 85.554] (**) Option "config_info" "udev:/sys//event4"
[ 85.554] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: MOUSE, id 12)
[ 85.554] (**) Option "AccelerationScheme" "none"
[ 85.554] (**) Obscured OpticalMouse Keyboard: (accel) selected scheme none/0
[ 85.554] (**) Obscured OpticalMouse Keyboard: (accel) acceleration factor: 2.000
[ 85.554] (**) Obscured OpticalMouse Keyboard: (accel) acceleration threshold: 4
[ 85.558] (II) event4 - Obscured OpticalMouse Keyboard: is tagged by udev as: Keyboard
[ 85.558] (II) event4 - Obscured OpticalMouse Keyboard: device is a keyboard
[ 85.561] (II) config/udev: Adding input device Obscured USB Keyboard (/dev/input/event5)
[ 85.561] (**) Obscured USB Keyboard: Applying InputClass "evdev keyboard catchall"
[ 85.561] (**) Obscured USB Keyboard: Applying InputClass "libinput keyboard catchall"
[ 85.561] (II) Using input driver 'libinput' for 'Obscured USB Keyboard'
[ 85.562] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 133 paused 0
[ 85.563] (**) Obscured USB Keyboard: always reports core events
[ 85.563] (**) Option "Device" "/dev/input/event5"
[ 85.565] (II) event5 - Obscured USB Keyboard: is tagged by udev as: Keyboard
[ 85.565] (II) event5 - Obscured USB Keyboard: device is a keyboard
[ 85.566] (II) event5 - Obscured USB Keyboard: device removed
[ 85.566] (**) Option "config_info" "udev:/sys//event5"
[ 85.566] (II) XINPUT: Adding extended input device "Obscured USB Keyboard" (type: KEYBOARD, id 13)
[ 85.566] (**) Option "xkb_model" "pc105"
[ 85.566] (**) Option "xkb_layout" "us"
[ 85.568] (II) event5 - Obscured USB Keyboard: is tagged by udev as: Keyboard
[ 85.568] (II) event5 - Obscured USB Keyboard: device is a keyboard
[ 85.570] (II) config/udev: Adding input device Obscured Touchpad Mouse (/dev/input/event1)
[ 85.570] (**) Obscured Touchpad Mouse: Applying InputClass "evdev pointer catchall"
[ 85.570] (**) Obscured Touchpad Mouse: Applying InputClass "libinput pointer catchall"
[ 85.570] (II) Using input driver 'libinput' for 'Obscured Touchpad Mouse'
[ 85.571] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 134 paused 0
[ 85.571] (**) Obscured Touchpad Mouse: always reports core events
[ 85.571] (**) Option "Device" "/dev/input/event1"
[ 85.572] (II) event1 - Obscured Touchpad Mouse: is tagged by udev as: Mouse
[ 85.573] (II) event1 - Obscured Touchpad Mouse: device is a pointer
[ 85.573] (II) event1 - Obscured Touchpad Mouse: device removed
[ 85.573] (II) libinput: Obscured Touchpad Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.573] (II) libinput: Obscured Touchpad Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.573] (II) libinput: Obscured Touchpad Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.573] (**) Option "config_info" "udev:/sys//event1"
[ 85.573] (II) XINPUT: Adding extended input device "Obscured Touchpad Mouse" (type: MOUSE, id 14)
[ 85.573] (**) Option "AccelerationScheme" "none"
[ 85.573] (**) Obscured Touchpad Mouse: (accel) selected scheme none/0
[ 85.573] (**) Obscured Touchpad Mouse: (accel) acceleration factor: 2.000
[ 85.573] (**) Obscured Touchpad Mouse: (accel) acceleration threshold: 4
[ 85.574] (II) event1 - Obscured Touchpad Mouse: is tagged by udev as: Mouse
[ 85.574] (II) event1 - Obscured Touchpad Mouse: device is a pointer
[ 85.575] (II) config/udev: Adding input device Obscured Touchpad Mouse (/dev/input/mouse0)
[ 85.575] (II) No input driver specified, ignoring this device.
[ 85.575] (II) This device may have been added with another device file.
[ 85.576] (II) config/udev: Adding input device Obscured Touchpad Touchpad (/dev/input/event2)
[ 85.576] (**) Obscured Touchpad Touchpad: Applying InputClass "evdev touchpad catchall"
[ 85.576] (**) Obscured Touchpad Touchpad: Applying InputClass "libinput touchpad catchall"
[ 85.576] (**) Obscured Touchpad Touchpad: Applying InputClass "My Touchpad"
[ 85.576] (II) Using input driver 'libinput' for 'Obscured Touchpad Touchpad'
[ 85.577] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 135 paused 0
[ 85.577] (**) Obscured Touchpad Touchpad: always reports core events
[ 85.577] (**) Option "Device" "/dev/input/event2"
[ 85.578] (II) event2 - Obscured Touchpad Touchpad: is tagged by udev as: Touchpad
[ 85.580] (II) event2 - Obscured Touchpad Touchpad: device is a touchpad
[ 85.580] (II) event2 - Obscured Touchpad Touchpad: device removed
[ 85.580] (**) Option "Tapping" "true"
[ 85.580] (II) libinput: Obscured Touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.580] (II) libinput: Obscured Touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.580] (II) libinput: Obscured Touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 85.580] (**) Option "NaturalScrolling" "true"
[ 85.580] (**) Option "config_info" "udev:/sys//event2"
[ 85.580] (II) XINPUT: Adding extended input device "Obscured Touchpad Touchpad" (type: TOUCHPAD, id 15)
[ 85.581] (**) Option "AccelerationScheme" "none"
[ 85.581] (**) Obscured Touchpad Touchpad: (accel) selected scheme none/0
[ 85.581] (**) Obscured Touchpad Touchpad: (accel) acceleration factor: 2.000
[ 85.581] (**) Obscured Touchpad Touchpad: (accel) acceleration threshold: 4
[ 85.583] (II) event2 - Obscured Touchpad Touchpad: is tagged by udev as: Touchpad
[ 85.584] (II) event2 - Obscured Touchpad Touchpad: device is a touchpad
[ 85.585] (II) config/udev: Adding input device Obscured Touchpad Touchpad (/dev/input/mouse1)
[ 85.585] (**) Obscured Touchpad Touchpad: Applying InputClass "My Touchpad"
[ 85.585] (II) Using input driver 'libinput' for 'Obscured Touchpad Touchpad'
[ 85.585] (**) Obscured Touchpad Touchpad: always reports core events
[ 85.585] (**) Option "Device" "/dev/input/mouse1"
[ 85.585] (EE) xf86OpenSerial: Cannot open device /dev/input/mouse1
Permission denied.
[ 85.585] (II) mouse1: opening input device '/dev/input/mouse1' failed (Permission denied).
[ 85.585] (II) mouse1 - failed to create input device '/dev/input/mouse1'.
[ 85.585] (EE) libinput: Obscured Touchpad Touchpad: Failed to create a device for /dev/input/mouse1
[ 85.585] (EE) PreInit returned 2 for "Obscured Touchpad Touchpad"
[ 85.585] (II) UnloadModule: "libinput"
[ 85.586] (II) config/udev: Adding input device Obscured Headphone (/dev/input/event14)
[ 85.586] (II) No input driver specified, ignoring this device.
[ 85.586] (II) This device may have been added with another device file.
[ 85.586] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=3 (/dev/input/event15)
[ 85.586] (II) No input driver specified, ignoring this device.
[ 85.586] (II) This device may have been added with another device file.
[ 85.587] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=7 (/dev/input/event16)
[ 85.587] (II) No input driver specified, ignoring this device.
[ 85.587] (II) This device may have been added with another device file.
[ 85.587] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=8 (/dev/input/event17)
[ 85.587] (II) No input driver specified, ignoring this device.
[ 85.587] (II) This device may have been added with another device file.
[ 85.588] (II) config/udev: Adding input device Obscured hotkeys (/dev/input/event12)
[ 85.588] (**) Obscured hotkeys: Applying InputClass "evdev keyboard catchall"
[ 85.588] (**) Obscured hotkeys: Applying InputClass "libinput keyboard catchall"
[ 85.588] (II) Using input driver 'libinput' for 'Obscured hotkeys'
[ 85.589] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 136 paused 0
[ 85.589] (**) Obscured hotkeys: always reports core events
[ 85.589] (**) Option "Device" "/dev/input/event12"
[ 85.590] (II) event12 - Obscured hotkeys: is tagged by udev as: Keyboard
[ 85.590] (II) event12 - Obscured hotkeys: device is a keyboard
[ 85.590] (II) event12 - Obscured hotkeys: device removed
[ 85.590] (**) Option "config_info" "udev:/sys//event12"
[ 85.590] (II) XINPUT: Adding extended input device "Obscured hotkeys" (type: KEYBOARD, id 16)
[ 85.590] (**) Option "xkb_model" "pc105"
[ 85.590] (**) Option "xkb_layout" "us"
[ 85.591] (II) event12 - Obscured hotkeys: is tagged by udev as: Keyboard
[ 85.591] (II) event12 - Obscured hotkeys: device is a keyboard
[ 85.592] (II) config/udev: Adding input device Obscured Built-in keyboard (/dev/input/event0)
[ 85.592] (**) Obscured Built-in keyboard: Applying InputClass "evdev keyboard catchall"
[ 85.592] (**) Obscured Built-in keyboard: Applying InputClass "libinput keyboard catchall"
[ 85.592] (II) Using input driver 'libinput' for 'Obscured Built-in keyboard'
[ 85.593] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 137 paused 0
[ 85.593] (**) Obscured Built-in keyboard: always reports core events
[ 85.593] (**) Option "Device" "/dev/input/event0"
[ 85.594] (II) event0 - Obscured Built-in keyboard: is tagged by udev as: Keyboard
[ 85.594] (II) event0 - Obscured Built-in keyboard: device is a keyboard
[ 85.595] (II) event0 - Obscured Built-in keyboard: device removed
[ 85.595] (**) Option "config_info" "udev:/sys//event0"
[ 85.595] (II) XINPUT: Adding extended input device "Obscured Built-in keyboard" (type: KEYBOARD, id 17)
[ 85.595] (**) Option "xkb_model" "pc105"
[ 85.595] (**) Option "xkb_layout" "us"
[ 85.596] (II) event0 - Obscured Built-in keyboard: is tagged by udev as: Keyboard
[ 85.596] (II) event0 - Obscured Built-in keyboard: device is a keyboard
[ 85.597] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[ 85.598] (II) No input driver specified, ignoring this device.
[ 85.598] (II) This device may have been added with another device file.
[ 85.612] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 85.612] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 85.612] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 85.612] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[ 85.612] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 85.612] (**) Option "Device" "/dev/input/event4"
[ 85.612] (II) libinput: Obscured OpticalMouse Keyboard: is a virtual subdevice
[ 85.612] (**) Option "config_info" "udev:/sys//event4"
[ 85.612] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: KEYBOARD, id 18)
[ 85.612] (**) Option "xkb_model" "pc105"
[ 85.612] (**) Option "xkb_layout" "us"
[ 87.332] (II) modeset(0): Allocate new frame buffer 1280x720 stride
[ 95.697] (II) modeset(0): EDID vendor "manufacturer", prod id ?????
[ 95.697] (II) modeset(0): Printing DDC gathered Modelines:
[ 95.697] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 104.675] (**) Option "fd" "124"
[ 104.675] (II) event9 - Power Button: device removed
[ 104.675] (**) Option "fd" "127"
[ 104.676] (II) event10 - Obscured Radio Control: device removed
[ 104.676] (**) Option "fd" "128"
[ 104.676] (II) event13 - Video Bus: device removed
[ 104.677] (**) Option "fd" "129"
[ 104.677] (II) event8 - Power Button: device removed
[ 104.677] (**) Option "fd" "130"
[ 104.677] (II) event7 - Sleep Button: device removed
[ 104.677] (**) Option "fd" "131"
[ 104.678] (II) event3 - Obscured OpticalMouse: device removed
[ 104.678] (**) Option "fd" "132"
[ 104.679] (**) Option "fd" "133"
[ 104.679] (II) event5 - Obscured USB Keyboard: device removed
[ 104.679] (**) Option "fd" "134"
[ 104.679] (II) event1 - Obscured Touchpad Mouse: device removed
[ 104.680] (**) Option "fd" "135"
[ 104.680] (II) event2 - Obscured Touchpad Touchpad: device removed
[ 104.680] (**) Option "fd" "136"
[ 104.680] (II) event12 - Obscured hotkeys: device removed
[ 104.681] (**) Option "fd" "137"
[ 104.681] (II) event0 - Obscured Built-in keyboard: device removed
[ 104.681] (**) Option "fd" "132"
[ 104.681] (II) event4 - Obscured OpticalMouse Keyboard: device removed
[ 104.681] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 104.744] (II) systemd-logind: got pause for 13:74
[ 104.744] (II) systemd-logind: got pause for 13:68
[ 104.744] (II) systemd-logind: got pause for 13:72
[ 104.744] (II) systemd-logind: got pause for 13:64
[ 104.744] (II) systemd-logind: got pause for 13:71
[ 104.744] (II) systemd-logind: got pause for 13:66
[ 104.744] (II) systemd-logind: got pause for 13:76
[ 104.744] (II) systemd-logind: got pause for 13:73
[ 104.744] (II) systemd-logind: got pause for 13:65
[ 104.744] (II) systemd-logind: got pause for 13:77
[ 104.744] (II) systemd-logind: got pause for 13:67
[ 104.744] (II) systemd-logind: got pause for 13:69
[ 158.162] (II) config/udev: removing device Obscured OpticalMouse
[ 158.167] (II) UnloadModule: "libinput"
[ 158.167] (II) systemd-logind: releasing fd for 13:67
[ 158.248] (II) config/udev: removing device Obscured OpticalMouse Keyboard
[ 158.249] (II) UnloadModule: "libinput"
[ 158.249] (II) systemd-logind: not releasing fd for 13:68, still in use
[ 158.249] (II) config/udev: removing device Obscured OpticalMouse Keyboard
[ 158.250] (II) UnloadModule: "libinput"
[ 158.250] (II) systemd-logind: releasing fd for 13:68
[ 160.359] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 160.359] (II) No input driver specified, ignoring this device.
[ 160.359] (II) This device may have been added with another device file.
[ 160.413] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 160.413] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 160.413] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 160.413] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 160.414] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 127 paused 1
[ 160.414] (II) systemd-logind: releasing fd for 13:68
[ 160.489] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 160.489] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 160.490] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 160.490] (II) Using input driver 'libinput' for 'Obscured OpticalMouse'
[ 160.548] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 127 paused 1
[ 160.549] (II) systemd-logind: releasing fd for 13:67
[ 162.392] (II) systemd-logind: got resume for 13:74
[ 162.408] (II) systemd-logind: got resume for 13:72
[ 162.424] (II) systemd-logind: got resume for 13:64
[ 162.440] (II) systemd-logind: got resume for 13:71
[ 162.456] (II) systemd-logind: got resume for 13:66
[ 162.472] (II) systemd-logind: got resume for 13:76
[ 162.488] (II) systemd-logind: got resume for 13:73
[ 162.489] (II) systemd-logind: got resume for 226:0
[ 162.489] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 162.571] (II) modeset(0): EDID vendor "manufacturer", prod id ?????
[ 162.571] (II) modeset(0): Printing DDC gathered Modelines:
[ 162.571] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 162.722] (II) modeset(0): EDID vendor "manufacturer", prod id ?????
[ 162.722] (II) modeset(0): Printing DDC gathered Modelines:
[ 162.722] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 162.808] (II) event9 - Power Button: is tagged by udev as: Keyboard
[ 162.808] (II) event9 - Power Button: device is a keyboard
[ 162.811] (II) event10 - Obscured Radio Control: is tagged by udev as: Keyboard
[ 162.811] (II) event10 - Obscured Radio Control: device is a keyboard
[ 162.814] (II) event8 - Power Button: is tagged by udev as: Keyboard
[ 162.814] (II) event8 - Power Button: device is a keyboard
[ 162.817] (II) event7 - Sleep Button: is tagged by udev as: Keyboard
[ 162.817] (II) event7 - Sleep Button: device is a keyboard
[ 162.820] (II) event2 - Obscured Touchpad Touchpad: is tagged by udev as: Touchpad
[ 162.823] (II) event2 - Obscured Touchpad Touchpad: device is a touchpad
[ 162.826] (II) event12 - Obscured hotkeys: is tagged by udev as: Keyboard
[ 162.826] (II) event12 - Obscured hotkeys: device is a keyboard
[ 162.829] (II) event0 - Obscured Built-in keyboard: is tagged by udev as: Keyboard
[ 162.829] (II) event0 - Obscured Built-in keyboard: device is a keyboard
[ 162.831] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 162.832] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 163 paused 0
[ 162.832] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 162.832] (**) Option "Device" "/dev/input/event4"
[ 162.835] (II) event4 - Obscured OpticalMouse Keyboard: is tagged by udev as: Keyboard
[ 162.835] (II) event4 - Obscured OpticalMouse Keyboard: device is a keyboard
[ 162.835] (II) event4 - Obscured OpticalMouse Keyboard: device removed
[ 162.835] (II) libinput: Obscured OpticalMouse Keyboard: needs a virtual subdevice
[ 162.835] (**) Option "config_info" "udev:/sys//event4"
[ 162.835] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: MOUSE, id 11)
[ 162.836] (**) Option "AccelerationScheme" "none"
[ 162.836] (**) Obscured OpticalMouse Keyboard: (accel) selected scheme none/0
[ 162.836] (**) Obscured OpticalMouse Keyboard: (accel) acceleration factor: 2.000
[ 162.836] (**) Obscured OpticalMouse Keyboard: (accel) acceleration threshold: 4
[ 162.839] (II) event4 - Obscured OpticalMouse Keyboard: is tagged by udev as: Keyboard
[ 162.839] (II) event4 - Obscured OpticalMouse Keyboard: device is a keyboard
[ 162.840] (II) Using input driver 'libinput' for 'Obscured OpticalMouse'
[ 162.900] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 164 paused 0
[ 162.901] (**) Obscured OpticalMouse: always reports core events
[ 162.901] (**) Option "Device" "/dev/input/event3"
[ 162.905] (II) event3 - Obscured OpticalMouse: is tagged by udev as: Mouse
[ 162.905] (II) event3 - Obscured OpticalMouse: device is a pointer
[ 162.906] (II) event3 - Obscured OpticalMouse: device removed
[ 162.906] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 162.906] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 162.906] (II) libinput: Obscured OpticalMouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 162.906] (**) Option "config_info" "udev:/sys//event3"
[ 162.906] (II) XINPUT: Adding extended input device "Obscured OpticalMouse" (type: MOUSE, id 12)
[ 162.907] (**) Option "AccelerationScheme" "none"
[ 162.907] (**) Obscured OpticalMouse: (accel) selected scheme none/0
[ 162.907] (**) Obscured OpticalMouse: (accel) acceleration factor: 2.000
[ 162.907] (**) Obscured OpticalMouse: (accel) acceleration threshold: 4
[ 162.912] (II) event3 - Obscured OpticalMouse: is tagged by udev as: Mouse
[ 162.912] (II) event3 - Obscured OpticalMouse: device is a pointer
[ 162.914] (II) systemd-logind: got resume for 13:65
[ 162.916] (II) event1 - Obscured Touchpad Mouse: is tagged by udev as: Mouse
[ 162.917] (II) event1 - Obscured Touchpad Mouse: device is a pointer
[ 162.917] (II) systemd-logind: got resume for 13:77
[ 162.920] (II) event13 - Video Bus: is tagged by udev as: Keyboard
[ 162.920] (II) event13 - Video Bus: device is a keyboard
[ 162.921] (II) systemd-logind: got resume for 13:69
[ 162.924] (II) event5 - Obscured USB Keyboard: is tagged by udev as: Keyboard
[ 162.924] (II) event5 - Obscured USB Keyboard: device is a keyboard
[ 162.926] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 162.926] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 162.926] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 162.926] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[ 162.926] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 162.926] (**) Option "Device" "/dev/input/event4"
[ 162.926] (II) libinput: Obscured OpticalMouse Keyboard: is a virtual subdevice
[ 162.926] (**) Option "config_info" "udev:/sys//event4"
[ 162.926] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: KEYBOARD, id 18)
[ 162.926] (**) Option "xkb_model" "pc105"
[ 162.926] (**) Option "xkb_layout" "us"
[ 162.926] (WW) Option "xkb_variant" requires a string value
[ 162.926] (WW) Option "xkb_options" requires a string value
[ 165.152] (**) Option "fd" "134"
[ 165.152] (II) event9 - Power Button: device removed
[ 165.153] (**) Option "fd" "127"
[ 165.153] (II) event10 - Obscured Radio Control: device removed
[ 165.153] (**) Option "fd" "128"
[ 165.153] (II) event8 - Power Button: device removed
[ 165.153] (**) Option "fd" "130"
[ 165.153] (II) event7 - Sleep Button: device removed
[ 165.153] (**) Option "fd" "131"
[ 165.153] (II) event2 - Obscured Touchpad Touchpad: device removed
[ 165.153] (**) Option "fd" "132"
[ 165.153] (II) event12 - Obscured hotkeys: device removed
[ 165.153] (**) Option "fd" "129"
[ 165.153] (II) event0 - Obscured Built-in keyboard: device removed
[ 165.153] (**) Option "fd" "163"
[ 165.153] (**) Option "fd" "164"
[ 165.153] (II) event3 - Obscured OpticalMouse: device removed
[ 165.153] (**) Option "fd" "133"
[ 165.153] (II) event1 - Obscured Touchpad Mouse: device removed
[ 165.153] (**) Option "fd" "135"
[ 165.153] (II) event13 - Video Bus: device removed
[ 165.153] (**) Option "fd" "136"
[ 165.153] (II) event5 - Obscured USB Keyboard: device removed
[ 165.153] (**) Option "fd" "163"
[ 165.153] (II) event4 - Obscured OpticalMouse Keyboard: device removed
[ 165.170] (II) UnloadModule: "libinput"
[ 165.170] (II) systemd-logind: not releasing fd for 13:68, still in use
[ 165.170] (II) UnloadModule: "libinput"
[ 165.170] (II) systemd-logind: releasing fd for 13:69
[ 165.192] (II) UnloadModule: "libinput"
[ 165.192] (II) systemd-logind: releasing fd for 13:77
[ 165.236] (II) UnloadModule: "libinput"
[ 165.236] (II) systemd-logind: releasing fd for 13:65
[ 165.288] (II) UnloadModule: "libinput"
[ 165.288] (II) systemd-logind: releasing fd for 13:67
[ 165.320] (II) UnloadModule: "libinput"
[ 165.320] (II) systemd-logind: releasing fd for 13:68
[ 165.344] (II) UnloadModule: "libinput"
[ 165.344] (II) systemd-logind: releasing fd for 13:64
[ 165.360] (II) UnloadModule: "libinput"
[ 165.360] (II) systemd-logind: releasing fd for 13:76
[ 165.400] (II) UnloadModule: "libinput"
[ 165.400] (II) systemd-logind: releasing fd for 13:66
[ 165.444] (II) UnloadModule: "libinput"
[ 165.444] (II) systemd-logind: releasing fd for 13:71
[ 165.464] (II) UnloadModule: "libinput"
[ 165.464] (II) systemd-logind: releasing fd for 13:72
[ 165.492] (II) UnloadModule: "libinput"
[ 165.492] (II) systemd-logind: releasing fd for 13:74
[ 165.549] (II) UnloadModule: "libinput"
[ 165.549] (II) systemd-logind: releasing fd for 13:73
[ 165.607] (II) Server terminated successfully (0). Closing log file.
seatd setup as per OP.
And for the second time I remind that Debian's package works as expected. The bug was introduced by the seatd integration and is either in the patch, or in libseat1.
Note that there there are significant differences in your two use cases which seemingly have the same misbehaviour.
Wrong. I repeated the test, technically speaking, 4 times:
only elogind with evdev;
only elogind with libinput;
only seatd with evdev;
both elogind(for video) and seatd(for input) at the same time with evdev.
Result is always the same.
evdev seemingly has its issues during its re-loading for the device, whereas libinput seemingly succeeds re-loading the keyboard.
Both fail in the same way. The log isn't different. The error message of libinput is simply
(EE) libinput: Obscured OpticalMouse Keyboard: Failed to create a device for /dev/input/event4
Whereas evdev complains about a file descriptor. It is almost like Xorg does not receive write permissions.
[ 650.701] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 650.701] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 650.701] (II) Using input driver 'libinput' for 'Obscured OpticalMouse Keyboard'
[ 650.701] (II) seatd_libseat try open /dev/input/event4
[ 650.702] (II) seatd_libseat opened /dev/input/event4 (128:128)
[ 650.702] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 650.702] (**) Option "Device" "/dev/input/event4"
[ 650.702] (II) event4 - not using input device '/dev/input/event4'.
[ 650.702] (EE) libinput: Obscured OpticalMouse Keyboard: Failed to create a device for /dev/input/event4
[ 650.702] (EE) PreInit returned 2 for "Obscured OpticalMouse Keyboard"
[ 650.702] (II) UnloadModule: "libinput"
[ 650.702] (II) seatd_libseat try close /dev/input/event4 (128:128)
[ 650.724] (II) seatd_libseat event handler
[ 650.724] (II) seatd_libseat handled 2 events
It's exactly the same for the mouse as well as for its keyboard. I am positive we need a verbose log from either libinput or evdev to see exactly why it fails to create the device. How, though? I don't see a --debug option for Xorg.
To potentially narrow down the search, I repeated the test with the mouse initially unplugged at all. So I started X11, switched to another VT, plugged the mouse, switched to X11 and it didn't pick the mouse up.
Obscured OpticalMouse is the the device. To be honest there is nothing valuable in this log apart from what I have already provided. Also, can you reproduce?
[ 6001.585]
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[ 6001.585] Current Operating System: Linux hostname 6.6.56 #6 SMP PREEMPT_DYNAMIC Tue Oct 15 20:18:05 EEST 2024 x86_64
[ 6001.585] Kernel command line: BOOT_IMAGE=/vmlinuz root=UUID=obscured ro loglevel=0 net.ifnames=1
[ 6001.586] xorg-server 2:21.1.13-2devuan1 ([url]https://www.devuan.org/os/community[/url])
[ 6001.586] Current version of pixman: 0.42.2
[ 6001.586] Before reporting problems, check [url]http://wiki.x.org[/url]
to make sure that you have the latest version.
[ 6001.586] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 6001.594] (==) Log file: "/home/idle/.local/share/xorg/Xorg.0.log", Time: Thu Oct 17 15:40:02 2024
[ 6001.596] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 6001.598] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 6001.598] (==) No Layout section. Using the first Screen section.
[ 6001.598] (==) No screen section available. Using defaults.
[ 6001.598] (**) |-->Screen "Default Screen Section" (0)
[ 6001.598] (**) | |-->Monitor "<default monitor>"
[ 6001.598] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 6001.598] (**) Allowing byte-swapped clients
[ 6001.598] (==) Automatically adding devices
[ 6001.598] (==) Automatically enabling devices
[ 6001.598] (==) Automatically adding GPU devices
[ 6001.598] (==) Automatically binding GPU devices
[ 6001.598] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 6001.598] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 6001.598] Entry deleted from font path.
[ 6001.598] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 6001.598] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 6001.598] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 6001.598] (II) Loader magic: 0x560cd1a88ec0
[ 6001.598] (II) Module ABI versions:
[ 6001.598] X.Org ANSI C Emulation: 0.4
[ 6001.598] X.Org Video Driver: 25.2
[ 6001.598] X.Org XInput driver : 24.4
[ 6001.598] X.Org Server Extension : 10.0
[ 6001.598] (++) using VT number 4
[ 6001.598] (II) seatd_libseat init
[ 6001.605] (II) [libseat/libseat.c:62] Seat opened with backend 'logind'
[ 6001.605] (II) seatd_libseat enable
[ 6001.605] (II) seatd_libseat handled 1 events
[ 6001.606] (II) seatd_libseat handled 1 events
[ 6001.706] (II) seatd_libseat client activated
[ 6001.708] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 6001.708] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[ 6001.708] (II) seatd_libseat try open graphics /dev/dri/card0
[ 6001.709] (DB) [libseat/backend/logind.c:161] DRM device opened, current total: 1
[ 6001.709] (II) seatd_libseat opened graphics: /dev/dri/card0 (12:12)
[ 6001.716] (--) PCI:*(0@0:2:0) 8086:5921:1043:12d1 rev 6, Mem @ 0xee000000/16777216, 0xd0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[ 6001.716] (II) LoadModule: "glx"
[ 6001.716] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 6001.719] (II) Module glx: vendor="X.Org Foundation"
[ 6001.719] compiled for 1.21.1.13, module version = 1.0.0
[ 6001.719] ABI class: X.Org Server Extension, version 10.0
[ 6001.719] (==) Matched modesetting as autoconfigured driver 0
[ 6001.719] (==) Matched fbdev as autoconfigured driver 1
[ 6001.719] (==) Matched vesa as autoconfigured driver 2
[ 6001.719] (==) Assigned the driver to the xf86ConfigLayout
[ 6001.719] (II) LoadModule: "modesetting"
[ 6001.719] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 6001.719] (II) Module modesetting: vendor="X.Org Foundation"
[ 6001.719] compiled for 1.21.1.13, module version = 1.21.1
[ 6001.719] Module class: X.Org Video Driver
[ 6001.719] ABI class: X.Org Video Driver, version 25.2
[ 6001.719] (II) LoadModule: "fbdev"
[ 6001.720] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 6001.720] (II) Module fbdev: vendor="X.Org Foundation"
[ 6001.720] compiled for 1.21.1.3, module version = 0.5.0
[ 6001.720] Module class: X.Org Video Driver
[ 6001.720] ABI class: X.Org Video Driver, version 25.2
[ 6001.720] (II) LoadModule: "vesa"
[ 6001.720] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 6001.720] (II) Module vesa: vendor="X.Org Foundation"
[ 6001.720] compiled for 1.21.1.9, module version = 2.6.0
[ 6001.720] Module class: X.Org Video Driver
[ 6001.720] ABI class: X.Org Video Driver, version 25.2
[ 6001.720] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 6001.720] (II) FBDEV: driver for framebuffer: fbdev
[ 6001.720] (II) VESA: driver for VESA chipsets: vesa
[ 6001.720] xf86EnableIO: failed to enable I/O ports 0000-03ff (Operation not permitted)
[ 6001.721] (II) modeset(0): using drv /dev/dri/card0
[ 6001.721] (WW) Falling back to old probe method for fbdev
[ 6001.721] (II) Loading sub module "fbdevhw"
[ 6001.721] (II) LoadModule: "fbdevhw"
[ 6001.721] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 6001.721] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 6001.721] compiled for 1.21.1.13, module version = 0.0.2
[ 6001.721] ABI class: X.Org Video Driver, version 25.2
[ 6001.721] (EE) open /dev/fb0: Permission denied
[ 6001.721] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 6001.721] (II) modeset(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 6001.721] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 6001.721] (==) modeset(0): RGB weight 888
[ 6001.721] (==) modeset(0): Default visual is TrueColor
[ 6001.721] (II) Loading sub module "glamoregl"
[ 6001.721] (II) LoadModule: "glamoregl"
[ 6001.721] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 6001.764] (II) Module glamoregl: vendor="X.Org Foundation"
[ 6001.764] compiled for 1.21.1.13, module version = 1.0.1
[ 6001.764] ABI class: X.Org ANSI C Emulation, version 0.4
[ 6001.781] (II) modeset(0): glamor X acceleration enabled on Mesa :D
[ 6001.781] (II) modeset(0): glamor initialized
[ 6001.781] (==) modeset(0): VariableRefresh: disabled
[ 6001.781] (==) modeset(0): AsyncFlipSecondaries: disabled
[ 6001.783] (II) modeset(0): Output eDP-1 has no monitor section
[ 6001.783] (II) modeset(0): Output DP-1 has no monitor section
[ 6001.839] (II) modeset(0): Output HDMI-1 has no monitor section
[ 6001.843] (II) modeset(0): Output HDMI-2 has no monitor section
[ 6001.845] (II) modeset(0): EDID for output eDP-1
[ 6001.845] (II) modeset(0): Manufacturer: D: Model: ;) Serial#: 0
[ 6001.845] (II) modeset(0): Year: 201? Week: ?3
[ 6001.845] (II) modeset(0): EDID Version: 1.4
[ 6001.845] (II) modeset(0): Digital Display Input
[ 6001.845] (II) modeset(0): 6 bits per channel
[ 6001.845] (II) modeset(0): Digital interface is DisplayPort
[ 6001.845] (II) modeset(0): Max Image Size [cm]: horiz.: 34 vert.: 19
[ 6001.845] (II) modeset(0): Gamma: 2.20
[ 6001.845] (II) modeset(0): No DPMS capabilities specified
[ 6001.845] (II) modeset(0): Supported color encodings: RGB 4:4:4
[ 6001.845] (II) modeset(0): First detailed timing is preferred mode
[ 6001.845] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[ 6001.845] (II) modeset(0): redX: 0.575 redY: 0.345 greenX: 0.340 greenY: 0.560
[ 6001.845] (II) modeset(0): blueX: 0.156 blueY: 0.123 whiteX: 0.313 whiteY: 0.329
[ 6001.845] (II) modeset(0): Manufacturer's mask: 0
[ 6001.845] (II) modeset(0): Supported detailed timing:
[ 6001.845] (II) modeset(0): clock: 142.0 MHz Image Size: 344 x 193 mm
[ 6001.845] (II) modeset(0): h_active: 1920 h_sync: 2028 h_sync_end 2076 h_blank_end 2100 h_border: 0
[ 6001.845] (II) modeset(0): v_active: 1080 v_sync: 1090 v_sync_end 1100 v_blanking: 1126 v_border: 0
[ 6001.845] (II) modeset(0): Unknown vendor-specific block f
[ 6001.845] (II) modeset(0): :D
[ 6001.845] (II) modeset(0): D:
[ 6001.845] (II) modeset(0): EDID (in hex):
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.845] (II) modeset(0): ????????????????????????????????
[ 6001.846] (II) modeset(0): Printing probed modes for output eDP-1
[ 6001.846] (II) modeset(0): Modeline "1920x1080"x60.1 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 6001.846] (II) modeset(0): Modeline "1920x1080"x120.0 356.38 1920 2080 2288 2656 1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1920x1080"x119.9 266.50 1920 1944 1960 2000 1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1920x1080"x60.0 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1600x900"x120.0 246.00 1600 1728 1900 2200 900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1600x900"x119.9 186.50 1600 1624 1640 1680 900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1600x900"x59.9 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync (56.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1600x900"x59.8 97.50 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.4 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1400x900"x60.0 103.50 1400 1480 1624 1848 900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1400x900"x59.9 86.50 1400 1448 1480 1560 900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1440x810"x120.0 198.12 1440 1548 1704 1968 810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1440x810"x119.9 151.88 1440 1464 1480 1520 810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1368x768"x59.9 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1368x768"x59.9 72.25 1368 1416 1448 1528 768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x800"x120.0 174.25 1280 1380 1516 1752 800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x800"x119.9 134.25 1280 1304 1320 1360 800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x720"x120.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x720"x120.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 6001.846] (II) modeset(0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1024x576"x119.9 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1024x576"x119.9 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 6001.846] (II) modeset(0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x600"x119.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x600"x120.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x540"x119.9 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x540"x120.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 6001.846] (II) modeset(0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 6001.846] (II) modeset(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 6001.846] (II) modeset(0): Modeline "840x525"x120.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "840x525"x119.8 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 6001.846] (II) modeset(0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 6001.846] (II) modeset(0): Modeline "800x450"x119.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "800x450"x119.6 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 6001.846] (II) modeset(0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "700x450"x119.9 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "700x450"x119.8 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 6001.846] (II) modeset(0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 6001.846] (II) modeset(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 6001.846] (II) modeset(0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 6001.846] (II) modeset(0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 6001.846] (II) modeset(0): Modeline "684x384"x119.8 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 6001.846] (II) modeset(0): Modeline "684x384"x119.7 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 6001.846] (II) modeset(0): Modeline "640x400"x119.8 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 6001.847] (II) modeset(0): Modeline "640x400"x120.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 6001.847] (II) modeset(0): Modeline "640x360"x119.7 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 6001.847] (II) modeset(0): Modeline "640x360"x119.7 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 6001.847] (II) modeset(0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 6001.847] (II) modeset(0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 6001.847] (II) modeset(0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 6001.847] (II) modeset(0): Modeline "512x288"x120.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 6001.847] (II) modeset(0): Modeline "512x288"x119.8 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 6001.847] (II) modeset(0): Modeline "480x270"x119.3 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 6001.847] (II) modeset(0): Modeline "480x270"x119.6 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 6001.847] (II) modeset(0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 6001.847] (II) modeset(0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 6001.847] (II) modeset(0): Modeline "432x243"x119.8 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 6001.847] (II) modeset(0): Modeline "432x243"x119.1 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 6001.847] (II) modeset(0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 6001.847] (II) modeset(0): Modeline "360x202"x119.0 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 6001.847] (II) modeset(0): Modeline "360x202"x118.3 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 6001.847] (II) modeset(0): Modeline "320x180"x119.7 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 6001.847] (II) modeset(0): Modeline "320x180"x118.6 8.88 320 344 360 400 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[ 6001.847] (II) modeset(0): EDID for output DP-1
[ 6001.903] (II) modeset(0): EDID for output HDMI-1
[ 6001.906] (II) modeset(0): EDID for output HDMI-2
[ 6001.906] (II) modeset(0): Output eDP-1 connected
[ 6001.906] (II) modeset(0): Output DP-1 disconnected
[ 6001.906] (II) modeset(0): Output HDMI-1 disconnected
[ 6001.906] (II) modeset(0): Output HDMI-2 disconnected
[ 6001.906] (II) modeset(0): Using exact sizes for initial modes
[ 6001.906] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[ 6001.906] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 6001.906] (==) modeset(0): DPI set to (96, 96)
[ 6001.906] (II) Loading sub module "fb"
[ 6001.906] (II) LoadModule: "fb"
[ 6001.906] (II) Module "fb" already built-in
[ 6001.906] (II) UnloadModule: "fbdev"
[ 6001.906] (II) Unloading fbdev
[ 6001.906] (II) UnloadSubModule: "fbdevhw"
[ 6001.907] (II) Unloading fbdevhw
[ 6001.907] (II) UnloadModule: "vesa"
[ 6001.907] (II) Unloading vesa
[ 6001.933] (==) modeset(0): Backing store enabled
[ 6001.933] (==) modeset(0): Silken mouse enabled
[ 6002.013] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[ 6002.013] (==) modeset(0): DPMS enabled
[ 6002.013] (II) modeset(0): [DRI2] Setup complete
[ 6002.013] (II) modeset(0): [DRI2] DRI driver: iris
[ 6002.013] (II) modeset(0): [DRI2] VDPAU driver: va_gl
[ 6002.013] (II) Initializing extension Generic Event Extension
[ 6002.013] (II) Initializing extension SHAPE
[ 6002.014] (II) Initializing extension MIT-SHM
[ 6002.014] (II) Initializing extension XInputExtension
[ 6002.014] (II) Initializing extension XTEST
[ 6002.014] (II) Initializing extension BIG-REQUESTS
[ 6002.015] (II) Initializing extension SYNC
[ 6002.015] (II) Initializing extension XKEYBOARD
[ 6002.015] (II) Initializing extension XC-MISC
[ 6002.015] (II) Initializing extension SECURITY
[ 6002.016] (II) Initializing extension XFIXES
[ 6002.016] (II) Initializing extension RENDER
[ 6002.016] (II) Initializing extension RANDR
[ 6002.017] (II) Initializing extension COMPOSITE
[ 6002.017] (II) Initializing extension DAMAGE
[ 6002.017] (II) Initializing extension MIT-SCREEN-SAVER
[ 6002.017] (II) Initializing extension DOUBLE-BUFFER
[ 6002.018] (II) Initializing extension RECORD
[ 6002.018] (II) Initializing extension DPMS
[ 6002.018] (II) Initializing extension Present
[ 6002.018] (II) Initializing extension DRI3
[ 6002.018] (II) Initializing extension X-Resource
[ 6002.019] (II) Initializing extension XVideo
[ 6002.019] (II) Initializing extension XVideo-MotionCompensation
[ 6002.019] (II) Initializing extension SELinux
[ 6002.019] (II) SELinux: Disabled on system
[ 6002.019] (II) Initializing extension GLX
[ 6002.068] (II) AIGLX: Loaded and initialized iris
[ 6002.068] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 6002.069] (II) Initializing extension XFree86-VidModeExtension
[ 6002.069] (II) Initializing extension XFree86-DGA
[ 6002.069] (II) Initializing extension XFree86-DRI
[ 6002.069] (II) Initializing extension DRI2
[ 6002.070] (II) modeset(0): Damage tracking initialized
[ 6002.070] (II) modeset(0): Setting screen physical size to 5?? x ??5
[ 6002.125] (II) config/udev: Adding input device Power Button (/dev/input/event9)
[ 6002.125] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 6002.125] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 6002.125] (**) Power Button: Applying InputClass "evdev for all keyboards"
[ 6002.125] (II) LoadModule: "evdev"
[ 6002.126] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6002.126] (II) Module evdev: vendor="X.Org Foundation"
[ 6002.126] compiled for 1.21.1.11, module version = 2.10.6
[ 6002.126] Module class: X.Org XInput Driver
[ 6002.126] ABI class: X.Org XInput driver, version 24.4
[ 6002.126] (II) Using input driver 'evdev' for 'Power Button'
[ 6002.126] (II) seatd_libseat try open /dev/input/event9
[ 6002.127] (II) seatd_libseat opened /dev/input/event9 (125:125)
[ 6002.127] (**) Power Button: always reports core events
[ 6002.127] (**) evdev: Power Button: Device: "/dev/input/event9"
[ 6002.127] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 6002.127] (--) evdev: Power Button: Found keys
[ 6002.127] (II) evdev: Power Button: Configuring as keyboard
[ 6002.127] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input12/event9"
[ 6002.127] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 6002.127] (**) Option "xkb_rules" "evdev"
[ 6002.127] (**) Option "xkb_model" "pc105"
[ 6002.127] (**) Option "xkb_layout" "us"
[ 6002.128] (II) config/udev: Adding input device Obscured Wireless Radio Control (/dev/input/event10)
[ 6002.128] (**) Obscured Wireless Radio Control: Applying InputClass "evdev keyboard catchall"
[ 6002.128] (**) Obscured Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[ 6002.128] (**) Obscured Wireless Radio Control: Applying InputClass "evdev for all keyboards"
[ 6002.128] (II) Using input driver 'evdev' for 'Obscured Wireless Radio Control'
[ 6002.128] (II) seatd_libseat try open /dev/input/event10
[ 6002.128] (II) seatd_libseat opened /dev/input/event10 (126:126)
[ 6002.128] (**) Obscured Wireless Radio Control: always reports core events
[ 6002.128] (**) evdev: Obscured Wireless Radio Control: Device: "/dev/input/event10"
[ 6002.129] (--) evdev: Obscured Wireless Radio Control: Vendor 0x???? Product 0
[ 6002.129] (--) evdev: Obscured Wireless Radio Control: Found keys
[ 6002.129] (II) evdev: Obscured Wireless Radio Control: Configuring as keyboard
[ 6002.129] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/???????:00/input/input13/event10"
[ 6002.129] (II) XINPUT: Adding extended input device "Obscured Wireless Radio Control" (type: KEYBOARD, id 7)
[ 6002.129] (**) Option "xkb_rules" "evdev"
[ 6002.129] (**) Option "xkb_model" "pc105"
[ 6002.129] (**) Option "xkb_layout" "us"
[ 6002.130] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
[ 6002.130] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 6002.130] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 6002.130] (**) Video Bus: Applying InputClass "evdev for all keyboards"
[ 6002.130] (II) Using input driver 'evdev' for 'Video Bus'
[ 6002.130] (II) seatd_libseat try open /dev/input/event13
[ 6002.130] (II) seatd_libseat opened /dev/input/event13 (127:127)
[ 6002.130] (**) Video Bus: always reports core events
[ 6002.130] (**) evdev: Video Bus: Device: "/dev/input/event13"
[ 6002.130] (--) evdev: Video Bus: Vendor 0 Product 0x6
[ 6002.130] (--) evdev: Video Bus: Found keys
[ 6002.130] (II) evdev: Video Bus: Configuring as keyboard
[ 6002.130] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/???????:00/LNXVIDEO:00/input/input16/event13"
[ 6002.130] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[ 6002.130] (**) Option "xkb_rules" "evdev"
[ 6002.130] (**) Option "xkb_model" "pc105"
[ 6002.130] (**) Option "xkb_layout" "us"
[ 6002.131] (II) config/udev: Adding input device Lid Switch (/dev/input/event6)
[ 6002.131] (II) No input driver specified, ignoring this device.
[ 6002.131] (II) This device may have been added with another device file.
[ 6002.132] (II) config/udev: Adding input device Power Button (/dev/input/event8)
[ 6002.132] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 6002.132] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 6002.132] (**) Power Button: Applying InputClass "evdev for all keyboards"
[ 6002.132] (II) Using input driver 'evdev' for 'Power Button'
[ 6002.132] (II) seatd_libseat try open /dev/input/event8
[ 6002.133] (II) seatd_libseat opened /dev/input/event8 (128:128)
[ 6002.133] (**) Power Button: always reports core events
[ 6002.133] (**) evdev: Power Button: Device: "/dev/input/event8"
[ 6002.133] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 6002.133] (--) evdev: Power Button: Found keys
[ 6002.133] (II) evdev: Power Button: Configuring as keyboard
[ 6002.133] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/???????:00/input/input11/event8"
[ 6002.133] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[ 6002.133] (**) Option "xkb_rules" "evdev"
[ 6002.133] (**) Option "xkb_model" "pc105"
[ 6002.133] (**) Option "xkb_layout" "us"
[ 6002.134] (II) config/udev: Adding input device Sleep Button (/dev/input/event7)
[ 6002.134] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 6002.134] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 6002.134] (**) Sleep Button: Applying InputClass "evdev for all keyboards"
[ 6002.134] (II) Using input driver 'evdev' for 'Sleep Button'
[ 6002.134] (II) seatd_libseat try open /dev/input/event7
[ 6002.134] (II) seatd_libseat opened /dev/input/event7 (129:129)
[ 6002.134] (**) Sleep Button: always reports core events
[ 6002.134] (**) evdev: Sleep Button: Device: "/dev/input/event7"
[ 6002.134] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[ 6002.134] (--) evdev: Sleep Button: Found keys
[ 6002.134] (II) evdev: Sleep Button: Configuring as keyboard
[ 6002.134] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input10/event7"
[ 6002.134] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[ 6002.134] (**) Option "xkb_rules" "evdev"
[ 6002.134] (**) Option "xkb_model" "pc105"
[ 6002.134] (**) Option "xkb_layout" "us"
[ 6002.136] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 6002.136] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 6002.136] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 6002.136] (**) Obscured OpticalMouse: Applying InputClass "evdev for all pointers"
[ 6002.136] (II) Using input driver 'evdev' for 'Obscured OpticalMouse'
[ 6002.136] (II) seatd_libseat try open /dev/input/event3
[ 6002.196] (II) seatd_libseat opened /dev/input/event3 (130:130)
[ 6002.196] (**) Obscured OpticalMouse: always reports core events
[ 6002.196] (**) evdev: Obscured OpticalMouse: Device: "/dev/input/event3"
[ 6002.196] (--) evdev: Obscured OpticalMouse: Vendor 0x??? Product 0x????
[ 6002.196] (--) evdev: Obscured OpticalMouse: Found 9 mouse buttons
[ 6002.196] (--) evdev: Obscured OpticalMouse: Found scroll wheel(s)
[ 6002.196] (--) evdev: Obscured OpticalMouse: Found relative axes
[ 6002.196] (--) evdev: Obscured OpticalMouse: Found x and y relative axes
[ 6002.196] (II) evdev: Obscured OpticalMouse: Configuring as mouse
[ 6002.196] (II) evdev: Obscured OpticalMouse: Adding scrollwheel support
[ 6002.196] (**) evdev: Obscured OpticalMouse: YAxisMapping: buttons 4 and 5
[ 6002.196] (**) evdev: Obscured OpticalMouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 6002.196] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:?????????.000D/input/input33/event3"
[ 6002.197] (II) XINPUT: Adding extended input device "Obscured OpticalMouse" (type: MOUSE, id 11)
[ 6002.197] (II) evdev: Obscured OpticalMouse: initialized for relative axes.
[ 6002.197] (**) Obscured OpticalMouse: (accel) keeping acceleration scheme 1
[ 6002.197] (**) Obscured OpticalMouse: (accel) acceleration profile 0
[ 6002.197] (**) Obscured OpticalMouse: (accel) acceleration factor: 2.000
[ 6002.197] (**) Obscured OpticalMouse: (accel) acceleration threshold: 4
[ 6002.198] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 6002.198] (II) No input driver specified, ignoring this device.
[ 6002.198] (II) This device may have been added with another device file.
[ 6002.199] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 6002.199] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 6002.199] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 6002.199] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev for all keyboards"
[ 6002.199] (II) Using input driver 'evdev' for 'Obscured OpticalMouse Keyboard'
[ 6002.199] (II) seatd_libseat try open /dev/input/event4
[ 6002.200] (II) seatd_libseat opened /dev/input/event4 (131:131)
[ 6002.200] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 6002.200] (**) evdev: Obscured OpticalMouse Keyboard: Device: "/dev/input/event4"
[ 6002.200] (--) evdev: Obscured OpticalMouse Keyboard: Vendor 0x??? Product 0x????
[ 6002.200] (--) evdev: Obscured OpticalMouse Keyboard: Found 1 mouse buttons
[ 6002.200] (--) evdev: Obscured OpticalMouse Keyboard: Found scroll wheel(s)
[ 6002.200] (--) evdev: Obscured OpticalMouse Keyboard: Found relative axes
[ 6002.200] (II) evdev: Obscured OpticalMouse Keyboard: Forcing relative x/y axes to exist.
[ 6002.200] (--) evdev: Obscured OpticalMouse Keyboard: Found absolute axes
[ 6002.200] (II) evdev: Obscured OpticalMouse Keyboard: Forcing absolute x/y axes to exist.
[ 6002.200] (--) evdev: Obscured OpticalMouse Keyboard: Found keys
[ 6002.200] (II) evdev: Obscured OpticalMouse Keyboard: Configuring as mouse
[ 6002.200] (II) evdev: Obscured OpticalMouse Keyboard: Configuring as keyboard
[ 6002.200] (II) evdev: Obscured OpticalMouse Keyboard: Adding scrollwheel support
[ 6002.200] (**) evdev: Obscured OpticalMouse Keyboard: YAxisMapping: buttons 4 and 5
[ 6002.200] (**) evdev: Obscured OpticalMouse Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 6002.200] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:?????????.000E/input/input35/event4"
[ 6002.200] (II) XINPUT: Adding extended input device "Obscured OpticalMouse Keyboard" (type: KEYBOARD, id 12)
[ 6002.200] (**) Option "xkb_rules" "evdev"
[ 6002.200] (**) Option "xkb_model" "pc105"
[ 6002.200] (**) Option "xkb_layout" "us"
[ 6002.201] (II) evdev: Obscured OpticalMouse Keyboard: initialized for relative axes.
[ 6002.201] (WW) evdev: Obscured OpticalMouse Keyboard: ignoring absolute axes.
[ 6002.201] (**) Obscured OpticalMouse Keyboard: (accel) keeping acceleration scheme 1
[ 6002.201] (**) Obscured OpticalMouse Keyboard: (accel) acceleration profile 0
[ 6002.201] (**) Obscured OpticalMouse Keyboard: (accel) acceleration factor: 2.000
[ 6002.201] (**) Obscured OpticalMouse Keyboard: (accel) acceleration threshold: 4
[ 6002.202] (II) config/udev: Adding input device Obscured USB Keyboard (/dev/input/event5)
[ 6002.202] (**) Obscured USB Keyboard: Applying InputClass "evdev keyboard catchall"
[ 6002.202] (**) Obscured USB Keyboard: Applying InputClass "libinput keyboard catchall"
[ 6002.202] (**) Obscured USB Keyboard: Applying InputClass "evdev for all keyboards"
[ 6002.202] (II) Using input driver 'evdev' for 'Obscured USB Keyboard'
[ 6002.202] (II) seatd_libseat try open /dev/input/event5
[ 6002.203] (II) seatd_libseat opened /dev/input/event5 (132:132)
[ 6002.203] (**) Obscured USB Keyboard: always reports core events
[ 6002.203] (**) evdev: Obscured USB Keyboard: Device: "/dev/input/event5"
[ 6002.203] (--) evdev: Obscured USB Keyboard: Vendor 0x??? Product 0x???
[ 6002.203] (--) evdev: Obscured USB Keyboard: Found keys
[ 6002.203] (II) evdev: Obscured USB Keyboard: Configuring as keyboard
[ 6002.203] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.3/1-2.3:1.0/0003:?????????.0004/input/input8/event5"
[ 6002.203] (II) XINPUT: Adding extended input device "Obscured USB Keyboard" (type: KEYBOARD, id 13)
[ 6002.203] (**) Option "xkb_rules" "evdev"
[ 6002.203] (**) Option "xkb_model" "pc105"
[ 6002.203] (**) Option "xkb_layout" "us"
[ 6002.205] (II) config/udev: Adding input device Obscured touchpad Mouse (/dev/input/event1)
[ 6002.205] (**) Obscured touchpad Mouse: Applying InputClass "evdev pointer catchall"
[ 6002.205] (**) Obscured touchpad Mouse: Applying InputClass "libinput pointer catchall"
[ 6002.205] (**) Obscured touchpad Mouse: Applying InputClass "evdev for all pointers"
[ 6002.205] (II) Using input driver 'evdev' for 'Obscured touchpad Mouse'
[ 6002.205] (II) seatd_libseat try open /dev/input/event1
[ 6002.206] (II) seatd_libseat opened /dev/input/event1 (133:133)
[ 6002.206] (**) Obscured touchpad Mouse: always reports core events
[ 6002.206] (**) evdev: Obscured touchpad Mouse: Device: "/dev/input/event1"
[ 6002.206] (--) evdev: Obscured touchpad Mouse: Vendor 0x??? Product 0x????
[ 6002.206] (--) evdev: Obscured touchpad Mouse: Found 3 mouse buttons
[ 6002.206] (--) evdev: Obscured touchpad Mouse: Found scroll wheel(s)
[ 6002.206] (--) evdev: Obscured touchpad Mouse: Found relative axes
[ 6002.206] (--) evdev: Obscured touchpad Mouse: Found x and y relative axes
[ 6002.206] (II) evdev: Obscured touchpad Mouse: Configuring as mouse
[ 6002.206] (II) evdev: Obscured touchpad Mouse: Adding scrollwheel support
[ 6002.206] (**) evdev: Obscured touchpad Mouse: YAxisMapping: buttons 4 and 5
[ 6002.206] (**) evdev: Obscured touchpad Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 6002.206] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-????????:00/0018:?????????.0001/input/input3/event1"
[ 6002.206] (II) XINPUT: Adding extended input device "Obscured touchpad Mouse" (type: MOUSE, id 14)
[ 6002.206] (II) evdev: Obscured touchpad Mouse: initialized for relative axes.
[ 6002.207] (**) Obscured touchpad Mouse: (accel) keeping acceleration scheme 1
[ 6002.207] (**) Obscured touchpad Mouse: (accel) acceleration profile 0
[ 6002.207] (**) Obscured touchpad Mouse: (accel) acceleration factor: 2.000
[ 6002.207] (**) Obscured touchpad Mouse: (accel) acceleration threshold: 4
[ 6002.208] (II) config/udev: Adding input device Obscured touchpad Mouse (/dev/input/mouse0)
[ 6002.208] (II) No input driver specified, ignoring this device.
[ 6002.208] (II) This device may have been added with another device file.
[ 6002.209] (II) config/udev: Adding input device Obscured touchpad Touchpad (/dev/input/event2)
[ 6002.209] (**) Obscured touchpad Touchpad: Applying InputClass "evdev touchpad catchall"
[ 6002.209] (**) Obscured touchpad Touchpad: Applying InputClass "libinput touchpad catchall"
[ 6002.209] (**) Obscured touchpad Touchpad: Applying InputClass "My Touchpad"
[ 6002.209] (II) LoadModule: "libinput"
[ 6002.209] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 6002.212] (II) Module libinput: vendor="X.Org Foundation"
[ 6002.212] compiled for 1.21.1.11, module version = 1.4.0
[ 6002.212] Module class: X.Org XInput Driver
[ 6002.212] ABI class: X.Org XInput driver, version 24.4
[ 6002.212] (II) Using input driver 'libinput' for 'Obscured touchpad Touchpad'
[ 6002.212] (II) seatd_libseat try open /dev/input/event2
[ 6002.213] (II) seatd_libseat opened /dev/input/event2 (134:134)
[ 6002.213] (**) Obscured touchpad Touchpad: always reports core events
[ 6002.213] (**) Option "Device" "/dev/input/event2"
[ 6002.218] (II) event2 - Obscured touchpad Touchpad: is tagged by udev as: Touchpad
[ 6002.220] (II) event2 - Obscured touchpad Touchpad: device is a touchpad
[ 6002.220] (II) event2 - Obscured touchpad Touchpad: device removed
[ 6002.221] (**) Option "Tapping" "true"
[ 6002.221] (II) libinput: Obscured touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 6002.221] (II) libinput: Obscured touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 6002.221] (II) libinput: Obscured touchpad Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 6002.221] (**) Option "NaturalScrolling" "true"
[ 6002.221] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-??????????????????????????.0001/input/input4/event2"
[ 6002.221] (II) XINPUT: Adding extended input device "Obscured touchpad Touchpad" (type: TOUCHPAD, id 15)
[ 6002.223] (**) Option "AccelerationScheme" "none"
[ 6002.223] (**) Obscured touchpad Touchpad: (accel) selected scheme none/0
[ 6002.223] (**) Obscured touchpad Touchpad: (accel) acceleration factor: 2.000
[ 6002.223] (**) Obscured touchpad Touchpad: (accel) acceleration threshold: 4
[ 6002.226] (II) event2 - Obscured touchpad Touchpad: is tagged by udev as: Touchpad
[ 6002.228] (II) event2 - Obscured touchpad Touchpad: device is a touchpad
[ 6002.229] (II) config/udev: Adding input device Obscured touchpad Touchpad (/dev/input/mouse1)
[ 6002.229] (**) Obscured touchpad Touchpad: Applying InputClass "My Touchpad"
[ 6002.229] (II) Using input driver 'libinput' for 'Obscured touchpad Touchpad'
[ 6002.229] (II) seatd_libseat try open /dev/input/mouse1
[ 6002.230] (EE) [libseat/backend/logind.c:137] Could not take device: No such device
[ 6002.230] (EE) seatd_libseat open /dev/input/mouse1 (-1) failed: -11
[ 6002.230] (**) Obscured touchpad Touchpad: always reports core events
[ 6002.230] (**) Option "Device" "/dev/input/mouse1"
[ 6002.231] (EE) xf86OpenSerial: Cannot open device /dev/input/mouse1
Permission denied.
[ 6002.231] (II) mouse1: opening input device '/dev/input/mouse1' failed (Permission denied).
[ 6002.231] (II) mouse1 - failed to create input device '/dev/input/mouse1'.
[ 6002.231] (EE) libinput: Obscured touchpad Touchpad: Failed to create a device for /dev/input/mouse1
[ 6002.231] (EE) PreInit returned 2 for "Obscured touchpad Touchpad"
[ 6002.231] (II) UnloadModule: "libinput"
[ 6002.232] (II) config/udev: Adding input device Obscured Headphone (/dev/input/event14)
[ 6002.232] (II) No input driver specified, ignoring this device.
[ 6002.232] (II) This device may have been added with another device file.
[ 6002.233] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=3 (/dev/input/event15)
[ 6002.233] (II) No input driver specified, ignoring this device.
[ 6002.233] (II) This device may have been added with another device file.
[ 6002.233] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=7 (/dev/input/event16)
[ 6002.233] (II) No input driver specified, ignoring this device.
[ 6002.233] (II) This device may have been added with another device file.
[ 6002.234] (II) config/udev: Adding input device Obscured HDMI/DP,pcm=8 (/dev/input/event17)
[ 6002.234] (II) No input driver specified, ignoring this device.
[ 6002.234] (II) This device may have been added with another device file.
[ 6002.235] (II) config/udev: Adding input device Obscured WMI hotkeys (/dev/input/event12)
[ 6002.235] (**) Obscured WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[ 6002.235] (**) Obscured WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[ 6002.235] (**) Obscured WMI hotkeys: Applying InputClass "evdev for all keyboards"
[ 6002.235] (II) Using input driver 'evdev' for 'Obscured WMI hotkeys'
[ 6002.235] (II) seatd_libseat try open /dev/input/event12
[ 6002.236] (II) seatd_libseat opened /dev/input/event12 (137:137)
[ 6002.236] (**) Obscured WMI hotkeys: always reports core events
[ 6002.236] (**) evdev: Obscured WMI hotkeys: Device: "/dev/input/event12"
[ 6002.236] (--) evdev: Obscured WMI hotkeys: Vendor 0 Product 0
[ 6002.236] (--) evdev: Obscured WMI hotkeys: Found keys
[ 6002.236] (II) evdev: Obscured WMI hotkeys: Configuring as keyboard
[ 6002.236] (**) Option "config_info" "udev:/sys/devices/platform/???????-wmi/input/input15/event12"
[ 6002.236] (II) XINPUT: Adding extended input device "Obscured WMI hotkeys" (type: KEYBOARD, id 16)
[ 6002.236] (**) Option "xkb_rules" "evdev"
[ 6002.236] (**) Option "xkb_model" "pc105"
[ 6002.236] (**) Option "xkb_layout" "us"
[ 6002.237] (II) config/udev: Adding input device Built-in Obscured keyboard (/dev/input/event0)
[ 6002.237] (**) Built-in Obscured keyboard: Applying InputClass "evdev keyboard catchall"
[ 6002.237] (**) Built-in Obscured keyboard: Applying InputClass "libinput keyboard catchall"
[ 6002.237] (**) Built-in Obscured keyboard: Applying InputClass "evdev for all keyboards"
[ 6002.237] (II) Using input driver 'evdev' for 'Built-in Obscured keyboard'
[ 6002.237] (II) seatd_libseat try open /dev/input/event0
[ 6002.238] (II) seatd_libseat opened /dev/input/event0 (138:138)
[ 6002.238] (**) Built-in Obscured keyboard: always reports core events
[ 6002.238] (**) evdev: Built-in Obscured keyboard: Device: "/dev/input/event0"
[ 6002.238] (--) evdev: Built-in Obscured keyboard: Vendor 0x1 Product 0x1
[ 6002.238] (--) evdev: Built-in Obscured keyboard: Found keys
[ 6002.238] (II) evdev: Built-in Obscured keyboard: Configuring as keyboard
[ 6002.238] (**) Option "config_info" "udev:/sys/devices/platform/?????/serio0/input/input0/event0"
[ 6002.238] (II) XINPUT: Adding extended input device "Built-in Obscured keyboard" (type: KEYBOARD, id 17)
[ 6002.238] (**) Option "xkb_rules" "evdev"
[ 6002.238] (**) Option "xkb_model" "pc105"
[ 6002.238] (**) Option "xkb_layout" "us"
[ 6002.239] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[ 6002.239] (II) No input driver specified, ignoring this device.
[ 6002.239] (II) This device may have been added with another device file.
[ 6002.762] (II) modeset(0): Allocate new frame buffer 1280x720 stride
[ 6004.305] (II) modeset(0): EDID vendor "???", prod in ?????
[ 6004.305] (II) modeset(0): Printing DDC gathered Modelines:
[ 6004.305] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 6006.043] (II) seatd_libseat switch VT 3
[ 6006.047] (II) event2 - Obscured touchpad Touchpad: device removed
[ 6006.048] (II) seatd_libseat event handler
[ 6006.105] (DB) [libseat/backend/logind.c:399] DRM device paused: force
[ 6006.106] (II) [libseat/backend/logind.c:382] Disabling seat
[ 6006.106] (II) seatd_libseat disable
[ 6006.106] (WW) modeset(0): Present-unflip: queue flip during flip on CRTC 0 failed: Permission denied
[ 6006.107] (EE) modeset(0): Failed to set CTM property: -13
[ 6006.107] (EE) modeset(0): failed to set mode: No such file or directory
[ 6006.107] (II) seatd_libseat try close /dev/input/event9 (125:125)
[ 6006.136] (II) seatd_libseat try close /dev/input/event10 (126:126)
[ 6006.176] (II) seatd_libseat try close /dev/input/event13 (127:127)
[ 6006.208] (II) seatd_libseat try close /dev/input/event8 (128:128)
[ 6006.224] (II) seatd_libseat try close /dev/input/event7 (129:129)
[ 6006.244] (II) seatd_libseat try close /dev/input/event3 (130:130)
[ 6006.276] (II) seatd_libseat try close /dev/input/event4 (131:131)
[ 6006.292] (II) seatd_libseat try close /dev/input/event5 (132:132)
[ 6006.308] (II) seatd_libseat try close /dev/input/event1 (133:133)
[ 6006.340] (II) seatd_libseat try close /dev/input/event2 (134:134)
[ 6006.372] (II) seatd_libseat try close /dev/input/event12 (137:137)
[ 6006.404] (II) seatd_libseat try close /dev/input/event0 (138:138)
[ 6006.420] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 6006.420] (II) seatd_libseat handled 39 events
[ 6008.653] (II) config/udev: removing device Obscured OpticalMouse
[ 6008.654] (II) evdev: Obscured OpticalMouse: Close
[ 6008.655] (II) UnloadModule: "evdev"
[ 6008.655] (II) seatd_libseat try close /dev/input/event3 (130:-1)
[ 6008.655] (EE) seatd_libseat device not open (/dev/input/event3)
[ 6008.717] (II) config/udev: removing device Obscured OpticalMouse Keyboard
[ 6008.718] (II) evdev: Obscured OpticalMouse Keyboard: Close
[ 6008.718] (II) UnloadModule: "evdev"
[ 6008.718] (II) seatd_libseat try close /dev/input/event4 (131:-1)
[ 6008.718] (EE) seatd_libseat device not open (/dev/input/event4)
[ 6010.095] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 6010.095] (II) No input driver specified, ignoring this device.
[ 6010.095] (II) This device may have been added with another device file.
[ 6010.149] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 6010.149] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 6010.149] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 6010.149] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev for all keyboards"
[ 6010.149] (II) Using input driver 'evdev' for 'Obscured OpticalMouse Keyboard'
[ 6010.149] (II) seatd_libseat try open /dev/input/event4
[ 6010.150] (II) seatd_libseat opened /dev/input/event4 (126:126)
[ 6010.150] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 6010.150] (**) evdev: Obscured OpticalMouse Keyboard: Device: "/dev/input/event4"
[ 6010.150] (EE) evdev: Obscured OpticalMouse Keyboard: Unable to query fd: No such device
[ 6010.150] (EE) PreInit returned 2 for "Obscured OpticalMouse Keyboard"
[ 6010.150] (II) UnloadModule: "evdev"
[ 6010.150] (II) seatd_libseat try close /dev/input/event4 (126:126)
[ 6010.168] (II) seatd_libseat event handler
[ 6010.168] (II) seatd_libseat handled 2 events
[ 6010.205] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 6010.205] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 6010.205] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 6010.205] (**) Obscured OpticalMouse: Applying InputClass "evdev for all pointers"
[ 6010.205] (II) Using input driver 'evdev' for 'Obscured OpticalMouse'
[ 6010.205] (II) seatd_libseat try open /dev/input/event3
[ 6010.264] (II) seatd_libseat opened /dev/input/event3 (126:126)
[ 6010.264] (**) Obscured OpticalMouse: always reports core events
[ 6010.264] (**) evdev: Obscured OpticalMouse: Device: "/dev/input/event3"
[ 6010.264] (EE) evdev: Obscured OpticalMouse: Unable to query fd: No such device
[ 6010.264] (EE) PreInit returned 2 for "Obscured OpticalMouse"
[ 6010.264] (II) UnloadModule: "evdev"
[ 6010.264] (II) seatd_libseat try close /dev/input/event3 (126:126)
[ 6010.296] (II) seatd_libseat event handler
[ 6010.296] (II) seatd_libseat handled 2 events
[ 6010.882] (II) seatd_libseat event handler
[ 6010.882] (II) seatd_libseat handled 1 events
[ 6010.882] (II) seatd_libseat event handler
[ 6010.882] (DB) [libseat/backend/logind.c:431] DRM device resumed
[ 6010.882] (II) [libseat/backend/logind.c:379] Enabling seat
[ 6010.882] (II) seatd_libseat enable
[ 6010.882] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 6010.966] (II) modeset(0): EDID vendor "???", prod id ?????
[ 6010.966] (II) modeset(0): Printing DDC gathered Modelines:
[ 6010.966] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 6011.116] (II) modeset(0): EDID vendor "???", prod id ?????
[ 6011.116] (II) modeset(0): Printing DDC gathered Modelines:
[ 6011.116] (II) modeset(0): Modeline "1920x1080"x0.0 142.00 1920 2028 2076 2100 1080 1090 1100 1126 -hsync -vsync (67.6 kHz eP)
[ 6011.200] (II) seatd_libseat try open /dev/input/event9
[ 6011.201] (II) seatd_libseat opened /dev/input/event9 (127:127)
[ 6011.202] (II) seatd_libseat try open /dev/input/event10
[ 6011.203] (II) seatd_libseat opened /dev/input/event10 (128:128)
[ 6011.204] (II) seatd_libseat try open /dev/input/event13
[ 6011.205] (II) seatd_libseat opened /dev/input/event13 (129:129)
[ 6011.206] (II) seatd_libseat try open /dev/input/event8
[ 6011.207] (II) seatd_libseat opened /dev/input/event8 (130:130)
[ 6011.207] (II) seatd_libseat try open /dev/input/event7
[ 6011.209] (II) seatd_libseat opened /dev/input/event7 (131:131)
[ 6011.209] (II) seatd_libseat try open /dev/input/event5
[ 6011.211] (II) seatd_libseat opened /dev/input/event5 (132:132)
[ 6011.211] (II) seatd_libseat try open /dev/input/event1
[ 6011.213] (II) seatd_libseat opened /dev/input/event1 (133:133)
[ 6011.213] (II) seatd_libseat try open /dev/input/event2
[ 6011.215] (II) seatd_libseat opened /dev/input/event2 (134:134)
[ 6011.218] (II) event2 - Obscured touchpad Touchpad: is tagged by udev as: Touchpad
[ 6011.221] (II) event2 - Obscured touchpad Touchpad: device is a touchpad
[ 6011.221] (II) seatd_libseat try open /dev/input/event12
[ 6011.223] (II) seatd_libseat opened /dev/input/event12 (137:137)
[ 6011.223] (II) seatd_libseat try open /dev/input/event0
[ 6011.225] (II) seatd_libseat opened /dev/input/event0 (138:138)
[ 6011.225] (II) seatd_libseat handled 11 events
[ 6011.226] (II) seatd_libseat event handler
[ 6011.226] (II) seatd_libseat handled 1 events
[ 6014.203] (II) seatd_libseat try close /dev/input/event9 (127:127)
[ 6014.224] (II) seatd_libseat try close /dev/input/event10 (128:128)
[ 6014.292] (II) seatd_libseat try close /dev/input/event13 (129:129)
[ 6014.340] (II) seatd_libseat try close /dev/input/event8 (130:130)
[ 6014.356] (II) seatd_libseat try close /dev/input/event7 (131:131)
[ 6014.376] (II) seatd_libseat try close /dev/input/event5 (132:132)
[ 6014.392] (II) seatd_libseat try close /dev/input/event1 (133:133)
[ 6014.440] (II) seatd_libseat try close /dev/input/event2 (134:134)
[ 6014.441] (II) event2 - Obscured touchpad Touchpad: device removed
[ 6014.477] (II) seatd_libseat try close /dev/input/event12 (137:137)
[ 6014.512] (II) seatd_libseat try close /dev/input/event0 (138:138)
[ 6014.532] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 6014.621] (II) evdev: Built-in Obscured keyboard: Close
[ 6014.622] (II) UnloadModule: "evdev"
[ 6014.622] (II) seatd_libseat try close /dev/input/event0 (138:-1)
[ 6014.622] (EE) seatd_libseat device not open (/dev/input/event0)
[ 6014.622] (II) evdev: Obscured WMI hotkeys: Close
[ 6014.622] (II) UnloadModule: "evdev"
[ 6014.622] (II) seatd_libseat try close /dev/input/event12 (137:-1)
[ 6014.622] (EE) seatd_libseat device not open (/dev/input/event12)
[ 6014.622] (II) UnloadModule: "libinput"
[ 6014.622] (II) seatd_libseat try close /dev/input/event2 (134:-1)
[ 6014.622] (EE) seatd_libseat device not open (/dev/input/event2)
[ 6014.622] (II) evdev: Obscured touchpad Mouse: Close
[ 6014.622] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event1 (133:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event1)
[ 6014.623] (II) evdev: Obscured USB Keyboard: Close
[ 6014.623] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event5 (132:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event5)
[ 6014.623] (II) evdev: Sleep Button: Close
[ 6014.623] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event7 (131:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event7)
[ 6014.623] (II) evdev: Power Button: Close
[ 6014.623] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event8 (130:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event8)
[ 6014.623] (II) evdev: Video Bus: Close
[ 6014.623] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event13 (129:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event13)
[ 6014.623] (II) evdev: Obscured Wireless Radio Control: Close
[ 6014.623] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event10 (128:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event10)
[ 6014.623] (II) evdev: Power Button: Close
[ 6014.623] (II) UnloadModule: "evdev"
[ 6014.623] (II) seatd_libseat try close /dev/input/event9 (127:-1)
[ 6014.623] (EE) seatd_libseat device not open (/dev/input/event9)
[ 6014.633] (II) seatd_libseat finish
[ 6014.686] (EE) [libseat/backend/logind.c:365] Could not release control of session: Interrupted system call
[ 6014.686] (II) Server terminated successfully (0). Closing log file.
Only have xorg.conf.d.
/etc/X11/xorg.conf.d/21-input-devices.conf:
Section "InputClass"
Identifier "My Touchpad"
MatchIsTouchpad "true"
MatchProduct "Deliberately Obscured"
Driver "libinput"
Option "Tapping" "true"
Option "Natural Scrolling" "true"
EndSection
Section "InputClass"
Identifier "evdev for all pointers"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev for all keyboards"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
and
/etc/X11/xorg.conf.d/90-xpra-virtual.conf:
# Ignore all xpra virtual devices by default,
# these will be enabled explicitly when needed.
Section "InputClass"
Identifier "xpra-virtual-device"
MatchProduct "Xpra"
Option "Ignore" "true"
EndSection
Please note, that the issue persist with libinput and switching to evdev was done as a hope that it would fix the issue. The log file:
[ 4302.245] (II) seatd_libseat switch VT 3
[ 4302.252] (II) seatd_libseat event handler
[ 4302.252] (II) event2 - Deliberately Obscured Touchpad: device removed
[ 4302.252] (II) seatd_libseat handled 2 events
[ 4302.252] (II) seatd_libseat event handler
[ 4302.252] (II) seatd_libseat handled 1 events
[ 4302.252] (II) seatd_libseat event handler
[ 4302.252] (II) seatd_libseat handled 1 events
[ 4302.252] (II) seatd_libseat event handler
[ 4302.252] (II) seatd_libseat handled 1 events
[ 4302.252] (II) seatd_libseat event handler
[ 4302.252] (II) seatd_libseat handled 1 events
[ 4302.252] (II) seatd_libseat event handler
[ 4302.252] (II) seatd_libseat handled 1 events
[ 4302.252] (II) seatd_libseat event handler
[ 4302.322] (DB) [libseat/backend/logind.c:399] DRM device paused: force
[ 4302.322] (II) [libseat/backend/logind.c:382] Disabling seat
[ 4302.322] (II) seatd_libseat disable
[ 4302.322] (WW) modeset(0): Present-unflip: queue flip during flip on CRTC 0 failed: Permission denied
[ 4302.323] (EE) modeset(0): Failed to set CTM property: -13
[ 4302.323] (EE) modeset(0): failed to set mode: No such file or directory
[ 4302.323] (II) seatd_libseat try close /dev/input/event9 (125:125)
[ 4302.344] (II) seatd_libseat try close /dev/input/event10 (126:126)
[ 4302.388] (II) seatd_libseat try close /dev/input/event13 (127:127)
[ 4302.420] (II) seatd_libseat try close /dev/input/event8 (128:128)
[ 4302.436] (II) seatd_libseat try close /dev/input/event7 (129:129)
[ 4302.456] (II) seatd_libseat try close /dev/input/event3 (130:130)
[ 4302.493] (II) seatd_libseat try close /dev/input/event4 (131:131)
[ 4302.509] (II) seatd_libseat try close /dev/input/event5 (132:132)
[ 4302.528] (II) seatd_libseat try close /dev/input/event1 (133:133)
[ 4302.560] (II) seatd_libseat try close /dev/input/event2 (134:134)
[ 4302.593] (II) seatd_libseat try close /dev/input/event12 (137:137)
[ 4302.633] (II) seatd_libseat try close /dev/input/event0 (138:138)
[ 4302.648] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 4302.649] (II) seatd_libseat handled 32 events
[ 4304.250] (II) config/udev: removing device Obscured OpticalMouse
[ 4304.253] (II) evdev: Obscured OpticalMouse: Close
[ 4304.253] (II) UnloadModule: "evdev"
[ 4304.253] (II) seatd_libseat try close /dev/input/event3 (130:-1)
[ 4304.253] (EE) seatd_libseat device not open (/dev/input/event3)
[ 4304.316] (II) config/udev: removing device Obscured OpticalMouse Keyboard
[ 4304.317] (II) evdev: Obscured OpticalMouse Keyboard: Close
[ 4304.318] (II) UnloadModule: "evdev"
[ 4304.318] (II) seatd_libseat try close /dev/input/event4 (131:-1)
[ 4304.318] (EE) seatd_libseat device not open (/dev/input/event4)
[ 4306.432] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/mouse2)
[ 4306.432] (II) No input driver specified, ignoring this device.
[ 4306.432] (II) This device may have been added with another device file.
[ 4306.469] (II) config/udev: Adding input device Obscured OpticalMouse Keyboard (/dev/input/event4)
[ 4306.469] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev keyboard catchall"
[ 4306.469] (**) Obscured OpticalMouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 4306.469] (**) Obscured OpticalMouse Keyboard: Applying InputClass "evdev for all keyboards"
[ 4306.469] (II) Using input driver 'evdev' for 'Obscured OpticalMouse Keyboard'
[ 4306.469] (II) seatd_libseat try open /dev/input/event4
[ 4306.470] (II) seatd_libseat opened /dev/input/event4 (126:126)
[ 4306.470] (**) Obscured OpticalMouse Keyboard: always reports core events
[ 4306.470] (**) evdev: Obscured OpticalMouse Keyboard: Device: "/dev/input/event4"
[ 4306.470] (EE) evdev: Obscured OpticalMouse Keyboard: Unable to query fd: No such device
[ 4306.470] (EE) PreInit returned 2 for "Obscured OpticalMouse Keyboard"
[ 4306.470] (II) UnloadModule: "evdev"
[ 4306.470] (II) seatd_libseat try close /dev/input/event4 (126:126)
[ 4306.492] (II) seatd_libseat event handler
[ 4306.492] (II) seatd_libseat handled 2 events
[ 4306.533] (II) config/udev: Adding input device Obscured OpticalMouse (/dev/input/event3)
[ 4306.533] (**) Obscured OpticalMouse: Applying InputClass "evdev pointer catchall"
[ 4306.533] (**) Obscured OpticalMouse: Applying InputClass "libinput pointer catchall"
[ 4306.533] (**) Obscured OpticalMouse: Applying InputClass "evdev for all pointers"
[ 4306.533] (II) Using input driver 'evdev' for 'Obscured OpticalMouse'
[ 4306.533] (II) seatd_libseat try open /dev/input/event3
[ 4306.596] (II) seatd_libseat opened /dev/input/event3 (126:126)
[ 4306.596] (**) Obscured OpticalMouse: always reports core events
[ 4306.596] (**) evdev: Obscured OpticalMouse: Device: "/dev/input/event3"
[ 4306.596] (EE) evdev: Obscured OpticalMouse: Unable to query fd: No such device
[ 4306.596] (EE) PreInit returned 2 for "Obscured OpticalMouse"
[ 4306.597] (II) UnloadModule: "evdev"
[ 4306.597] (II) seatd_libseat try close /dev/input/event3 (126:126)
[ 4306.628] (II) seatd_libseat event handler
[ 4306.628] (II) seatd_libseat handled 2 events
[ 4308.237] (II) seatd_libseat event handler
[ 4308.237] (II) seatd_libseat handled 1 events
[ 4308.237] (II) seatd_libseat event handler
[ 4308.237] (DB) [libseat/backend/logind.c:431] DRM device resumed
[ 4308.237] (II) [libseat/backend/logind.c:379] Enabling seat
[ 4308.237] (II) seatd_libseat enable
[ 4308.237] (II) AIGLX: Resuming AIGLX clients after VT switch
Note that graphical session was launched on VT4, then switch to VT3, log in as another user, unplug, plug back, switch to VT4.
It may be worth noting that after I changed my session manager between seatd and elogind, I would reboot. I am not 100% certain this is necessary, but it could potentially rule out some unrelated issues.
Distribution: excalibur/ceres
Steps to reproduce, which are not specific to session managers:
disable graphical login, use getty instead
remove xserver-xorg-legacy OR edit /etc/X11/Xwrapper.config to use needs_root_rights=no
Steps to reproduce with seatd:
remove elogind; install seatd and consolekit instead
create a new user, i.e. test
make test memeber of the video group; as such test is a memeber of only two groups: test and video
to start seatd, use seatd -u root -g video
export LIBSEAT_BACKEND=seatd
startx
confirm everything works, input devices are available
ctrl+alt+F<n> to switch to any other Virtual Terminal (VT); login as any other user, no need to start X11, shell is sufficient
unplug an input device, i.e. mouse or keyboard
plug it back
switch back to the graphical session of the test user
observe the input device not working anymore.
Steps to reproduce with elogind:
remove seatd and consolekit; install elogind instead
create a new user, i.e. test
test is a member of only one group: test
export LIBSEAT_BACKEND=logind
startx
same as after startx for seatd
Workaround: install xserver-xorg-core from Debian/trixie; will not work with seatd anymore, only elogind
upower requires up to date version of libgudev-1.0.0. No apparent error here, but when trying to start /usr/libexec/upowerd you get
/usr/libexec/upowerd: /lib/x86_64-linux-gnu/libudev.so.1: version `LIBUDEV_247' not found (required by /lib/x86_64-linux-gnu/libgudev-1.0.so.0)
The current solution to this kind of error is installing older libgudev-1.0.0 from daedalus, but it conflicts with upower, because it wants the new libgudev-1.0.0.
Why does it happen at all? Any hopes it gets resolved? This is Devuan specific thing AFAIK, see https://forums.debian.net/viewtopic.php?t=155394