Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Feb 2020 12:17:31 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 244430] Upgrading to xorg-server-1.20.7,1 : keyboard functionality got lost
Message-ID:  <bug-244430-7788-DgaIVAyNT5@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-244430-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-244430-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244430

x11max1@unitybox.de <x11max1@unitybox.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |Closed
         Resolution|---                         |FIXED

--- Comment #4 from x11max1@unitybox.de <x11max1@unitybox.de> ---
I changed the following things to make xorg-server-1.20.7,1 running includi=
ng
attached devices like keyboard, wacom and so on.

/boot/device.hints
# keyboard problem updating xorg-server xorg-server: 1.18.4_12,1 -> 1.20.7,1
hint.kbdmux.0.disabled=3D"1"

/etc/sysctl.conf
# fuer evdev devices ; pads , keyboard, etc
kern.evdev.rcpt_mask=3D12
sysctl kern.geom.debugflags=3D16

# added new conf file regarding devices
/usr/local/etc/X11/xorg.conf.d/99-evdev-new.conf
Section "InputClass"
    Identifier "libinput keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "XkbRules" "evdev"
EndSection

Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "MiddleEmulation" "on"
    Option "DisableWhileTyping" "off"
EndSection

    Identifier "libinput keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "XkbRules" "evdev"
EndSection

Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "MiddleEmulation" "on"
    Option "DisableWhileTyping" "off"
EndSection

~/.xinitrc
# SLIM Session Manager
#
#setxkbmap de
# setxkbmap de -variant nodeadkeys -model pc105
setxkbmap -v -layout de -model macintosh
xset fp+ /usr/local/share/fonts/urwfonts
xset fp rehash
xset fp+ /usr/local/share/fonts/TrueType
xset fp rehash

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-244430-7788-DgaIVAyNT5>