2
0
Fork 0
genodepkgs/tests/signal.dhall

21 lines
580 B
Plaintext
Raw Normal View History

2020-01-17 01:24:34 +01:00
-- SPDX-License-Identifier: CC0-1.0
2020-01-17 19:27:04 +01:00
let Genode = env:DHALL_GENODE
2020-01-17 19:27:04 +01:00
in { config =
Genode.Init::{
, verbose = True
, children =
toMap
{ test-signal =
Genode.Init.Start::{
, binary = "test-signal"
, exitPropagate = True
, resources = { caps = 500, ram = Genode.units.MiB 10 }
, routes = [ Genode.ServiceRoute.parent "Timer" ]
}
2020-01-17 19:27:04 +01:00
}
}
2020-01-22 12:36:27 +01:00
, rom = let os = env:OS_MANIFEST in [ os.bin.test-signal ]
2020-01-17 19:27:04 +01:00
}