Files
genode/repos/gems/src/app/cbe_dump/config.xsd
Martin Stein 30b8f4efc8 gems: import Genode-specific code of the CBE
The CBE repository contained a lot of Genode-specific code despite the fact
that the CBE core logic is not bound to Genode in any way. Therefore the
Genode-specific CBE code is moved to the 'gems' repository to form part of
Genode mainline. The remaining CBE code becomes a port in Genode instead of
being invoked as sub-repository.

The commit combines the following work steps:

* add all files removed from CBE repository
* add CBE port files
* make all CBE libs and targets build again
* make all CBE run scripts succeed again
* make all CBE recipes build again
* make CBE autopilot succeed again
* let CBE autopilot use 'libsparcrypto' contrib dir and Genode build dir
  instead of '.ci' dir in CBE contrib dir (remove '.ci' dir from CBE repo)
* let CBE autopilot always check for all ports
* make CBE autopilot directly executable
* fix license headers in all Genode CBE files
* remove unused VFS replay component
* remove unused CBE test
* remove unused external crypto
* remove unused files in run dir
* remove unused external trust anchor
* add cbe_tester test to autopilot list
* get rid of directories 'include/cbe_*' and 'include/utils'

Fixes #3937
2020-11-27 09:19:08 +01:00

45 lines
1.5 KiB
XML

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="base_types.xsd"/>
<xs:simpleType name="Max_superblocks">
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="8"/>
</xs:restriction>
</xs:simpleType><!-- Max_superblocks -->
<xs:simpleType name="Max_snapshots">
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="48"/>
</xs:restriction>
</xs:simpleType><!-- Max_snapshots -->
<xs:element name="config">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="dump">
<xs:complexType>
<xs:attribute name="free_tree" type="Boolean"/>
<xs:attribute name="hashes" type="Boolean"/>
<xs:attribute name="max_snapshots" type="Max_snapshots"/>
<xs:attribute name="max_superblocks" type="Max_superblocks"/>
<xs:attribute name="meta_tree" type="Boolean"/>
<xs:attribute name="unused_nodes" type="Boolean"/>
<xs:attribute name="vbd" type="Boolean"/>
<xs:attribute name="vbd_pba_filter" type="xs:positiveInteger" />
<xs:attribute name="vbd_pba_filter_enabled" type="Boolean"/>
<xs:attribute name="vbd_vba_filter" type="xs:positiveInteger" />
<xs:attribute name="vbd_vba_filter_enabled" type="Boolean"/>
</xs:complexType>
</xs:element><!-- dump -->
</xs:choice>
</xs:complexType>
</xs:element><!-- config -->
</xs:schema>