mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
- Convert "options EVDEV" to "device evdev" and "device uinput", add
modules for both new devices. They are isolated subsystems and do not
require any compile-time changes to general kernel subsytems
- For hybrid drivers that have evdev as an optional way to deliver input
events add option EVDEV_SUPPORT. Update all existing hybrid drivers
to use it instead of EVDEV
- Remove no-op DECLARE_MODULE in evdev, it's not required, MODULE_VERSION
is enough
- Add evdev module dependency to uinput
Submitted by: Vladimir Kondratiev <wulf@cicgroup.ru>
9 lines
170 B
Makefile
9 lines
170 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/evdev
|
|
|
|
KMOD= evdev
|
|
SRCS= cdev.c evdev.c evdev_mt.c evdev_utils.c
|
|
SRCS+= opt_evdev.h bus_if.h device_if.h
|
|
|
|
.include <bsd.kmod.mk>
|