2
0
Fork 0
genodepkgs/tests/log.dhall

24 lines
601 B
Plaintext
Raw Normal View History

2020-01-22 12:21:39 +01:00
-- 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" ]
}
}
}
2020-01-22 12:21:39 +01:00
}