diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-12-02 22:22:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-12-02 22:22:12 +0000 |
commit | ce7f9f5f9741a1d8317fea95cb39c801b17c446d (patch) | |
tree | 1ae926a46c6adaaee7c7b0a58833fc6ec8bdc485 /sbin | |
parent | 06ce59abd59e4f7dd50c486f0d7b5905f53a5a7a (diff) |
Default to A/UX partition type for OpenBSD newly created partitions on mac68k.
ok drahn@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pdisk/partition_map.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sbin/pdisk/partition_map.c b/sbin/pdisk/partition_map.c index f109d899ebc..0751d336614 100644 --- a/sbin/pdisk/partition_map.c +++ b/sbin/pdisk/partition_map.c @@ -70,7 +70,11 @@ // const char * kFreeType = "Apple_Free"; const char * kMapType = "Apple_partition_map"; +#ifdef __m68k__ +const char * kUnixType = "Apple_UNIX_SVR2"; +#else const char * kUnixType = "OpenBSD"; +#endif const char * kHFSType = "Apple_HFS"; const char * kPatchType = "Apple_Patches"; |