2022-09-25 23:02:45 +02:00
|
|
|
{
|
|
|
|
callPackage
|
|
|
|
, buildPackages
|
|
|
|
, stdenvNoCC
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
|
|
|
, config
|
|
|
|
}:
|
2022-09-20 19:54:27 +02:00
|
|
|
let
|
|
|
|
source = fetchFromGitHub {
|
|
|
|
owner = "torvalds";
|
|
|
|
repo = "linux";
|
|
|
|
rev = "3d7cb6b04c3f3115719235cc6866b10326de34cd"; # v5.19
|
|
|
|
hash = "sha256-OVsIRScAnrPleW1vbczRAj5L/SGGht2+GnvZJClMUu4=";
|
|
|
|
};
|
2022-09-25 23:02:45 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2022-09-20 19:54:27 +02:00
|
|
|
tree = stdenvNoCC.mkDerivation {
|
|
|
|
name = "spindled-kernel-tree";
|
|
|
|
src = source;
|
|
|
|
phases = [ "unpackPhase" "patchScripts" "installPhase" ];
|
|
|
|
patchScripts = ''
|
|
|
|
patchShebangs scripts/
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -a . $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2022-09-25 23:02:45 +02:00
|
|
|
vmlinux = callPackage ./vmlinux.nix {
|
2022-09-20 19:54:27 +02:00
|
|
|
inherit tree;
|
2022-09-25 14:17:21 +02:00
|
|
|
inherit config;
|
2022-09-20 19:54:27 +02:00
|
|
|
};
|
|
|
|
}
|