summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2004-12-02 22:22:11 +0000
committermiod <miod@openbsd.org>2004-12-02 22:22:11 +0000
commitb327b72bf1d98c1619e0e72fdd148f207ca26da0 (patch)
tree30bcb7758d43a48182bd1fb59b42504af9decb92
parentpdisk on the ramdisk (diff)
downloadwireguard-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.c4
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";