diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2006-04-27 19:52:22 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2006-04-27 19:52:22 +0000 |
commit | ed27cd970afc6b5a1f13bcbcfa6e6f2c17383ea3 (patch) | |
tree | 1705907342ecd5f075b44fae6b75b82b0a5d413d /sbin/pdisk/hfs_misc.h | |
parent | e317d0527a2e9963eb4d77f7416c9714f02efcfd (diff) |
update for pdisk 0.8a2, from NetBSD, retaining our local changes;
summing it up:
- Clean up sources - fix naming, delete old email addresses
- Added support for display of Mac volume names
- Fix block 0 display to show logical offset of drivers
- Require confirmation of quit without write
- Fix iteration to not complain about missing devices
- Warn when creating/writing a map with more than 15 entries
and, most important, add do_update_dpme() which allows us to partition
OpenBSD slices without previous MacOS setup.
Tested with shared MacOS install on macppc, procedure there remains the
same.
grammer and spelling help and ok jmc@
ok miod@
Diffstat (limited to 'sbin/pdisk/hfs_misc.h')
-rw-r--r-- | sbin/pdisk/hfs_misc.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sbin/pdisk/hfs_misc.h b/sbin/pdisk/hfs_misc.h new file mode 100644 index 00000000000..80add2a832d --- /dev/null +++ b/sbin/pdisk/hfs_misc.h @@ -0,0 +1,41 @@ +// +// hfs_misc.h - hfs routines +// +// Written by Eryk Vershen +// + +/* + * Copyright 2000 by Eryk Vershen + */ + +#ifndef __hfs_misc__ +#define __hfs_misc__ + +#include "partition_map.h" + +// +// Defines +// + + +// +// Types +// + + +// +// Global Constants +// + + +// +// Global Variables +// + + +// +// Forward declarations +// +char *get_HFS_name(partition_map *entry, int *kind); + +#endif /* __hfs_misc__ */ |