driver_manager: provide more memory to boot_fb

Fixes #3896
This commit is contained in:
Alexander Boettcher 2020-09-17 21:53:06 +02:00 committed by Christian Helmuth
parent e0d9a04f67
commit 2afba3c137
2 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ install_config {
</route> </route>
</start> </start>
<start name="drivers" caps="3000" priority="-1" managing_system="yes"> <start name="drivers" caps="3100" priority="-1" managing_system="yes">
<resource name="RAM" quantum="96M"/> <resource name="RAM" quantum="96M"/>
<binary name="init"/> <binary name="init"/>
<route> <route>

View File

@ -176,7 +176,7 @@ struct Driver_manager::Boot_fb_driver : Device_driver
_pitch = _height = 0; _pitch = _height = 0;
} }
size_t num_bytes() const { return _pitch * _height + 512*1024; } size_t num_bytes() const { return _pitch * _height + 1024*1024; }
bool valid() const { return _pitch * _height != 0; } bool valid() const { return _pitch * _height != 0; }
}; };