diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-20 06:57:42 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-20 06:57:42 +0000 |
commit | 87c6a4af9ff51b31b0763e3863523a84dce082d0 (patch) | |
tree | 7728f5f3b73b2de756f6355dcd4bc9bab0ad73df /Tools/XMLSchema/FrameworkPlatformDataElements.xsd | |
parent | 20391ab0d66f0b53cc71d0e094f7c18da4b69e4b (diff) | |
download | edk2-platforms-87c6a4af9ff51b31b0763e3863523a84dce082d0.tar.xz |
merged the new changes in new schema, and corrected many inconsistencies in attributes definitions
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@568 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/XMLSchema/FrameworkPlatformDataElements.xsd')
-rw-r--r-- | Tools/XMLSchema/FrameworkPlatformDataElements.xsd | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/Tools/XMLSchema/FrameworkPlatformDataElements.xsd b/Tools/XMLSchema/FrameworkPlatformDataElements.xsd index 4d163e0ffa..3fb6b07af7 100644 --- a/Tools/XMLSchema/FrameworkPlatformDataElements.xsd +++ b/Tools/XMLSchema/FrameworkPlatformDataElements.xsd @@ -221,11 +221,23 @@ <xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="NameValue"/>
- <xs:element minOccurs="0" maxOccurs="unbounded" ref="FvImage"/>
+ <xs:choice>
+ <xs:element minOccurs="0" maxOccurs="unbounded" ref="FvImage"/>
+ <xs:element minOccurs="0" maxOccurs="unbounded" ref="FvRegionName"/>
+ </xs:choice>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="FvImageName"/>
</xs:sequence>
</xs:complexType>
</xs:element>
+ <xs:element name="FvRegionName">
+ <xs:complexType>
+ <xs:simpleContent>
+ <xs:extension base="KeywordType">
+ <xs:attributeGroup ref="FvRegionNameAttributes"/>
+ </xs:extension>
+ </xs:simpleContent>
+ </xs:complexType>
+ </xs:element>
<xs:element name="ModuleSA">
<xs:annotation>
<xs:documentation xml:lang="en">This element is used to specify information in the Platform Description File.</xs:documentation>
@@ -273,7 +285,7 @@ </xs:complexType>
</xs:element>
</xs:choice>
- <xs:element minOccurs="0" maxOccurs="unbounded" ref="Specification"/>
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Specification" type="Sentence"/>
<xs:choice>
<!-- DO NOT USE! REMOVE PcdBuildDeclarations in FINAL -->
<xs:element minOccurs="0" maxOccurs="1" ref="PcdBuildDeclarations"/>
@@ -367,14 +379,14 @@ <xs:element name="FlashDeviceDefinitions">
<xs:complexType>
<xs:annotation>
- <xs:documentation xml:lang="en">We allow specifying the Flash layout in this directory, or we allow specifying a flashmap filename</xs:documentation>
+ <xs:documentation xml:lang="en">We allow specifying the FlashMap filename</xs:documentation>
</xs:annotation>
<xs:sequence>
- <xs:element minOccurs="0" maxOccurs="1" name="FlashDefinition" type="FlashData"/>
+ <xs:element minOccurs="0" maxOccurs="1" name="FlashDefinitionFile" type="PathAndFilename"/>
<xs:element minOccurs="0" maxOccurs="1" ref="FvImages"/>
</xs:sequence>
</xs:complexType>
- </xs:element>
+ </xs:element>
<xs:element name="PlatformDefinitions">
<xs:complexType>
<xs:sequence>
|