You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
let Genode = env:DHALL_GENODE
|
|
|
|
in λ ( _
|
|
: {}
|
|
)
|
|
→ Genode.Init::{
|
|
, verbose = True
|
|
, children =
|
|
toMap
|
|
{ test-libc =
|
|
Genode.Init.Start::{
|
|
, binary = "test-libc"
|
|
, resources = { caps = 200, ram = Genode.units.MiB 400 }
|
|
, routes = [ Genode.ServiceRoute.parent "Timer" ]
|
|
, config =
|
|
Some
|
|
( Genode.Prelude.XML.text
|
|
''
|
|
<config>
|
|
<vfs>
|
|
<dir name="dev">
|
|
<log/>
|
|
<inline name="rtc">2019-08-20 15:01</inline>
|
|
</dir>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc"/>
|
|
</config>
|
|
''
|
|
)
|
|
}
|
|
: Genode.Init.Start.Type
|
|
}
|
|
}
|