diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-12-04 03:35:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-12-04 03:35:58 +0000 |
commit | 839f493475a308637b796351b841e958acc82e66 (patch) | |
tree | 8e74caee4546cebf0ae41367ea421188fd9a5842 | |
parent | ee8c34246d4383a265b6f7c90b7673e1be27e94b (diff) |
DOSPTYP_EXTENDL; sigh@kuzirabekon.econ.nagasaki-u.ac.jp
-rw-r--r-- | sys/arch/alpha/include/disklabel.h | 3 | ||||
-rw-r--r-- | sys/arch/arc/include/disklabel.h | 3 | ||||
-rw-r--r-- | sys/arch/i386/include/disklabel.h | 3 | ||||
-rw-r--r-- | sys/arch/powerpc/include/disklabel.h | 4 |
4 files changed, 9 insertions, 4 deletions
diff --git a/sys/arch/alpha/include/disklabel.h b/sys/arch/alpha/include/disklabel.h index 12ab27f209c..11eb2598036 100644 --- a/sys/arch/alpha/include/disklabel.h +++ b/sys/arch/alpha/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.11 1999/03/23 16:36:16 millert Exp $ */ +/* $OpenBSD: disklabel.h,v 1.12 1999/12/04 03:35:55 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.1 1995/02/13 23:07:34 cgd Exp $ */ /* @@ -86,6 +86,7 @@ struct dos_partition { #define DOSPTYP_FAT32 0x0b /* 32-bit FAT */ #define DOSPTYP_FAT32L 0x0c /* 32-bit FAT, LBA-mapped */ #define DOSPTYP_FAT16L 0x0e /* 16-bit FAT, LBA-mapped */ +#define DOSPTYP_EXTENDL 0x0f /* Extended, LBA-mapped; contains sub-partitions */ #define DOSPTYP_ONTRACK 0x54 #define DOSPTYP_LINUX 0x83 /* That other thing */ #define DOSPTYP_FREEBSD 0xa5 /* FreeBSD partition type */ diff --git a/sys/arch/arc/include/disklabel.h b/sys/arch/arc/include/disklabel.h index 9a31a425e2d..35b1a6c3033 100644 --- a/sys/arch/arc/include/disklabel.h +++ b/sys/arch/arc/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.15 1999/10/26 03:43:48 downsj Exp $ */ +/* $OpenBSD: disklabel.h,v 1.16 1999/12/04 03:35:57 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */ /* @@ -70,6 +70,7 @@ struct dos_partition { #define DOSPTYP_FAT32L 0x0c /* 32-bit FAT, LBA-mapped */ #define DOSPTYP_FAT16L 0x0e /* 16-bit FAT, LBA-mapped */ #define DOSPTYP_ONTRACK 0x54 +#define DOSPTYP_EXTENDL 0x0f /* Extended, LBA-mapped; contains sub-partitions */ #define DOSPTYP_LINUX 0x83 /* That other thing */ #define DOSPTYP_FREEBSD 0xa5 /* FreeBSD partition type */ #define DOSPTYP_OPENBSD 0xa6 /* OpenBSD partition type */ diff --git a/sys/arch/i386/include/disklabel.h b/sys/arch/i386/include/disklabel.h index 50e9cc753af..a985b4b7555 100644 --- a/sys/arch/i386/include/disklabel.h +++ b/sys/arch/i386/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.21 1999/10/26 03:43:48 downsj Exp $ */ +/* $OpenBSD: disklabel.h,v 1.22 1999/12/04 03:35:57 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */ /* @@ -67,6 +67,7 @@ struct dos_partition { #define DOSPTYP_FAT32 0x0b /* 32-bit FAT */ #define DOSPTYP_FAT32L 0x0c /* 32-bit FAT, LBA-mapped */ #define DOSPTYP_FAT16L 0x0e /* 16-bit FAT, LBA-mapped */ +#define DOSPTYP_EXTENDL 0x0f /* Extended, LBA-mapped; contains sub-partitions */ #define DOSPTYP_ONTRACK 0x54 #define DOSPTYP_LINUX 0x83 /* That other thing */ #define DOSPTYP_FREEBSD 0xa5 /* FreeBSD partition type */ diff --git a/sys/arch/powerpc/include/disklabel.h b/sys/arch/powerpc/include/disklabel.h index 93e2bd92243..1e76f9d9725 100644 --- a/sys/arch/powerpc/include/disklabel.h +++ b/sys/arch/powerpc/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.12 1999/10/26 03:43:48 downsj Exp $ */ +/* $OpenBSD: disklabel.h,v 1.13 1999/12/04 03:35:57 deraadt Exp $ */ /* * Copyright (c) 1994 Christopher G. Demetriou @@ -69,7 +69,9 @@ struct dos_partition { #define DOSPTYP_EXTEND 0x05 /* Extended; contains sub-partitions */ #define DOSPTYP_FAT16B 0x06 /* 16-bit FAT, more than 32M */ #define DOSPTYP_FAT32 0x0b /* 32-bit FAT */ +#define DOSPTYP_FAT32L 0x0c /* 32-bit FAT, LBA-mapped */ #define DOSPTYP_FAT16C 0x0e /* 16-bit FAT, CHS-mapped */ +#define DOSPTYP_EXTENDL 0x0f /* Extended, LBA-mapped; contains sub-partitions */ #define DOSPTYP_ONTRACK 0x54 #define DOSPTYP_LINUX 0x83 /* That other thing */ #define DOSPTYP_FREEBSD 0xa5 /* FreeBSD partition type */ |