genode/repos/gems/src/app/sculpt_manager/runtime/depot_query.cc

44 lines
1.2 KiB
C++

/*
* \brief XML configuration for the depot-query tool
* \author Norman Feske
* \date 2018-05-09
*/
/*
* Copyright (C) 2018 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#include <runtime.h>
void Sculpt::gen_depot_query_start_content(Xml_generator &xml)
{
gen_common_start_content(xml, "depot_query",
Cap_quota{200}, Ram_quota{2*1024*1024});
gen_named_node(xml, "binary", "depot_query");
xml.node("config", [&] () {
xml.attribute("query", "rom");
xml.node("vfs", [&] () {
gen_named_node(xml, "dir", "depot", [&] () {
xml.node("fs", [&] () {}); }); }); });
xml.node("route", [&] () {
gen_service_node<::File_system::Session>(xml, [&] () {
gen_named_node(xml, "child", "depot"); });
gen_parent_rom_route(xml, "depot_query");
gen_parent_rom_route(xml, "ld.lib.so");
gen_parent_rom_route(xml, "vfs.lib.so");
gen_parent_rom_route(xml, "query", "config -> managed/depot_query");
gen_parent_route<Cpu_session> (xml);
gen_parent_route<Pd_session> (xml);
gen_parent_route<Log_session> (xml);
gen_parent_route<Report::Session> (xml);
});
}