mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-09 12:41:19 +00:00
The labels of clipboard ROM and clipboard report sessions of WM clients must be consistent with the client's nitpicker label. Hence, we must route those sessions through the window manager, analogously to the approach taken for shape reports in #3165. Issue #3437
26 lines
557 B
Plaintext
26 lines
557 B
Plaintext
<runtime ram="40M" caps="1000" binary="init" config="wm.config">
|
|
|
|
<requires>
|
|
<nitpicker label="focus"/>
|
|
<nitpicker/>
|
|
<report label="shape"/>
|
|
<report label="clipboard"/>
|
|
<rom label="clipboard"/>
|
|
<timer/>
|
|
</requires>
|
|
|
|
<provides> <nitpicker/> <report/> <rom/> </provides>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="report_rom"/>
|
|
<rom label="decorator"/>
|
|
<rom label="window_layouter"/>
|
|
<rom label="wm"/>
|
|
<rom label="wm.config"/>
|
|
<rom label="decorator_init.config"/>
|
|
<rom label="layouter.config"/>
|
|
</content>
|
|
|
|
</runtime>
|