6a9b14f965
Sometimes config options get silenty removed because they have dependencies on other options that haven't been enabled. If you add those as attributes here, the kernel build will check they're _still_ present in the config after make oldconfig has run.
42 lines
967 B
Nix
42 lines
967 B
Nix
{
|
|
callPackage
|
|
, buildPackages
|
|
, stdenvNoCC
|
|
, fetchFromGitHub
|
|
|
|
, config
|
|
, checkedConfig
|
|
}:
|
|
let
|
|
source = fetchFromGitHub {
|
|
owner = "torvalds";
|
|
repo = "linux";
|
|
rev = "3d7cb6b04c3f3115719235cc6866b10326de34cd"; # v5.19
|
|
hash = "sha256-OVsIRScAnrPleW1vbczRAj5L/SGGht2+GnvZJClMUu4=";
|
|
};
|
|
|
|
# The kernel is huge and takes a long time just to
|
|
# download and unpack. This derivation creates
|
|
# a source tree in a suitable shape to build from -
|
|
# today it just patches some scripts but as we add
|
|
# support for boards/SoCs we expect the scope of
|
|
# "pre-treatment" to grow
|
|
|
|
tree = stdenvNoCC.mkDerivation {
|
|
name = "spindled-kernel-tree";
|
|
src = source;
|
|
phases = [ "unpackPhase" "patchScripts" "installPhase" ];
|
|
patchScripts = ''
|
|
patchShebangs scripts/
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -a . $out
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
vmlinux = callPackage ./vmlinux.nix {
|
|
inherit tree config checkedConfig;
|
|
};
|
|
}
|