From 9c45654ec54ef38ba5a6ba6e877c6eee5d310eca Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Fri, 13 May 2005 14:54:45 +0000 Subject: Separate button boxens from keyboards in the HIL device list. hilkbd will still match both, but will neither do the auto-layout dance nor attach as console for button boxens. --- sys/dev/hil/devlist2h.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/hil/devlist2h.awk') diff --git a/sys/dev/hil/devlist2h.awk b/sys/dev/hil/devlist2h.awk index 8c702ac02e8..4663efae4b9 100644 --- a/sys/dev/hil/devlist2h.awk +++ b/sys/dev/hil/devlist2h.awk @@ -1,5 +1,5 @@ #! /usr/bin/awk -f -# $OpenBSD: devlist2h.awk,v 1.2 2005/05/07 22:39:43 miod Exp $ +# $OpenBSD: devlist2h.awk,v 1.3 2005/05/13 14:54:44 miod Exp $ # # Copyright (c) 2003, Miodrag Vallat. # All rights reserved. @@ -41,7 +41,7 @@ NR == 1 { next } -$1 == "keyboard" || $1 == "mouse" || $1 == "idmodule" { +$1 == "keyboard" || $1 == "mouse" || $1 == "idmodule" || $1 == "buttonbox" { if (header == 0) { printf("const struct hildevice hildevs[] = {\n") -- cgit v1.2.3