sculpt: add VM service

Fixes #3396
This commit is contained in:
Alexander Boettcher 2019-06-01 14:39:38 +02:00 committed by Christian Helmuth
parent e2c1ce2add
commit c58acbd444
2 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@ install_config {
<service name="CPU"/>
<service name="LOG"/>
<service name="TRACE"/>
<service name="VM"/>
</parent-provides>
<default-route>

View File

@ -17,6 +17,7 @@
#include <base/attached_rom_dataspace.h>
#include <os/reporter.h>
#include <nitpicker_session/connection.h>
#include <vm_session/vm_session.h>
/* included from depot_deploy tool */
#include <children.h>
@ -1240,6 +1241,7 @@ void Sculpt::Main::_generate_runtime_config(Xml_generator &xml) const
gen_parent_service<Pd_session>(xml);
gen_parent_service<Rm_session>(xml);
gen_parent_service<Log_session>(xml);
gen_parent_service<Vm_session>(xml);
gen_parent_service<Timer::Session>(xml);
gen_parent_service<Report::Session>(xml);
gen_parent_service<Platform::Session>(xml);