diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-22 11:59:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-22 11:59:12 +0000 |
commit | 45d66f70648de09cb68227f7bc36df4b3c144a6d (patch) | |
tree | 6b3e10f3990bb400d467dcadb21cf4f03b7aa764 /sbin/wsconsctl/util.c | |
parent | 2859385583ab340f0cbf668de9bb48e8553d3e76 (diff) |
Driver for the Apollo Domain keyboard and mouse, for the HP 9000/4xx series.
Claims the console keyboard if a keyboard is detected at boot time,
otherwise HIL is preferred (but due to wsmux both can be used simultaneously).
Diffstat (limited to 'sbin/wsconsctl/util.c')
-rw-r--r-- | sbin/wsconsctl/util.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sbin/wsconsctl/util.c b/sbin/wsconsctl/util.c index 781312d0fc4..714d312de0b 100644 --- a/sbin/wsconsctl/util.c +++ b/sbin/wsconsctl/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.28 2005/01/17 04:21:05 drahn Exp $ */ +/* $OpenBSD: util.c,v 1.29 2005/04/22 11:59:10 miod Exp $ */ /* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */ /*- @@ -71,7 +71,8 @@ static const struct nameint kbtype_tab[] = { { WSKBD_TYPE_HIL, "hil" }, { WSKBD_TYPE_GSC, "hp-ps2" }, { WSKBD_TYPE_LUNA, "luna" }, - { WSKBD_TYPE_ZAURUS, "zaurus" } + { WSKBD_TYPE_ZAURUS, "zaurus" }, + { WSKBD_TYPE_DOMAIN, "domain" } }; static const struct nameint mstype_tab[] = { @@ -85,7 +86,8 @@ static const struct nameint mstype_tab[] = { { WSMOUSE_TYPE_ARCHIMEDES, "archimedes" }, { WSMOUSE_TYPE_ADB, "adb" }, { WSMOUSE_TYPE_HIL, "hil" }, - { WSMOUSE_TYPE_LUNA, "luna" } + { WSMOUSE_TYPE_LUNA, "luna" }, + { WSMOUSE_TYPE_DOMAIN, "domain" } }; static const struct nameint dpytype_tab[] = { |