raspberrypifw: 1.20200601 -> 1.20200902
Also disable the fixup phase since it only throws errors and remove the platforms since these are only static files.
This commit is contained in:
parent
65d32c97af
commit
9a966e84b6
@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation {
|
|||||||
overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays";
|
overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays";
|
||||||
};
|
};
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with stdenvNoCC.lib; {
|
||||||
inherit (raspberrypifw.meta) platforms homepage license;
|
inherit (raspberrypifw.meta) homepage license;
|
||||||
description = "DTBs for the Raspberry Pi";
|
description = "DTBs for the Raspberry Pi";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "raspberrypi-firmware";
|
pname = "raspberrypi-firmware";
|
||||||
version = "1.20200601";
|
version = "1.20200902";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "raspberrypi";
|
owner = "raspberrypi";
|
||||||
repo = "firmware";
|
repo = "firmware";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1vm038f9digwg8gdxl2bypzlip3ycjb6bl56274gh5i9abl6wjvf";
|
sha256 = "1dj5vyhz2ljka7hwhl6s14hd017fspix1xp7zbm7lzdyys9jb9ni";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -16,11 +16,12 @@ stdenv.mkDerivation rec {
|
|||||||
cp -R boot/* $out/share/raspberrypi/boot
|
cp -R boot/* $out/share/raspberrypi/boot
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontFixup = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Firmware for the Raspberry Pi board";
|
description = "Firmware for the Raspberry Pi board";
|
||||||
homepage = "https://github.com/raspberrypi/firmware";
|
homepage = "https://github.com/raspberrypi/firmware";
|
||||||
license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
|
license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
|
||||||
platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
|
|
||||||
maintainers = with maintainers; [ dezgeg tavyc ];
|
maintainers = with maintainers; [ dezgeg tavyc ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user