i think the ipxe building stuff is done

This commit is contained in:
2020-06-22 20:58:47 -04:00
parent e70294dcfd
commit bb73c05a6f
4 changed files with 172 additions and 15 deletions

View File

@@ -5,6 +5,13 @@
<xs:include schemaLocation="../types/unix.xsd"/>
<xs:include schemaLocation="../types/ipxe.xsd"/>
<xs:include schemaLocation="../types/git.xsd"/>
<xs:complexType name="e_ipxe_extratargets">
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="target" type="t_ipxe_extratarget" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="e_ipxe_opts">
<xs:choice minOccurs="1" maxOccurs="2">
@@ -32,12 +39,24 @@
</xs:sequence>
<xs:attribute name="subDir" type="t_unix_reldirpath" use="optional"/>
</xs:complexType>
<xs:complexType name="e_ipxe_patch">
<xs:complexType name="e_ipxe_scripts">
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="patchFile" minOccurs="1" maxOccurs="unbounded" type="t_unix_relfilepath"/>
<xs:element name="script" minOccurs="1" maxOccurs="unbounded" type="t_ipxe_script"/>
</xs:sequence>
<xs:attribute name="srcDir" type="t_unix_anydir" use="optional"/>
</xs:complexType>
<xs:complexType name="e_ipxe_upstream">
<xs:sequence>
<xs:choice minOccurs="1" maxOccurs="2">
<xs:element name="dest" minOccurs="1" maxOccurs="1" type="t_unix_dirpath"/>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="git" minOccurs="0" type="t_git_remote"/>
<xs:element name="tarball" minOccurs="0" type="t_ipxe_tarball"/>
</xs:choice>
</xs:choice>
</xs:sequence>
<xs:attribute name="patchDir" type="t_unix_anydir" use="optional"/>
</xs:complexType>
</xs:schema>