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/alpha | |
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/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/autoconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/autoconf.c b/sys/arch/alpha/alpha/autoconf.c index 112f8aa12a3..22dcba852d5 100644 --- a/sys/arch/alpha/alpha/autoconf.c +++ b/sys/arch/alpha/alpha/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.31 2007/06/01 19:25:09 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.32 2008/07/21 04:35:53 todd Exp $ */ /* $NetBSD: autoconf.c,v 1.16 1996/11/13 21:13:04 cgd Exp $ */ /* @@ -218,5 +218,6 @@ struct nam2blk nam2blk[] = { { "sd", 8 }, { "wd", 0 }, { "raid", 16 }, + { "vnd", 9 }, { NULL, -1 } }; |