Merge pull request #49628 from lopsided98/raspberrypi-wireless-firmware-update
raspberrypiWirelessFirmware: 2018-05-30 -> 2018-08-20
This commit is contained in:
commit
1252aa5c73
1 changed files with 19 additions and 20 deletions
|
@ -1,52 +1,51 @@
|
||||||
{ stdenv, fetchurl, dpkg }:
|
{ stdenv, fetchurl, fetchFromGitHub, dpkg }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "raspberrypi-wireless-firmware-${version}";
|
name = "raspberrypi-wireless-firmware-${version}";
|
||||||
version = "2018-05-30";
|
version = "2018-08-20";
|
||||||
|
|
||||||
srcs = [
|
srcs = [
|
||||||
(fetchurl {
|
(fetchFromGitHub {
|
||||||
url = "https://archive.raspberrypi.org/debian/pool/main/b/bluez-firmware/bluez-firmware_1.2-3+rpt5.debian.tar.xz";
|
name = "bluez-firmware";
|
||||||
sha256 = "06zpyrz6frkgjy26hr3998klnhjdqxwashgjgvj9rgbcqy70nkxg";
|
owner = "RPi-Distro";
|
||||||
|
repo = "bluez-firmware";
|
||||||
|
rev = "ade2bae1aaaebede09abb8fb546f767a0e4c7804";
|
||||||
|
sha256 = "07gm76gxp5anv6paryvxcp34a86fkny8kdlzqhzcpfczzglkp6ag";
|
||||||
})
|
})
|
||||||
(fetchurl {
|
(fetchFromGitHub {
|
||||||
url = "https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20161130-3+rpt3_all.deb";
|
name = "firmware-nonfree";
|
||||||
sha256 = "10l74ac28baprnsiylf2vy4pkxgb3crixid90ngs6si9smm7rn6z";
|
owner = "RPi-Distro";
|
||||||
|
repo = "firmware-nonfree";
|
||||||
|
rev = "b518de45ced519e8f7a499f4778100173402ae43";
|
||||||
|
sha256 = "1d5026ic9awji6c67irpwsxpxgsc0dhn11d3abkxi2vvra1pir4g";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
# Firmware blobs do not need fixing and should not be modified
|
# Firmware blobs do not need fixing and should not be modified
|
||||||
dontFixup = true;
|
dontFixup = true;
|
||||||
|
|
||||||
|
|
||||||
# Unpack the debian package
|
|
||||||
nativeBuildInputs = [ dpkg ];
|
|
||||||
unpackCmd = ''
|
|
||||||
if ! [[ "$curSrc" =~ \.deb$ ]]; then return 1; fi
|
|
||||||
dpkg -x "$curSrc" .
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out/lib/firmware/brcm"
|
mkdir -p "$out/lib/firmware/brcm"
|
||||||
|
|
||||||
# Wifi firmware
|
# Wifi firmware
|
||||||
for filename in lib/firmware/brcm/brcmfmac434??-sdio.*; do
|
for filename in firmware-nonfree/brcm/brcmfmac434??-sdio.*; do
|
||||||
cp "$filename" "$out/lib/firmware/brcm"
|
cp "$filename" "$out/lib/firmware/brcm"
|
||||||
done
|
done
|
||||||
|
|
||||||
# Bluetooth firmware
|
# Bluetooth firmware
|
||||||
cp broadcom/*.hcd "$out/lib/firmware/brcm"
|
cp bluez-firmware/broadcom/*.hcd "$out/lib/firmware/brcm"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
outputHashMode = "recursive";
|
outputHashMode = "recursive";
|
||||||
outputHashAlgo = "sha256";
|
outputHashAlgo = "sha256";
|
||||||
outputHash = "1gwzasl5w5nc0awqv3w2081ns63wd1yds0xh0dg95dc6brnqhhf8";
|
outputHash = "1s5gb00v42s5izbaw8irs1fwvhh7z9wl07czc0nkw6p91871ivb7";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Firmware for builtin Wifi/Bluetooth devices in the Raspberry Pi 3 and Zero W";
|
description = "Firmware for builtin Wifi/Bluetooth devices in the Raspberry Pi 3 and Zero W";
|
||||||
homepage = https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/;
|
homepage = https://github.com/RPi-Distro/firmware-nonfree;
|
||||||
license = licenses.unfreeRedistributableFirmware;
|
license = licenses.unfreeRedistributableFirmware;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ lopsided98 ];
|
maintainers = with maintainers; [ lopsided98 ];
|
||||||
|
|
Loading…
Reference in a new issue