diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2001-12-13 09:20:48 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2001-12-13 09:20:48 +0000 |
commit | 6d8b2cf9fbe2a41e1ab80cf83e42a0802505199c (patch) | |
tree | 7bdeeaa544220a5999c5cdbbda606c6451e9e80d /sys | |
parent | 435d459b77c471f2bcfe110600897fadc120da92 (diff) |
Add major for uda to the bootdev table.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/vax/vax/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/conf.c b/sys/arch/vax/vax/conf.c index a71141d8ba1..de1f076231a 100644 --- a/sys/arch/vax/vax/conf.c +++ b/sys/arch/vax/vax/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.31 2001/12/11 23:19:02 miod Exp $ */ +/* $OpenBSD: conf.c,v 1.32 2001/12/13 09:20:47 hugh Exp $ */ /* $NetBSD: conf.c,v 1.44 1999/10/27 16:38:54 ragge Exp $ */ /*- @@ -150,7 +150,8 @@ struct bdevmajtpl { } bdevtpls[] = { { BDEV_HP, 0 }, { BDEV_RK, 3 }, - { BDEV_IDC, 11 }, + { BDEV_UDA, 9 }, + { BDEV_IDC, 11 }, { BDEV_RL, 14 }, { BDEV_KDB, 16 }, { BDEV_RD, 19 }, |