mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
e2d926ece9
commit
9ede7fad76
|
@ -548,6 +548,10 @@
|
||||||
<xs:element minOccurs="1" maxOccurs="1" name="ModuleGuid" type="GuidType"/>
|
<xs:element minOccurs="1" maxOccurs="1" name="ModuleGuid" type="GuidType"/>
|
||||||
<xs:element minOccurs="1" maxOccurs="1" name="ModuleVersion" type="VersionDataType"/>
|
<xs:element minOccurs="1" maxOccurs="1" name="ModuleVersion" type="VersionDataType"/>
|
||||||
</xs:sequence>
|
</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:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
|
@ -603,6 +607,10 @@
|
||||||
<xs:element minOccurs="1" maxOccurs="1" name="PackageGuid" type="GuidType"/>
|
<xs:element minOccurs="1" maxOccurs="1" name="PackageGuid" type="GuidType"/>
|
||||||
<xs:element minOccurs="1" maxOccurs="1" name="PackageVersion" type="VersionDataType"/>
|
<xs:element minOccurs="1" maxOccurs="1" name="PackageVersion" type="VersionDataType"/>
|
||||||
</xs:sequence>
|
</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:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
|
|
|
@ -118,6 +118,10 @@
|
||||||
<xs:element minOccurs="1" maxOccurs="1" name="PlatformGuid" type="GuidType"/>
|
<xs:element minOccurs="1" maxOccurs="1" name="PlatformGuid" type="GuidType"/>
|
||||||
<xs:element minOccurs="1" maxOccurs="1" name="PlatformVersion" type="VersionDataType"/>
|
<xs:element minOccurs="1" maxOccurs="1" name="PlatformVersion" type="VersionDataType"/>
|
||||||
</xs:sequence>
|
</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:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
|
|
Loading…
Reference in New Issue