summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/stand/tapeboot/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sun3/stand/tapeboot/conf.c')
-rw-r--r--sys/arch/sun3/stand/tapeboot/conf.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/arch/sun3/stand/tapeboot/conf.c b/sys/arch/sun3/stand/tapeboot/conf.c
new file mode 100644
index 00000000000..a62f7d1f6cb
--- /dev/null
+++ b/sys/arch/sun3/stand/tapeboot/conf.c
@@ -0,0 +1,11 @@
+/* $NetBSD: conf.c,v 1.1.1.1 1995/10/13 21:27:30 gwr Exp $ */
+
+#include <stand.h>
+#include <dev_tape.h>
+
+struct devsw devsw[] = {
+ { "tape", tape_strategy, tape_open, tape_close, tape_ioctl },
+};
+int ndevs = 1;
+
+int debug;