The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=43a62df0b464e60895084c7f9d9eddf70906fda3
commit 43a62df0b464e60895084c7f9d9eddf70906fda3 Author: Emmanuel Vadot <[email protected]> AuthorDate: 2024-07-10 08:12:48 +0000 Commit: Emmanuel Vadot <[email protected]> CommitDate: 2024-07-10 08:13:18 +0000 conf: powerpc: Add evdev to some kernel configs Fixes: 13d00a43cba4 ("conf: Add usbhid and hidbus to GENERIC* kernel configs") Sponsored by: Beckhoff Automation GmbH & Co. KG --- sys/powerpc/conf/MPC85XX | 5 +++++ sys/powerpc/conf/MPC85XXSPE | 5 +++++ sys/powerpc/conf/QORIQ64 | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/sys/powerpc/conf/MPC85XX b/sys/powerpc/conf/MPC85XX index 3c79eeebcf61..674e8cb23d4e 100644 --- a/sys/powerpc/conf/MPC85XX +++ b/sys/powerpc/conf/MPC85XX @@ -124,6 +124,11 @@ device videomode device vt device fbd +# evdev interface +options EVDEV_SUPPORT # evdev support in legacy drivers +device evdev # input event device support +device uinput # install /dev/uinput cdev + # HID support options HID_DEBUG # enable debug msgs device hid # Generic HID support diff --git a/sys/powerpc/conf/MPC85XXSPE b/sys/powerpc/conf/MPC85XXSPE index 99a583d109f4..207533c32559 100644 --- a/sys/powerpc/conf/MPC85XXSPE +++ b/sys/powerpc/conf/MPC85XXSPE @@ -139,6 +139,11 @@ device videomode device vt device fbd +# evdev interface +options EVDEV_SUPPORT # evdev support in legacy drivers +device evdev # input event device support +device uinput # install /dev/uinput cdev + # HID support options HID_DEBUG # enable debug msgs device hid # Generic HID support diff --git a/sys/powerpc/conf/QORIQ64 b/sys/powerpc/conf/QORIQ64 index 9b3205d33a7b..e72d967dd895 100644 --- a/sys/powerpc/conf/QORIQ64 +++ b/sys/powerpc/conf/QORIQ64 @@ -124,6 +124,11 @@ device ukbd device hms device ums +# evdev interface +options EVDEV_SUPPORT # evdev support in legacy drivers +device evdev # input event device support +device uinput # install /dev/uinput cdev + # HID support options HID_DEBUG # enable debug msgs device hid # Generic HID support
