Skip to content

Commit

Permalink
boot/kernel/sdm845-mainline: add workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
linyinfeng committed Dec 7, 2024
1 parent fa34d29 commit 268ff14
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nixos/profiles/boot/kernel/sdm845-mainline/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ let
version = lib.elemAt (lib.strings.match "sdm845-([0-9\\.]+)(-r[0-9]+)?" tag) 0;
major = lib.versions.major version;
minor = lib.versions.minor version;
structuredExtraConfig = { };
inherit (lib.kernel) no;
structuredExtraConfig = {
CONFIG_TOUCHSCREEN_FTM4 = no;
};
in
{
boot = {
Expand Down

0 comments on commit 268ff14

Please sign in to comment.