2
0
Fork 0
genodepkgs/tests/signal.dhall

22 lines
537 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
let os = env:OS_MANIFEST
in { config =
Genode.Init::{
, verbose = True
, children =
toMap
{ test-signal =
Genode.Init.Start::{
, binary = "test-signal"
, resources = { caps = 500, ram = Genode.units.MiB 10 }
, routes = [ Genode.ServiceRoute.parent "Timer" ]
}
2020-01-17 19:27:04 +01:00
}
}
, rom = [ os.bin.test-signal ]
}