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.
24 lines
561 B
Plaintext
24 lines
561 B
Plaintext
3 years ago
|
let Genode = env:DHALL_GENODE
|
||
|
|
||
|
let Init = Genode.Init
|
||
|
|
||
|
let Child = Init.Child
|
||
|
|
||
|
let ServiceRoute = Init.ServiceRoute
|
||
|
|
||
|
in Child.flat
|
||
|
Child.Attributes::{
|
||
|
, binary = "intel_fb_drv"
|
||
|
, provides = [ "Framebuffer" ]
|
||
|
, resources = Init.Resources::{ caps = 256, ram = Genode.units.MiB 48 }
|
||
|
, routes =
|
||
|
[ ServiceRoute.parent "IO_MEM"
|
||
|
, ServiceRoute.parent "IO_PORT"
|
||
|
, ServiceRoute.childLabel
|
||
|
"Platform"
|
||
|
"platform_drv"
|
||
|
(None Text)
|
||
|
(Some "intel_fb_drv")
|
||
|
]
|
||
|
}
|