summaryrefslogtreecommitdiff
path: root/hw/kdrive/vxworks/vxworks.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-05-16 08:16:01 -0400
committerAdam Jackson <ajax@redhat.com>2008-05-16 08:16:01 -0400
commit99e4531f7c3fafce065dfd21f65bad1cf190c3f1 (patch)
tree3f1f07321ec6d85338aa29d5777d3558d1a42553 /hw/kdrive/vxworks/vxworks.c
parent7cabf81c8638739a15a1be6baa3fc569f38e7589 (diff)
The great kdrive purge.
Most of these drivers didn't work. ati was the only one that even came close. The igs, ipaq, itsy, pcmcia, savage, sis530, trident, trio, ts300, and vxworks directories have never built since modularisation, so clearly no one can miss them.
Diffstat (limited to 'hw/kdrive/vxworks/vxworks.c')
-rw-r--r--hw/kdrive/vxworks/vxworks.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/hw/kdrive/vxworks/vxworks.c b/hw/kdrive/vxworks/vxworks.c
deleted file mode 100644
index c9e2be7cc..000000000
--- a/hw/kdrive/vxworks/vxworks.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright © 1999 Network Computing Devices, Inc. All rights reserved.
- *
- * Author: Keith Packard
- */
-
-#ifdef HAVE_CONFIG_H
-#include <kdrive-config.h>
-#endif
-#include "kdrive.h"
-#include <X11/keysym.h>
-
-Bool
-VxWorksSpecialKey (KeySym sym)
-{
- switch (sym) {
- case XK_Sys_Req:
- download(1, "setup", 0);
- return TRUE;
- case XK_Break:
- download(1, "launcher", 0);
- return TRUE;
- }
- return FALSE;
-}
-
-void
-KdOsAddInputDrivers (void)
-{
- KdAddPointerDriver(&VxWorksMouseDriver);
- KdAddPointerDriver(&VxWorksKeyboardDriver);
-}
-
-KdOsFuncs VxWorksFuncs = {
- .SpecialKey = VxWorksSpecialKey,
-};
-
-void
-OsVendorInit (void)
-{
- KdOsInit (&VxWorksFuncs);
-}