mediabox/kernel: temporary fix for console issue

This commit is contained in:
Asmir A 2023-11-04 10:26:23 +01:00
parent bb306d3145
commit 5025dd2571
Signed by: asmir
GPG Key ID: 020C42B7A9ABA3E2

View File

@ -45,6 +45,19 @@
readOnlyNixStore = true; readOnlyNixStore = true;
supportedFilesystems = ["btrfs"]; supportedFilesystems = ["btrfs"];
tmp.useTmpfs = true; tmp.useTmpfs = true;
kernelPatches = let
inherit (lib.kernel) yes;
in [
{
name = "264832";
patch = null;
extraStructuredConfig = {
FRAMEBUFFER_CONSOLE_DETECT_PRIMARY = yes;
DRM_FBDEV_EMULATION = yes;
};
}
];
}; };
security = { security = {