summaryrefslogtreecommitdiff
path: root/sys/dev/wscons/wskbd.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-08-14 17:41:09 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-08-14 17:41:09 +0000
commit1c45deb7f8c1708b4ffef3a96fe2ced64f4a8803 (patch)
treed01b16e513f6fcd9fd1a873d0d37216dc8ad156c /sys/dev/wscons/wskbd.c
parent59edee03753d98a9a3d73675ae10fcbd4bbbd2e9 (diff)
Really do what I intended on SMALL_KERNEL configurations.
Diffstat (limited to 'sys/dev/wscons/wskbd.c')
-rw-r--r--sys/dev/wscons/wskbd.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/wscons/wskbd.c b/sys/dev/wscons/wskbd.c
index 7c39a8bff9f..27d39c6f242 100644
--- a/sys/dev/wscons/wskbd.c
+++ b/sys/dev/wscons/wskbd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wskbd.c,v 1.52 2006/08/14 15:56:02 miod Exp $ */
+/* $OpenBSD: wskbd.c,v 1.53 2006/08/14 17:41:08 miod Exp $ */
/* $NetBSD: wskbd.c,v 1.80 2005/05/04 01:52:16 augustss Exp $ */
/*
@@ -110,11 +110,12 @@
#include "wskbd.h"
#include "wsmux.h"
-#ifndef SMALL_KERNEL
-#define BURNER_SUPPORT
-#define SCROLLBACK_SUPPORT
+#ifdef SMALL_KERNEL
#undef NWSKBD_HOTKEY
#define NWSKBD_HOTKEY 0
+#else
+#define BURNER_SUPPORT
+#define SCROLLBACK_SUPPORT
#endif
#ifdef WSKBD_DEBUG