summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2004-01-13 12:00:21 +0000
committermiod <miod@openbsd.org>2004-01-13 12:00:21 +0000
commitccb41cb6e777224b1d4b5df1ca0e888ac5ad6726 (patch)
tree66e03c268172aa15f1bc8f2d0e99c35a9811d157
parentavoid installing headers during `install', since this is already done (diff)
downloadwireguard-openbsd-ccb41cb6e777224b1d4b5df1ca0e888ac5ad6726.tar.xz
wireguard-openbsd-ccb41cb6e777224b1d4b5df1ca0e888ac5ad6726.zip
Dusty, useless files are better found in the Attic.
-rw-r--r--sys/arch/mvme88k/stand/bootsd/README7
-rw-r--r--sys/arch/mvme88k/stand/libbug/outch.c17
2 files changed, 0 insertions, 24 deletions
diff --git a/sys/arch/mvme88k/stand/bootsd/README b/sys/arch/mvme88k/stand/bootsd/README
deleted file mode 100644
index 47a7aab2813..00000000000
--- a/sys/arch/mvme88k/stand/bootsd/README
+++ /dev/null
@@ -1,7 +0,0 @@
-In short:
- cd /usr/mdec
- cp bootsd /
- ./installboot -v /bootsd ./bootxx /dev/rsd0a
-
- (you will need to be single user to run installboot since it writes
- to a raw disk device)
diff --git a/sys/arch/mvme88k/stand/libbug/outch.c b/sys/arch/mvme88k/stand/libbug/outch.c
deleted file mode 100644
index 6097207ea79..00000000000
--- a/sys/arch/mvme88k/stand/libbug/outch.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* $OpenBSD: outch.c,v 1.2 2001/07/04 08:09:28 niklas Exp $ */
-
-/*
- * bug routines -- assumes that the necessary sections of memory
- * are preserved.
- */
-#include <sys/types.h>
-#include <machine/prom.h>
-
-void
-mvmeprom_outchr(a)
- char a;
-{
- asm volatile ("or r2, r0, %0" : :"r" (a));
- BUG_CALL(_OUTCHR);
-}
-