mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
02d5efcf3f
The init component used to create the CPU/RAM/PD/ROM sessions (the child environment) for its children by issuing session requests to its parent, which is typically core. This policy was hard-wired. This patch enables the routing of the environment sessions of the children of init according to the configured routing policy. Because there is no hard-wired policy regarding the environment sessions anymore, routes to respective services must be explicitly declared in the init configuration. For this reason, the patch adjusts several run scripts in this respect. This patch removes the outdated '<if-args>' special handling of session labels. The '<if-args>' feature will eventually be removed completely (ref #2250) Issue #2197 Issue #2215 Issue #2233 Issue #2250
104 lines
2.5 KiB
Plaintext
104 lines
2.5 KiB
Plaintext
#
|
|
# Build
|
|
#
|
|
|
|
set build_components {
|
|
core init drivers/timer
|
|
server/clipboard server/report_rom test/clipboard drivers/timer
|
|
}
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
|
|
<start name="report_rom">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides> <service name="Report"/> <service name="ROM"/> </provides>
|
|
<config verbose="yes">
|
|
<policy label="clipboard -> focus" report="test-clipboard -> focus"/>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="clipboard">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides>
|
|
<service name="ROM"/>
|
|
<service name="Report"/>
|
|
</provides>
|
|
<config verbose="yes">
|
|
|
|
<flow from="hobby" to="work" />
|
|
<flow from="hobby" to="admin" />
|
|
<flow from="work" to="admin" />
|
|
|
|
<policy label_prefix="test-clipboard -> win7" domain="work" />
|
|
<policy label_prefix="test-clipboard -> linux" domain="hobby" />
|
|
<policy label_prefix="test-clipboard -> noux" domain="admin" />
|
|
|
|
</config>
|
|
<route>
|
|
<service name="ROM" label="focus"> <child name="report_rom"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="test-clipboard">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<route>
|
|
<!-- for the simulation of nitpicker's focus reports -->
|
|
<service name="Report" label="focus"> <child name="report_rom"/> </service>
|
|
|
|
<!-- for the simulation of clipboard clients -->
|
|
<service name="ROM" label="linux -> clipboard"> <child name="clipboard"/> </service>
|
|
<service name="ROM" label="win7 -> clipboard"> <child name="clipboard"/> </service>
|
|
<service name="ROM" label="noux -> clipboard"> <child name="clipboard"/> </service>
|
|
<service name="Report"> <child name="clipboard"/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
</config>}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
set boot_modules { core ld.lib.so init timer report_rom clipboard test-clipboard }
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args " -nographic "
|
|
|
|
run_genode_until {.*-- state WAIT_FOR_SUCCESS --.*\n} 40
|
|
|
|
|