diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-06-01 17:10:01 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-06-01 17:10:01 +0000 |
commit | cb47316cc89c30d36f1aa630684b83c31c37e3e9 (patch) | |
tree | 875907f680c6be42d28994230f7f73b716443f8e /sys/arch | |
parent | 3ae9babc721171e0850f5a0e329caa13e39fdaf2 (diff) |
Fix cd block major number
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/vax/autoconf.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/arch/vax/vax/autoconf.c b/sys/arch/vax/vax/autoconf.c index e38c18d381a..90566830a9a 100644 --- a/sys/arch/vax/vax/autoconf.c +++ b/sys/arch/vax/vax/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.27 2007/05/25 14:50:38 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.28 2007/06/01 17:10:00 miod Exp $ */ /* $NetBSD: autoconf.c,v 1.45 1999/10/23 14:56:05 ragge Exp $ */ /* @@ -455,13 +455,15 @@ struct ngcconf { }; struct nam2blk nam2blk[] = { - { "ra", 9 }, - { "rx", 12 }, - { "rl", 14 }, + { "ra", 9 }, + { "rx", 12 }, +#ifdef notyet + { "rl", 14 }, +#endif { "hd", 19 }, - { "sd", 20 }, - { "rd", 23 }, - { "raid", 25 }, - { "cd", 61 }, + { "sd", 20 }, + { "cd", 22 }, + { "rd", 23 }, + { "raid", 25 }, { NULL, -1 } }; |