diff options
Diffstat (limited to 'usr/src/cmd/hal/utils/fsutils.h')
| -rw-r--r-- | usr/src/cmd/hal/utils/fsutils.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/usr/src/cmd/hal/utils/fsutils.h b/usr/src/cmd/hal/utils/fsutils.h new file mode 100644 index 0000000000..f6dbd55e9e --- /dev/null +++ b/usr/src/cmd/hal/utils/fsutils.h @@ -0,0 +1,28 @@ +/*************************************************************************** + * + * fsutils.h : definitions for filesystem utilities + * + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. + * + * Licensed under the Academic Free License version 2.1 + * + **************************************************************************/ + +#pragma ident "%Z%%M% %I% %E% SMI" + +#ifndef FSUTILS_H +#define FSUTILS_H + +#include <sys/types.h> +#include <sys/vtoc.h> + +boolean_t dos_to_dev(char *path, char **devpath, int *num); +char *get_slice_name (char *devlink); +boolean_t is_dos_drive(uchar_t id); +boolean_t is_dos_extended(uchar_t id); +boolean_t find_dos_drive(int fd, int num, int *relsect, int *numsect, int *systid); +int get_num_dos_drives(int fd); +boolean_t vtoc_one_slice_entire_disk(struct vtoc *vtoc); + +#endif /* FSUTILS_H */ |
