S15Pup RC3 - short test
1. System doesn't boot
bootparameter edd=off solved this problem in my case
2. pkeys=xy will be ignored in case of xorg-autoconf usage
my ugly hack
Code: Select all
--- /usr/sbin/xorg-autoconf 2022-11-15 22:18:29.000000000 +0800
+++ /root/Downloads/xorg-autoconf 2022-11-16 01:13:13.000000000 +0800
@@ -20,10 +20,13 @@
[ "$MODLIST" == "" ] && MODLIST="$(lsmod 2>/dev/null)"
[ "$PCILIST" == "" ] && PCILIST="$(lspci -nD 2>/dev/null | sed "s#^0000:##g")"
+
if [ -e /etc/keymap.conf ]; then
KBSELECT="$(cat /etc/keymap.conf | head -n 1)"
+ [ -f ~/.xkbrc ] && sed -i "/^XKB_DEFAULT_LAYOUT=/ c XKB_DEFAULT_LAYOUT=${KBSELECT}" ~/.xkbrc
elif [ -e /etc/keymap ]; then
KBSELECT="$(cat /etc/keymap | head -n 1)"
+ [ -f ~/.xkbrc ] && sed -i "/^XKB_DEFAULT_LAYOUT=/ c XKB_DEFAULT_LAYOUT=${KBSELECT}" ~/.xkbrc
else
KBSELECT="us"
fi
3. udev error "specified group 'input' unknown"
defined in '/lib/udev/rules.d/50-udev-default.rules' line 29-30
but group 'input' does not exist in '/etc/group'
needs to be added
Thank you very much for your work