mirror of
https://github.com/NixOS/nixos-hardware
synced 2025-02-05 23:55:05 +01:00
Merge pull request #1335 from brianmcgillion/imx8-fix
nxp-imx: fix unused modules errors
This commit is contained in:
commit
5f052b2663
1 changed files with 7 additions and 0 deletions
|
@ -10,6 +10,13 @@ buildLinux (args // rec {
|
|||
|
||||
defconfig = "imx_v8_defconfig";
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/pull/366004
|
||||
# introduced a breaking change that if a module is declared but it is not being used it will fail
|
||||
# if you try to suppress each of he errors e.g.
|
||||
# REISERFS_FS_SECURITY = lib.mkForce unset; within structuredExtraConfig
|
||||
# that list runs to a long 100+ modules so we go back to the previous default and ignore them
|
||||
ignoreConfigErrors = true;
|
||||
|
||||
kernelPatches = [
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue