genode-ehmry/errata/runtime.xsd

72 lines
2.3 KiB
XML
Raw Permalink Normal View History

2019-03-07 17:52:06 +01:00
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="base_types.xsd"/>
2019-02-28 14:12:58 +01:00
<xs:complexType name="template_service">
<xs:choice minOccurs="0" maxOccurs="unbounded"/>
<xs:attribute name="label" type="Session_label" />
</xs:complexType>
2019-02-27 16:48:05 +01:00
<xs:complexType name="template_services">
<xs:choice minOccurs="0" maxOccurs="unbounded">
2019-02-28 14:12:58 +01:00
<xs:element name="audio_in" type="template_service"/>
<xs:element name="audio_out" type="template_service"/>
<xs:element name="block" type="template_service"/>
<xs:element name="file_system" type="template_service"/>
<xs:element name="framebuffer" type="template_service"/>
<xs:element name="input" type="template_service"/>
<xs:element name="log" type="template_service"/>
<xs:element name="nic" type="template_service"/>
<xs:element name="nitpicker" type="template_service"/>
2019-07-04 15:59:57 +02:00
<xs:element name="platform" type="template_service"/>
2019-02-28 14:12:58 +01:00
<xs:element name="report" type="template_service"/>
2019-03-04 19:56:23 +01:00
<xs:element name="rm" type="template_service"/>
2019-02-28 14:12:58 +01:00
<xs:element name="rom" type="template_service"/>
<xs:element name="rtc" type="template_service"/>
<xs:element name="terminal" type="template_service"/>
2019-03-16 17:12:20 +01:00
<xs:element name="usb" type="template_service"/>
2019-02-27 16:48:05 +01:00
</xs:choice>
</xs:complexType>
2019-03-07 17:52:06 +01:00
<xs:element name="runtime">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
2019-02-27 16:48:05 +01:00
<xs:element name="requires" type="template_services"/>
2019-02-27 13:40:52 +01:00
2019-02-27 16:48:05 +01:00
<xs:element name="provides" type="template_services"/>
2019-03-07 17:52:06 +01:00
<xs:element name="content">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="rom">
<xs:complexType>
<xs:attribute name="label" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="config">
<xs:complexType>
<xs:sequence>
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip" />
</xs:sequence>
<xs:anyAttribute processContents="skip"/>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="ram" type="Number_of_bytes" />
<xs:attribute name="caps" type="xs:positiveInteger" />
<xs:attribute name="binary" type="xs:string" />
2019-04-05 23:51:12 +02:00
<xs:attribute name="config" type="xs:string" />
2019-03-07 17:52:06 +01:00
</xs:complexType>
</xs:element>
</xs:schema>