2
0
Fork 0
genodepkgs/tests/signal.dhall

33 lines
845 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
let Init = Genode.Init
let Child = Init.Child
2020-01-17 19:27:04 +01:00
in { config =
Init::{
2020-01-17 19:27:04 +01:00
, children =
toMap
{ test-signal =
Child.flat
Child.Attributes::{
, binary = "test-signal"
, exitPropagate = True
, priority = 5
, resources =
Init.Resources::{
, caps = 500
, ram = Genode.units.MiB 10
}
, routes = [ Init.ServiceRoute.parent "Timer" ]
}
2020-01-17 19:27:04 +01:00
}
}
, rom =
let manifest = env:MANIFEST
in Genode.Boot.toRomPaths [ manifest.os.bin.test-signal ]
2020-01-17 19:27:04 +01:00
}