diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2008-07-21 04:35:55 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2008-07-21 04:35:55 +0000 |
commit | d34de5d308fd2da85fca20d1c532458723a9d1bd (patch) | |
tree | a23631277c5c22da911796d022dcd526ef299f86 /sys/arch/vax | |
parent | 84a77957ac0146e1470a5eace2f2370b56cee53e (diff) |
nam2blk[] needs a "vnd" entry for some things (like softraid)
ok marco@ no objection miod@ need this for regress djm@ no objection krw@
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/autoconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/vax/autoconf.c b/sys/arch/vax/vax/autoconf.c index 0d0e43da7ea..ca7153c4732 100644 --- a/sys/arch/vax/vax/autoconf.c +++ b/sys/arch/vax/vax/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.29 2007/06/01 19:25:10 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.30 2008/07/21 04:35:54 todd Exp $ */ /* $NetBSD: autoconf.c,v 1.45 1999/10/23 14:56:05 ragge Exp $ */ /* @@ -467,5 +467,6 @@ struct nam2blk nam2blk[] = { { "cd", 22 }, { "rd", 23 }, { "raid", 25 }, + { "vnd", 18 }, { NULL, -1 } }; |