mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 14:37:50 +00:00
parent
24d0c18193
commit
7fca026b48
@ -62,8 +62,15 @@ class Sculpt::Drivers::Instance : Noncopyable,
|
|||||||
{
|
{
|
||||||
_board_info.detected = Board_info::Detected::from_xml(devices,
|
_board_info.detected = Board_info::Detected::from_xml(devices,
|
||||||
_platform.xml());
|
_platform.xml());
|
||||||
|
/*
|
||||||
|
* The decision which fb driver to start depends on information
|
||||||
|
* about available devices from both the devices ROM and the
|
||||||
|
* platform info ROM, so we skip the update if the devices ROM
|
||||||
|
* is not ready yet.
|
||||||
|
*/
|
||||||
|
if (!devices.has_type("empty"))
|
||||||
|
_fb_driver.update(_children, _board_info, _platform.xml());
|
||||||
|
|
||||||
_fb_driver .update(_children, _board_info, _platform.xml());
|
|
||||||
_ps2_driver .update(_children, _board_info);
|
_ps2_driver .update(_children, _board_info);
|
||||||
_touch_driver.update(_children, _board_info);
|
_touch_driver.update(_children, _board_info);
|
||||||
_ahci_driver .update(_children, _board_info);
|
_ahci_driver .update(_children, _board_info);
|
||||||
|
Loading…
Reference in New Issue
Block a user