2
0
Fork 0
genodepkgs/tests/log.dhall

24 lines
626 B
Plaintext

-- SPDX-License-Identifier: CC0-1.0
let Genode = env:DHALL_GENODE
in { config =
Genode.Init::{
, verbose = True
, children =
toMap
{ test-log =
Genode.Init.Start::{
, binary = "test-log"
, exitPropagate = True
, resources = { caps = 500, ram = Genode.units.MiB 10 }
, routes = [ Genode.ServiceRoute.parent "Timer" ]
}
}
}
, rom =
let base = env:BASE_MANIFEST
in Genode.Boot.toRomPaths [ base.bin.test-log ]
}