checking in some work

This commit is contained in:
brent s 2020-06-19 18:55:21 -04:00
parent e928560828
commit e70294dcfd
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
2 changed files with 15 additions and 7 deletions

View File

@ -30,14 +30,14 @@
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="opts" minOccurs="1" maxOccurs="unbounded" type="e_ipxe_opts"/>
</xs:sequence>
<xs:attribute name="root" type="t_unix_reldirpath" use="optional"/>
<xs:attribute name="subDir" type="t_unix_reldirpath" use="optional"/>
</xs:complexType>
<xs:complexType name="e_ipxe_patch">
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="patchFile" minOccurs="1" maxOccurs="unbounded" type="t_unix_relfilepath"/>
</xs:sequence>
<xs:attribute name="root" type="t_unix_reldirpath" use="optional"/>
<xs:attribute name="patchDir" type="t_unix_anydir" use="optional"/>
</xs:complexType>

</xs:schema>

View File

@ -13,15 +13,23 @@
<xs:element name="ipxe">
<xs:complexType>
<xs:all minOccurs="1">
<xs:element name="patchSet">
<xs:element name="source">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="2">
<xs:element name="switchOpts" maxOccurs="1" type="e_ipxe_optswitch"/>
<xs:element name="patch" maxOccurs="1" type="e_ipxe_patch"/>
<xs:sequence minOccurs="0">
<xs:element name="patchSet" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="2">
<xs:element name="switchOpts" maxOccurs="1" type="e_ipxe_optswitch"/>
<xs:element name="patch" maxOccurs="1" type="e_ipxe_patch"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="srcDir" type="t_unix_dirpath" use="optional"/>
<xs:attribute name="srcDir" type="t_unix_dirpath" use="required"/>
<xs:attribute name="upstream" type="xs:anyURI" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="build"/>
</xs:all>
</xs:complexType>
</xs:element>