diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-30 22:29:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-30 22:29:10 +0000 |
commit | 3bf07eae7f3b39cc8a717933a99014ce368af361 (patch) | |
tree | 4116a03dfaf84f061cb4a0ba612ff7f69df34366 /sys/arch/mvmeppc | |
parent | 71c3efe60df422b4e330db5d4e0164b4f994f4ff (diff) |
nam2blk[] clearly must contain "rd" ... found by krw
Diffstat (limited to 'sys/arch/mvmeppc')
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/autoconf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mvmeppc/mvmeppc/autoconf.c b/sys/arch/mvmeppc/mvmeppc/autoconf.c index 1c851f5ff73..c39f176080e 100644 --- a/sys/arch/mvmeppc/mvmeppc/autoconf.c +++ b/sys/arch/mvmeppc/mvmeppc/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.20 2007/11/04 13:43:39 martin Exp $ */ +/* $OpenBSD: autoconf.c,v 1.21 2008/03/30 22:29:09 deraadt Exp $ */ /* * Copyright (c) 1996, 1997 Per Fogelstrom * Copyright (c) 1995 Theo de Raadt @@ -37,7 +37,7 @@ * from: Utah Hdr: autoconf.c 1.31 91/01/21 * * from: @(#)autoconf.c 8.1 (Berkeley) 6/10/93 - * $Id: autoconf.c,v 1.20 2007/11/04 13:43:39 martin Exp $ + * $Id: autoconf.c,v 1.21 2008/03/30 22:29:09 deraadt Exp $ */ /* @@ -178,6 +178,7 @@ getdevunit(name, unit) struct nam2blk nam2blk[] = { { "wd", 0 }, { "sd", 2 }, + { "rd", 17 }, { "raid", 19 }, { NULL, -1 } }; |