mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
25ee872703
The most important route of each launcher is at the top of routes and will be used to layout the graph topology of the runtime view. By caching the state reports generated by the runtime init, the sculpt manager becomes able to quickly check for the presence of components. So we can apply routing-dependency checks not only prior starting components but also while components are running. Fixes #2938 Fixes #2912
17 lines
882 B
Plaintext
17 lines
882 B
Plaintext
<launcher ram="4300M" pkg="vbox5-nova-sculpt">
|
|
<route>
|
|
<service name="File_system" label="vm"> <child name="vm_fs"/> </service>
|
|
<service name="ROM" label="capslock"> <parent label="capslock"/> </service>
|
|
<service name="ROM" label="platform_info"> <parent/> </service>
|
|
<service name="ROM" label="usb_devices"> <child name="usb_devices_rom"/> </service>
|
|
<service name="Report" label="shape"> <parent label="wm -> wm -> vm -> shape"/> </service>
|
|
<service name="Nitpicker"> <child name="wm"/> </service>
|
|
<service name="Nic"> <child name="nic_router"/> </service>
|
|
<service name="Report"> <parent/> </service>
|
|
<service name="RM"> <parent/> </service>
|
|
<service name="Rtc"> <parent/> </service>
|
|
<service name="Usb"> <parent/> </service>
|
|
<service name="File_system" label="shared"> <child name="shared_fs"/> </service>
|
|
</route>
|
|
</launcher>
|