Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sbin/disklabel Pull up revision 1.18 (requested by tv i...



details:   https://anonhg.NetBSD.org/src/rev/3943a26f6216
branches:  netbsd-1-6
changeset: 530681:3943a26f6216
user:      tron <tron%NetBSD.org@localhost>
date:      Tue Sep 09 20:03:37 2003 +0000

description:
Pull up revision 1.18 (requested by tv in ticket #1454):
add DTYPE_JFS2 and FS_JFS2 for IBM Journaled File System
this is to match FreeBSD's disklabel.h revision 1.73
FreeBSD change was requested by Hiten Pandya <hiten%uk.FreeBSD.org@localhost>

diffstat:

 sbin/disklabel/disklabel.5 |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (41 lines):

diff -r 609cd7e9308b -r 3943a26f6216 sbin/disklabel/disklabel.5
--- a/sbin/disklabel/disklabel.5        Tue Sep 09 20:02:30 2003 +0000
+++ b/sbin/disklabel/disklabel.5        Tue Sep 09 20:03:37 2003 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: disklabel.5,v 1.15.2.2 2003/09/09 20:02:30 tron Exp $
+.\"    $NetBSD: disklabel.5,v 1.15.2.3 2003/09/09 20:03:37 tron Exp $
 .\"
 .\" Copyright (c) 1987, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -259,6 +259,7 @@
 #define DTYPE_ATAPI    13      /* ATAPI */
 #define DTYPE_RAID     14      /* RAIDframe */
 #define DTYPE_LD       15      /* logical disk */
+#define DTYPE_JFS2     16      /* IBM JFS2 */
 
 #ifdef DKTYPENAMES
 static const char *const dktypenames[] = {
@@ -278,6 +279,7 @@
        "ATAPI",
        "RAID",
        "ld",
+       "jfs",
        NULL
 };
 #define DKMAXTYPES     (sizeof(dktypenames) / sizeof(dktypenames[0]) - 1)
@@ -309,6 +311,7 @@
 #define        FS_NTFS         18      /* Windows/NT file system */
 #define        FS_RAID         19      /* RAIDframe component */
 #define        FS_CCD          20      /* concatenated disk component */
+#define        FS_JFS2         21              /* IBM JFS2 */
 
 #ifdef FSTYPENAMES
 static const char *const fstypenames[] = {
@@ -333,6 +336,7 @@
        "NTFS",
        "RAID",
        "ccd",
+       "jfs",
        NULL
 };
 #define FSMAXTYPES     (sizeof(fstypenames) / sizeof(fstypenames[0]) - 1)



Home | Main Index | Thread Index | Old Index