kbdmux(4) keyboard multiplexer integration

o Add sys/dev/kbdmux/kbdmux.c to the source tree

o Add sys/modules/kbdmux/Makefile to the source tree

These are not yet connected to the build. Man page and other changes to follow.

MFC after:	1 week
This commit is contained in:
emax 2005-07-14 17:48:04 +00:00
parent 389f3fcd45
commit c79577cc17
2 changed files with 1326 additions and 0 deletions

1314
sys/dev/kbdmux/kbdmux.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,12 @@
# $Id: Makefile,v 1.1 2005/06/23 00:30:50 max Exp $
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/kbdmux
KMOD= kbdmux
SRCS= kbdmux.c opt_kbd.h
opt_kbd.h:
echo "#define KBD_INSTALL_CDEV 1" > ${.TARGET}
.include <bsd.kmod.mk>