mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-09 04:15:52 +00:00
Add Terminal provider rules to depot deploy and depot autopilot
Support the '<terminal/>' tag in the depot package runtime '<provides/>' declaration. Fix #3034
This commit is contained in:
parent
bc539ce892
commit
6c8f1c8796
@ -389,18 +389,19 @@ void Depot_deploy::Child::gen_start_node(Xml_generator &xml, Xml_node common,
|
||||
if (runtime.has_sub_node("provides")) {
|
||||
xml.node("provides", [&] () {
|
||||
runtime.sub_node("provides").for_each_sub_node([&] (Xml_node service) {
|
||||
_gen_provides_sub_node(xml, service, "rom", "ROM");
|
||||
_gen_provides_sub_node(xml, service, "log", "LOG");
|
||||
_gen_provides_sub_node(xml, service, "timer", "Timer");
|
||||
_gen_provides_sub_node(xml, service, "audio_in", "Audio_in");
|
||||
_gen_provides_sub_node(xml, service, "audio_out", "Audio_out");
|
||||
_gen_provides_sub_node(xml, service, "block", "Block");
|
||||
_gen_provides_sub_node(xml, service, "report", "Report");
|
||||
_gen_provides_sub_node(xml, service, "nic", "Nic");
|
||||
_gen_provides_sub_node(xml, service, "nitpicker", "Nitpicker");
|
||||
_gen_provides_sub_node(xml, service, "file_system", "File_system");
|
||||
_gen_provides_sub_node(xml, service, "framebuffer", "Framebuffer");
|
||||
_gen_provides_sub_node(xml, service, "input", "Input");
|
||||
_gen_provides_sub_node(xml, service, "audio_out", "Audio_out");
|
||||
_gen_provides_sub_node(xml, service, "audio_in", "Audio_in");
|
||||
_gen_provides_sub_node(xml, service, "file_system", "File_system");
|
||||
_gen_provides_sub_node(xml, service, "log", "LOG");
|
||||
_gen_provides_sub_node(xml, service, "nic", "Nic");
|
||||
_gen_provides_sub_node(xml, service, "nitpicker", "Nitpicker");
|
||||
_gen_provides_sub_node(xml, service, "report", "Report");
|
||||
_gen_provides_sub_node(xml, service, "rom", "ROM");
|
||||
_gen_provides_sub_node(xml, service, "terminal", "Terminal");
|
||||
_gen_provides_sub_node(xml, service, "timer", "Timer");
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user