svn commit: r272934 - stable/9/sys/boot/common

Andrey V. Elsukov ae at FreeBSD.org
Sat Oct 11 06:22:58 UTC 2014


Author: ae
Date: Sat Oct 11 06:22:57 2014
New Revision: 272934
URL: https://svnweb.freebsd.org/changeset/base/272934

Log:
  MFC r272487:
    Add UUID of FreeBSD slice to GPT scheme.

Modified:
  stable/9/sys/boot/common/part.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/boot/   (props changed)

Modified: stable/9/sys/boot/common/part.c
==============================================================================
--- stable/9/sys/boot/common/part.c	Sat Oct 11 06:04:44 2014	(r272933)
+++ stable/9/sys/boot/common/part.c	Sat Oct 11 06:22:57 2014	(r272934)
@@ -53,6 +53,7 @@ static const uuid_t gpt_uuid_unused = GP
 static const uuid_t gpt_uuid_ms_basic_data = GPT_ENT_TYPE_MS_BASIC_DATA;
 static const uuid_t gpt_uuid_freebsd_ufs = GPT_ENT_TYPE_FREEBSD_UFS;
 static const uuid_t gpt_uuid_efi = GPT_ENT_TYPE_EFI;
+static const uuid_t gpt_uuid_freebsd = GPT_ENT_TYPE_FREEBSD;
 static const uuid_t gpt_uuid_freebsd_boot = GPT_ENT_TYPE_FREEBSD_BOOT;
 static const uuid_t gpt_uuid_freebsd_nandfs = GPT_ENT_TYPE_FREEBSD_NANDFS;
 static const uuid_t gpt_uuid_freebsd_swap = GPT_ENT_TYPE_FREEBSD_SWAP;
@@ -139,6 +140,8 @@ gpt_parttype(uuid_t type)
 		return (PART_FREEBSD_VINUM);
 	else if (uuid_equal(&type, &gpt_uuid_freebsd_nandfs, NULL))
 		return (PART_FREEBSD_NANDFS);
+	else if (uuid_equal(&type, &gpt_uuid_freebsd, NULL))
+		return (PART_FREEBSD);
 	return (PART_UNKNOWN);
 }
 


More information about the svn-src-all mailing list