diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-10-10 20:15:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-10-10 20:15:24 +0000 |
commit | a8f966009c6aaabb3748b86338f49b33d5664e02 (patch) | |
tree | 28abdc1e300c683a5f34c911a7a3193879f30497 /etc/MAKEDEV.common | |
parent | 4314800b8bdf162b7ebaf6d8599ebde0c7b1c9e0 (diff) |
skip making /dev/prandom. as a side effect, /dev/arandom becomes minor 3.
but that is OK because both minor 3 and 4 now do the same thing. eventually,
2 releases from now, everyone will have forgotten about minor 4 and we can
delete the support code for it from sys/dev/rnd.c
various versions of this looked at by millert and todd
Diffstat (limited to 'etc/MAKEDEV.common')
-rw-r--r-- | etc/MAKEDEV.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/MAKEDEV.common b/etc/MAKEDEV.common index e4419eb0f6e..cbb054b7cac 100644 --- a/etc/MAKEDEV.common +++ b/etc/MAKEDEV.common @@ -1,4 +1,4 @@ -vers(a, {-$OpenBSD: MAKEDEV.common,v 1.39 2008/07/14 16:22:23 miod Exp $-})dnl +vers(a, {-$OpenBSD: MAKEDEV.common,v 1.40 2008/10/10 20:15:23 deraadt Exp $-})dnl dnl dnl Copyright (c) 2001-2006 Todd T. Fries <todd@OpenBSD.org> dnl @@ -510,7 +510,7 @@ _cdev(lkm, lkm, {-major_lkm_c-}, 0, 640, _lkm)dnl __devitem(tun, tun*, Network tunnel driver)dnl __devitem(rnd, *random, In-kernel random data source,random)dnl _mkdev(rnd, *random, {-n=0 - for pre in " " s u p a + for pre in " " s u a do M ${pre}random c major_rnd_c $n 644 n=Add($n, 1) |