2
0
Fork 0
genodepkgs/tests/solo5/simple.dhall

18 lines
469 B
Plaintext
Raw Normal View History

2019-10-22 19:20:26 +02:00
let Genode = env:DHALL_GENODE
in λ(_ : {})
→ { solo5 =
Genode.Init.Start::{
, binary = "test"
, resources = { caps = 256, ram = Genode.units.MiB 3 }
, routes = [ Genode.ServiceRoute.parent "Timer" ]
, config =
Genode.Prelude.XML.text
''
<config>
<cmdline>Hello_Solo5</cmdline>
</config>
''
}
2019-10-22 19:20:26 +02:00
}