pmbootstrap icon indicating copy to clipboard operation
pmbootstrap copied to clipboard

hardware keyboard no response on raspberry pi

Open yangxuan8282 opened this issue 7 years ago • 21 comments

I follow the wiki: https://wiki.postmarketos.org/wiki/Existing_Alpine_installation , have installed postmarketos-base and postmarketos-ui-hildon on raspberry pi. After reboot, I can see the desktop, but both usb keyboard and mouse not working in X11. I guess maybe this is caused by didn't installed the device packages, not provide /etc/deviceinfo, so the scripts didn't auto configure correctly. Trying to fix this manually with add following xorg conf:

/etc/X11/xorg.conf.d/00-keyboard.conf

Section "InputClass"
        Identifier "system-keyboard"
        Driver  "evdev"
        MatchIsKeyboard "on"
        Option "XkbLayout" "us"
        Option "XkbModel" "pc105"
        Option "XkbOptions" "grp:alt_shift_toggle"
EndSection

but this not work

yangxuan8282 avatar Jan 19 '18 15:01 yangxuan8282