2018-09-20 14:41:04 +01:00
|
|
|
{ stdenv, lib, buildPackages, fetchFromGitHub, perl, buildLinux, ... } @ args:
|
2012-12-27 21:29:56 +00:00
|
|
|
|
2013-08-27 11:05:13 +01:00
|
|
|
let
|
2019-03-21 02:51:08 +00:00
|
|
|
modDirVersion = "4.14.98";
|
|
|
|
tag = "1.20190215";
|
2016-07-03 23:50:37 +01:00
|
|
|
in
|
2018-09-20 14:41:04 +01:00
|
|
|
lib.overrideDerivation (buildLinux (args // rec {
|
2016-07-03 23:50:37 +01:00
|
|
|
version = "${modDirVersion}-${tag}";
|
|
|
|
inherit modDirVersion;
|
2013-01-28 23:42:36 +00:00
|
|
|
|
2016-07-03 23:50:37 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raspberrypi";
|
|
|
|
repo = "linux";
|
2017-03-03 19:16:31 +00:00
|
|
|
rev = "raspberrypi-kernel_${tag}-1";
|
2019-03-21 02:51:08 +00:00
|
|
|
sha256 = "1gc4x7p82m2v1jhahhyl7qfdkflj71ly6p0fpc1vf9sk13hbwgj2";
|
2013-07-31 22:56:48 +01:00
|
|
|
};
|
2012-12-27 21:29:56 +00:00
|
|
|
|
2017-11-03 13:50:19 +00:00
|
|
|
defconfig = {
|
|
|
|
"armv6l-linux" = "bcmrpi_defconfig";
|
|
|
|
"armv7l-linux" = "bcm2709_defconfig";
|
2018-09-10 05:15:51 +01:00
|
|
|
"aarch64-linux" = "bcmrpi3_defconfig";
|
2018-08-20 20:11:29 +01:00
|
|
|
}.${stdenv.hostPlatform.system} or (throw "linux_rpi not supported on '${stdenv.hostPlatform.system}'");
|
2017-11-03 13:50:19 +00:00
|
|
|
|
2017-09-15 22:07:14 +01:00
|
|
|
features = {
|
|
|
|
efiBootStub = false;
|
|
|
|
} // (args.features or {});
|
2012-12-27 21:29:56 +00:00
|
|
|
|
2019-01-03 21:42:14 +00:00
|
|
|
extraMeta.hydraPlatforms = [ "aarch64-linux" ];
|
2016-07-03 23:50:37 +01:00
|
|
|
})) (oldAttrs: {
|
|
|
|
postConfigure = ''
|
|
|
|
# The v7 defconfig has this set to '-v7' which screws up our modDirVersion.
|
|
|
|
sed -i $buildRoot/.config -e 's/^CONFIG_LOCALVERSION=.*/CONFIG_LOCALVERSION=""/'
|
|
|
|
'';
|
|
|
|
|
2018-09-10 05:15:51 +01:00
|
|
|
# Make copies of the DTBs named after the upstream names so that U-Boot finds them.
|
|
|
|
# This is ugly as heck, but I don't know a better solution so far.
|
2018-09-20 14:41:04 +01:00
|
|
|
postFixup = ''
|
|
|
|
dtbDir=${if stdenv.isAarch64 then "$out/dtbs/broadcom" else "$out/dtbs"}
|
|
|
|
rm $dtbDir/bcm283*.dtb
|
2018-09-10 05:15:51 +01:00
|
|
|
copyDTB() {
|
2018-09-20 14:41:04 +01:00
|
|
|
cp -v "$dtbDir/$1" "$dtbDir/$2"
|
2018-09-10 05:15:51 +01:00
|
|
|
}
|
2018-09-20 14:41:04 +01:00
|
|
|
'' + lib.optionalString (lib.elem stdenv.hostPlatform.system ["armv6l-linux"]) ''
|
2018-05-07 19:59:15 +01:00
|
|
|
copyDTB bcm2708-rpi-0-w.dtb bcm2835-rpi-zero.dtb
|
|
|
|
copyDTB bcm2708-rpi-0-w.dtb bcm2835-rpi-zero-w.dtb
|
2016-07-03 23:50:37 +01:00
|
|
|
copyDTB bcm2708-rpi-b.dtb bcm2835-rpi-a.dtb
|
|
|
|
copyDTB bcm2708-rpi-b.dtb bcm2835-rpi-b.dtb
|
|
|
|
copyDTB bcm2708-rpi-b.dtb bcm2835-rpi-b-rev2.dtb
|
|
|
|
copyDTB bcm2708-rpi-b-plus.dtb bcm2835-rpi-a-plus.dtb
|
|
|
|
copyDTB bcm2708-rpi-b-plus.dtb bcm2835-rpi-b-plus.dtb
|
|
|
|
copyDTB bcm2708-rpi-b-plus.dtb bcm2835-rpi-zero.dtb
|
|
|
|
copyDTB bcm2708-rpi-cm.dtb bcm2835-rpi-cm.dtb
|
2018-09-20 14:41:04 +01:00
|
|
|
'' + lib.optionalString (lib.elem stdenv.hostPlatform.system ["armv7l-linux"]) ''
|
2016-07-03 23:50:37 +01:00
|
|
|
copyDTB bcm2709-rpi-2-b.dtb bcm2836-rpi-2-b.dtb
|
2018-09-20 14:41:04 +01:00
|
|
|
'' + lib.optionalString (lib.elem stdenv.hostPlatform.system ["armv7l-linux" "aarch64-linux"]) ''
|
2016-07-03 23:50:37 +01:00
|
|
|
copyDTB bcm2710-rpi-3-b.dtb bcm2837-rpi-3-b.dtb
|
2018-05-07 19:59:15 +01:00
|
|
|
copyDTB bcm2710-rpi-3-b-plus.dtb bcm2837-rpi-3-b-plus.dtb
|
|
|
|
copyDTB bcm2710-rpi-cm3.dtb bcm2837-rpi-cm3.dtb
|
2016-07-03 23:50:37 +01:00
|
|
|
'';
|
2013-07-31 22:56:48 +01:00
|
|
|
})
|