genode/repos/gems/sculpt/drivers/linux
Norman Feske 3580bb6e17 sculpt: move event_filter to static system
By moving the event_filter and the numlock_remap_rom from the drivers
subsystem to the static system, the filtering can be applied to drivers
hosted in the runtime and drivers hosted in the drivers subsystem.

This is a preparatory step for moving the USB host and HID drivers to
the runtime.

Issue #5150
2024-04-12 15:02:44 +02:00

21 lines
448 B
Plaintext

<config>
<parent-provides>
<service name="ROM"/>
<service name="PD"/>
<service name="CPU"/>
<service name="LOG"/>
<service name="Timer"/>
<service name="Capture"/>
<service name="Event"/>
</parent-provides>
<start name="fb_sdl" caps="100" ld="no">
<resource name="RAM" quantum="32M"/>
<route>
<service name="Event"> <parent label="sdl"/> </service>
<any-service> <parent/> </any-service>
</route>
</start>
</config>