Merge pull request #296448 from K900/kernel-cursedness

linux: uncurse arguments
This commit is contained in:
Maximilian Bosch 2024-03-16 17:14:56 +00:00 committed by GitHub
commit 29e663bab6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -12,8 +12,10 @@
, rustc
, rustPlatform
, rust-bindgen
, nixosTests
}:
, # The kernel source tarball.
{ # The kernel source tarball.
src
, # The kernel version.
@ -66,7 +68,6 @@
, preferBuiltin ? stdenv.hostPlatform.linux-kernel.preferBuiltin or false
, kernelArch ? stdenv.hostPlatform.linuxArch
, kernelTests ? []
, nixosTests
, ...
}@args:

View file

@ -713,6 +713,5 @@ in {
'';
};
buildLinux = attrs: callPackage ../os-specific/linux/kernel/generic.nix attrs;
buildLinux = callPackage ../os-specific/linux/kernel/generic.nix {};
}