You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
703 B
Plaintext
27 lines
703 B
Plaintext
-- SPDX-License-Identifier: CC0-1.0
|
|
|
|
let Genode = env:DHALL_GENODE
|
|
|
|
let Child = Genode.Init.Child
|
|
|
|
in Genode.Boot::{
|
|
, config =
|
|
Genode.Init::{
|
|
, children =
|
|
toMap
|
|
{ test-log =
|
|
Child.flat
|
|
Child.Attributes::{
|
|
, binary = "test-log"
|
|
, exitPropagate = True
|
|
, resources =
|
|
Genode.Init.Resources::{
|
|
, caps = 500
|
|
, ram = Genode.units.MiB 10
|
|
}
|
|
, routes = [ Genode.Init.ServiceRoute.parent "Timer" ]
|
|
}
|
|
}
|
|
}
|
|
}
|