2
0
Fork 0
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.
genodepkgs/tests/log.dhall

30 lines
815 B
Plaintext

3 years ago
-- SPDX-License-Identifier: CC0-1.0
let Genode = env:DHALL_GENODE
let Child = Genode.Init.Child
3 years ago
in { 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" ]
}
3 years ago
}
}
, rom =
let manifest = env:MANIFEST
in Genode.Boot.toRomPaths [ manifest.genode-tests.bin.test-log ]
3 years ago
}