Integrate apmlabel and HFS+ file system.

This commit is contained in:
dillo 2007-03-05 23:19:17 +00:00
parent 7e98ba85a6
commit 2d2ddd2830
3 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: ALL,v 1.83 2007/03/01 14:57:38 kiyohara Exp $ # $NetBSD: ALL,v 1.84 2007/03/05 23:19:18 dillo Exp $
# From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
# #
# ALL machine description file # ALL machine description file
@ -17,7 +17,7 @@ include "arch/i386/conf/std.i386"
options INCLUDE_CONFIG_FILE # embed config file in kernel binary options INCLUDE_CONFIG_FILE # embed config file in kernel binary
#ident "ALL-$Revision: 1.83 $" #ident "ALL-$Revision: 1.84 $"
maxusers 32 # estimated number of users maxusers 32 # estimated number of users
@ -173,6 +173,7 @@ file-system PTYFS # /dev/ptm support
file-system TMPFS # Efficient memory file-system file-system TMPFS # Efficient memory file-system
file-system UDF # experimental - OSTA UDF CD/DVD file-system file-system UDF # experimental - OSTA UDF CD/DVD file-system
file-system PUFFS # experimental - Userspace file system support file-system PUFFS # experimental - Userspace file system support
file-system HFSP # experimental - Apple HFS+ file system
# File system options # File system options
options QUOTA # UFS quotas options QUOTA # UFS quotas

View File

@ -1,4 +1,4 @@
/* $NetBSD: vnode.h,v 1.165 2007/03/04 06:03:42 christos Exp $ */ /* $NetBSD: vnode.h,v 1.166 2007/03/05 23:19:17 dillo Exp $ */
/* /*
* Copyright (c) 1989, 1993 * Copyright (c) 1989, 1993
@ -71,7 +71,7 @@ enum vtagtype {
VT_FDESC, VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_FDESC, VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS,
VT_AFS, VT_ISOFS, VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_CODA, VT_AFS, VT_ISOFS, VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_CODA,
VT_FILECORE, VT_NTFS, VT_VFS, VT_OVERLAY, VT_SMBFS, VT_PTYFS, VT_FILECORE, VT_NTFS, VT_VFS, VT_OVERLAY, VT_SMBFS, VT_PTYFS,
VT_TMPFS, VT_UDF, VT_SYSVBFS, VT_PUFFS VT_TMPFS, VT_UDF, VT_SYSVBFS, VT_PUFFS, VT_HFSP
}; };
#define VNODE_TAGS \ #define VNODE_TAGS \
@ -79,7 +79,7 @@ enum vtagtype {
"VT_FDESC", "VT_PORTAL", "VT_NULL", "VT_UMAP", "VT_KERNFS", "VT_PROCFS", \ "VT_FDESC", "VT_PORTAL", "VT_NULL", "VT_UMAP", "VT_KERNFS", "VT_PROCFS", \
"VT_AFS", "VT_ISOFS", "VT_UNION", "VT_ADOSFS", "VT_EXT2FS", "VT_CODA", \ "VT_AFS", "VT_ISOFS", "VT_UNION", "VT_ADOSFS", "VT_EXT2FS", "VT_CODA", \
"VT_FILECORE", "VT_NTFS", "VT_VFS", "VT_OVERLAY", "VT_SMBFS", "VT_PTYFS", \ "VT_FILECORE", "VT_NTFS", "VT_VFS", "VT_OVERLAY", "VT_SMBFS", "VT_PTYFS", \
"VT_TMPFS", "VT_UDF", "VT_SYSVBFS", "VT_PUFFS" "VT_TMPFS", "VT_UDF", "VT_SYSVBFS", "VT_PUFFS", "VT_HFSP"
LIST_HEAD(buflists, buf); LIST_HEAD(buflists, buf);

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.33 2007/03/04 09:43:54 christos Exp $ */ /* $NetBSD: pmap.c,v 1.34 2007/03/05 23:19:17 dillo Exp $ */
/* /*
* Copyright (c) 2002, 2003 The NetBSD Foundation, Inc. * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #ifndef lint
__RCSID("$NetBSD: pmap.c,v 1.33 2007/03/04 09:43:54 christos Exp $"); __RCSID("$NetBSD: pmap.c,v 1.34 2007/03/05 23:19:17 dillo Exp $");
#endif #endif
#include <string.h> #include <string.h>
@ -418,6 +418,7 @@ PMAPFUNC(dump_vm_map_entry,VERSION)(kvm_t *kd,
case VT_UDF: case VT_UDF:
case VT_SYSVBFS: case VT_SYSVBFS:
case VT_PUFFS: case VT_PUFFS:
case VT_HFSP:
break; break;
} }
} }