summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2010-07-01 00:43:08 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2010-07-01 00:43:08 +0000
commit76d04092efe0d0cffc0a15f7d7222997efdd0ca4 (patch)
tree09b302a4fa196f3b5cb3ea30360d64ac151303e9 /sys/dev
parenta9d65f4637b992dc941332d2b7166f42101e9d33 (diff)
remove crappy old README files
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/README21
-rw-r--r--sys/dev/rasops/README21
2 files changed, 0 insertions, 42 deletions
diff --git a/sys/dev/pci/README b/sys/dev/pci/README
deleted file mode 100644
index 7151b10fd88..00000000000
--- a/sys/dev/pci/README
+++ /dev/null
@@ -1,21 +0,0 @@
-$OpenBSD: README,v 1.2 1997/11/07 08:07:26 niklas Exp $
-$NetBSD: README,v 1.2 1994/10/27 04:21:29 cgd Exp $
-
-This directory contains files which are used during PCI configuration
-and PCI device drivers. Eventually, most of the device drivers and
-some of the configuration support should become machine-independent
-and be moved to a more general location.
-
-The configuration support was implemented according to the `PCI Local
-Bus Specification, Production Version, Revision 2.0' dated April 30,
-1993. Section numbers referred to in the code may be specific to that
-edition of the specification.
-
-Some attempt has been made to insure that the code works on rogue
-machines where the BIOS doesn't do its job, but in general I can't
-guarantee that.
-
---
-- Charles Hannum
- NetBSD group
- August 8, 1994
diff --git a/sys/dev/rasops/README b/sys/dev/rasops/README
deleted file mode 100644
index 159a13faf5c..00000000000
--- a/sys/dev/rasops/README
+++ /dev/null
@@ -1,21 +0,0 @@
-$OpenBSD: README,v 1.2 2005/01/14 22:45:29 miod Exp $
-$NetBSD: README,v 1.3 1999/08/24 11:07:31 ad Exp $
-
-This directory contains `rasops', a set of raster operations intended to
-replace the dev/rcons/raster stuff for both wscons and rcons. It yields
-significantly improved performance, supports multiple depths and color.
-
-Issues/TODO:
-
-- There is no generic `putchar' function for 2bpp
-- Color handling for 2bpp is broken
-- copycols() from rasops_bitops.h is broken in right->left case
-- The stamp mutex is not particularly safe
-- 64-bit types are not used on machines that are 64-bit
-- We should never be doing reads/writes of less than 32-bits
-- Flags in attribute values are hardcoded
-- Need a manpage
-- Should handle multiple fonts simultaneously
-- Generate an `empty' box character when we have no match?
-- Use 'int' in lieu of 'int32' where we can
-- Compress some cases in rasops1.c