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.
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
let Test = ./test.dhall ? env:DHALL_GENODE_TEST
|
|
|
|
let Genode = Test.Genode
|
|
|
|
let Init = Genode.Init
|
|
|
|
let Child = Init.Child
|
|
|
|
let vmm =
|
|
Child.flat
|
|
Child.Attributes::{
|
|
, binary = "test-vmm_x86"
|
|
, resources = Init.Resources::{
|
|
, caps = 2048
|
|
, ram = Genode.units.MiB 256
|
|
}
|
|
, routes = [ Genode.Init.ServiceRoute.parent "VM" ]
|
|
}
|
|
|
|
in Test::{ children = toMap { vmm } }
|