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:
Maksim Yevmenkin 2005-07-14 17:48:04 +00:00
parent 1b3a4f4e7b
commit dfa494399b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=147999
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>