mirror of https://github.com/acidanthera/audk.git
Updated MsaFiles to be a choice of <Filename> [1..*] or <MsaFile> [1..*] and added the ModuleGuid, ModuleName and ModuleVersion to the FilenameAttributes in the Transistion Schema.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@505 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fad77353ed
commit
9d617132f6
|
@ -132,6 +132,9 @@
|
|||
<!-- DO NOT USE remove Arch from use, use SupArchList instead -->
|
||||
<xs:attribute name="Arch" type="SupportedArchitectures" use="optional"/>
|
||||
<xs:attribute name="SupArchList" type="ArchListType" use="optional"/>
|
||||
<xs:attribute name="ModuleName" type="xs:NCName" use="optional"/>
|
||||
<xs:attribute name="ModuleVersion" type="VersionDataType" use="optional"/>
|
||||
<xs:attribute name="ModuleGuid" type="GuidType" use="optional"/>
|
||||
<!-- DO NOT USE remove EnableFeature from use -->
|
||||
<xs:attribute default="true" name="EnableFeature" type="xs:boolean" use="optional"/>
|
||||
<xs:attribute name="FeatureFlag" type="xs:normalizedString" use="optional"/>
|
||||
|
|
|
@ -858,6 +858,7 @@
|
|||
<xs:element name="ModuleUnloadImage" type="xs:normalizedString"/>
|
||||
<xs:element name="MsaFiles">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:sequence minOccurs="1">
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="MsaFile">
|
||||
<xs:annotation>
|
||||
|
@ -892,6 +893,8 @@
|
|||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:element minOccurs="1" maxOccurs="unbounded" ref="Filename"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<!-- Use in Final -->
|
||||
|
|
Loading…
Reference in New Issue