2023-11-13 13:50:16 +08:00
|
|
|
{ stdenv, lib, fetchFromGitHub, buildLinux, ... } @ args:
|
2023-11-13 13:47:57 +08:00
|
|
|
|
|
|
|
let
|
2023-11-13 13:50:16 +08:00
|
|
|
modDirVersion = "6.1.0-xilinx";
|
2023-11-13 13:47:57 +08:00
|
|
|
in
|
2023-11-13 13:50:16 +08:00
|
|
|
lib.overrideDerivation (buildLinux (args // {
|
2023-11-13 13:47:57 +08:00
|
|
|
version = "${modDirVersion}";
|
|
|
|
inherit modDirVersion;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Xilinx";
|
|
|
|
repo = "linux-xlnx";
|
|
|
|
rev = "c8b3583bc86352009c6ac61e2ced0e12118f8ebb";
|
2023-11-13 13:50:16 +08:00
|
|
|
sha256 = "09vfh2p7iszzjqp25fnwpzy52h07v4n161salsia0jyr2g5kxrfr";
|
2023-11-13 13:47:57 +08:00
|
|
|
};
|
|
|
|
|
2023-11-13 13:50:16 +08:00
|
|
|
defconfig = "xilinx_zynq_defconfig";
|
2023-11-13 13:47:57 +08:00
|
|
|
|
2023-11-13 13:50:16 +08:00
|
|
|
} // (args.argsOverride or {}))) (oldAttrs: {})
|