diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-03 03:44:36 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-03 03:44:36 +0000 |
commit | 9ede7fad7669ae5142d61989dcbf9978995cc745 (patch) | |
tree | 2966f052a688dfb235f5a48bd7f15b7d13338676 /Tools/XMLSchema | |
parent | e2d926ece994552ad7cc067e55ace554538fdabd (diff) | |
download | edk2-platforms-9ede7fad7669ae5142d61989dcbf9978995cc745.tar.xz |
Added two optional attributes to the Cloned element, FarGuid and Id that can be used to track the heritage.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@717 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/XMLSchema')
-rw-r--r-- | Tools/XMLSchema/FrameworkDataElements.xsd | 8 | ||||
-rw-r--r-- | Tools/XMLSchema/SurfaceArea.xsd | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/Tools/XMLSchema/FrameworkDataElements.xsd b/Tools/XMLSchema/FrameworkDataElements.xsd index 59bdcbdebe..783e11375d 100644 --- a/Tools/XMLSchema/FrameworkDataElements.xsd +++ b/Tools/XMLSchema/FrameworkDataElements.xsd @@ -548,6 +548,10 @@ <xs:element minOccurs="1" maxOccurs="1" name="ModuleGuid" type="GuidType"/>
<xs:element minOccurs="1" maxOccurs="1" name="ModuleVersion" type="VersionDataType"/>
</xs:sequence>
+ <!-- The Id is a number used to track heritage the first entry will be 0 and increment from then on. -->
+ <xs:attribute name="Id" type="xs:nonNegativeInteger" use="optional"/>
+ <!-- If the original module was installed from a FAR, track the FAR it came from. -->
+ <xs:attribute name="FarGuid" type="GuidType" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
@@ -603,6 +607,10 @@ <xs:element minOccurs="1" maxOccurs="1" name="PackageGuid" type="GuidType"/>
<xs:element minOccurs="1" maxOccurs="1" name="PackageVersion" type="VersionDataType"/>
</xs:sequence>
+ <!-- The Id is a number used to track heritage the first entry will be 0 and increment from then on. -->
+ <xs:attribute name="Id" type="xs:nonNegativeInteger" use="optional"/>
+ <!-- If the original Package was installed from a FAR, track the FAR it came from. -->
+ <xs:attribute name="FarGuid" type="GuidType" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
diff --git a/Tools/XMLSchema/SurfaceArea.xsd b/Tools/XMLSchema/SurfaceArea.xsd index 76461be78d..97104e6bf5 100644 --- a/Tools/XMLSchema/SurfaceArea.xsd +++ b/Tools/XMLSchema/SurfaceArea.xsd @@ -118,6 +118,10 @@ <xs:element minOccurs="1" maxOccurs="1" name="PlatformGuid" type="GuidType"/>
<xs:element minOccurs="1" maxOccurs="1" name="PlatformVersion" type="VersionDataType"/>
</xs:sequence>
+ <!-- The Id is a number used to track heritage the first entry will be 0 and increment from then on. -->
+ <xs:attribute name="Id" type="xs:nonNegativeInteger" use="optional"/>
+ <!-- If the original module was installed from a FAR, track the FAR it came from. -->
+ <xs:attribute name="FarGuid" type="GuidType" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
|