Changed FvBinding to be a list of Keywords (not using list, just specifying the pattern.) Fixed a couple of typos in the other files.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@754 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lhauch
2006-07-05 04:05:10 +00:00
parent 3f6001d4f0
commit 700c2b96cb
4 changed files with 12 additions and 6 deletions

View File

@@ -109,6 +109,12 @@
<xs:pattern value="0x[a-fA-F0-9]{1,4}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="KeywordList">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:pattern value="[a-zA-Z]+(\ *_*[a-zA-Z0-9]*)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="KeywordType">
<xs:restriction base="xs:normalizedString">
<xs:pattern value="[a-zA-Z]+(_*[a-zA-Z0-9]*)*"/>