diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-30 22:19:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-30 22:19:34 +0000 |
commit | 71c3efe60df422b4e330db5d4e0164b4f994f4ff (patch) | |
tree | 15bc70dc39dd9cad97a6294c528f110cedeed13e /sys/arch/macppc | |
parent | 747324c0f4116798554d60b2c5968a0d0ff363eb (diff) |
nam2blk[] clearly must contain "rd" ... found by krw
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/autoconf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/autoconf.c b/sys/arch/macppc/macppc/autoconf.c index 2a2bf08f6c4..8a2bddf9d9e 100644 --- a/sys/arch/macppc/macppc/autoconf.c +++ b/sys/arch/macppc/macppc/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.34 2007/09/09 15:24:53 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.35 2008/03/30 22:19:33 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.34 2007/09/09 15:24:53 deraadt Exp $ + * $Id: autoconf.c,v 1.35 2008/03/30 22:19:33 deraadt Exp $ */ /* @@ -289,6 +289,7 @@ diskconf(void) struct nam2blk nam2blk[] = { { "wd", 0 }, { "sd", 2 }, + { "rd", 17 }, { "raid", 19 }, { NULL, -1 } }; |