diff options
author | 2004-12-02 22:22:11 +0000 | |
---|---|---|
committer | 2004-12-02 22:22:11 +0000 | |
commit | b327b72bf1d98c1619e0e72fdd148f207ca26da0 (patch) | |
tree | 30bcb7758d43a48182bd1fb59b42504af9decb92 | |
parent | pdisk on the ramdisk (diff) | |
download | wireguard-openbsd-b327b72bf1d98c1619e0e72fdd148f207ca26da0.tar.xz wireguard-openbsd-b327b72bf1d98c1619e0e72fdd148f207ca26da0.zip |
Default to A/UX partition type for OpenBSD newly created partitions on mac68k.
ok drahn@
-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"; |