kernel: Make the framebuffer a block device
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-05-26 20:36:35 +02:00
parent 7cdb967730
commit cba0a23db9
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -13,6 +13,11 @@ class FramebufferDevice : public Device
bool blocking() const override;
bool is_block_device() const override
{
return true;
}
Result<u64> ioctl(int request, void* arg) override;
usize size() const override;