sigil/tests/signal.dhall
Emery Hemingway 36f682ccd4 Update Genode Dhall library
Freeze the library when committing to the Nix store. The Init.toStart
function now lowers an only-child automatically, so adjust the Timer
service routes in tests accordingly.
2020-02-19 13:26:15 +01:00

23 lines
573 B
Plaintext

-- SPDX-License-Identifier: CC0-1.0
let Genode = env:DHALL_GENODE
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 }
}
}
}
, rom =
let manifest = env:MANIFEST
in Genode.Boot.toRomPaths [ manifest.os.bin.test-signal ]
}