diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-22 11:40:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-22 11:40:50 +0000 |
commit | 12a1429490c78d9d5257d007ca0392e26abf3293 (patch) | |
tree | d69a35024fb325e30f3f44361a808a34a94c83b9 | |
parent | c3151de46de121b751744b824d6319461b568dac (diff) |
acorn filesystem addition
-rw-r--r-- | sys/sys/disklabel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index fed79fb3794..d7942b4a320 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -1,5 +1,5 @@ -/* $OpenBSD: disklabel.h,v 1.7 1996/05/02 13:14:51 deraadt Exp $ */ -/* $NetBSD: disklabel.h,v 1.40 1996/04/22 01:23:13 christos Exp $ */ +/* $OpenBSD: disklabel.h,v 1.8 1996/05/22 11:40:49 deraadt Exp $ */ +/* $NetBSD: disklabel.h,v 1.41 1996/05/10 23:07:37 mark Exp $ */ /* * Copyright (c) 1987, 1988, 1993 @@ -235,6 +235,7 @@ static char *dktypenames[] = { #define FS_BOOT 13 /* partition contains bootstrap */ #define FS_ADOS 14 /* AmigaDOS fast file system */ #define FS_HFS 15 /* Macintosh HFS */ +#define FS_ADFS 16 /* Acorn Disk Filing System */ #ifdef DKTYPENAMES static char *fstypenames[] = { @@ -254,6 +255,7 @@ static char *fstypenames[] = { "boot", "ADOS", "HFS", + "ADFS", NULL }; #define FSMAXTYPES (sizeof(fstypenames) / sizeof(fstypenames[0]) - 1) |