From 28c60eacc16816f1ef22624975438c64481303f9 Mon Sep 17 00:00:00 2001 From: thorpej Date: Thu, 17 Aug 1995 16:26:54 +0000 Subject: [PATCH] Add disk types for the ccd and vnd. --- sys/sys/disklabel.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index 48bc88f42ea3..3905713ca539 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -1,4 +1,4 @@ -/* $NetBSD: disklabel.h,v 1.33 1995/03/26 20:23:59 jtc Exp $ */ +/* $NetBSD: disklabel.h,v 1.34 1995/08/17 16:26:54 thorpej Exp $ */ /* * Copyright (c) 1987, 1988, 1993 @@ -190,6 +190,8 @@ struct disklabel { #define DTYPE_HPIB 7 /* CS/80 on HP-IB */ #define DTYPE_HPFL 8 /* HP Fiber-link */ #define DTYPE_FLOPPY 10 /* floppy */ +#define DTYPE_CCD 11 /* concatenated disk device */ +#define DTYPE_VND 12 /* vnode pseudo-disk */ #ifdef DKTYPENAMES static char *dktypenames[] = { @@ -204,6 +206,8 @@ static char *dktypenames[] = { "HP-FL", "type 9", "floppy", + "ccd", + "vnd", NULL }; #define DKMAXTYPES (sizeof(dktypenames) / sizeof(dktypenames[0]) - 1)