Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware
@ 2019-09-28  7:12 voidlinux-github
  2019-09-30 22:51 ` voidlinux-github
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: voidlinux-github @ 2019-09-28  7:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 759 bytes --]

There is a new pull request by amak79 against master on the void-packages repository

https://github.com/amak79/void-packages rpi-firmware
https://github.com/void-linux/void-packages/pull/14774

rpi-firmware: use raspbian as source for wifi and bluetooth firmware
This pull request changes the source for the WiFi and Bluetooth firmware to Raspbian. As the official Raspberry Pi distro, it receives the firmware directly from Cypress and always has the most recent versions. The changes over the current source:

brcmfmac43430-sdio.txt
- Improved brcmfmac BT coexistence parameters

BCM4345C0.hcd
- Restores the LEScan capability
- Enables BT 4.2 functionality

A patch file from https://github.com/void-linux/void-packages/pull/14774.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-firmware-14774.patch --]
[-- Type: text/x-diff, Size: 2015 bytes --]

From 4543f119da9dc88f755234b4db88abc21aabb6ff Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Sat, 28 Sep 2019 16:42:59 +1000
Subject: [PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth
 firmware

---
 srcpkgs/rpi-firmware/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index 6ab9754d811..6b991875b66 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -4,7 +4,7 @@ _gitshort="${_githash:0:7}"
 
 pkgname=rpi-firmware
 version=20190828
-revision=1
+revision=2
 archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
@@ -34,21 +34,21 @@ do_install() {
 
 	# Firmware for rpi3 b and zero wifi chip
 	for f in bin txt; do
-		$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43430/7.45.98.38/brcmfmac43430-sdio.${f}
+		$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm/brcmfmac43430-sdio.${f}
 		vinstall brcmfmac43430-sdio.${f} 0644 usr/lib/firmware/brcm
 	done
 
 	# Firmware for rpi3 b and zero bluetooth chip
-	$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43430/BCM43430A1.hcd
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/bluez-firmware/raw/master/broadcom/BCM43430A1.hcd
 	vinstall BCM43430A1.hcd 0644 usr/lib/firmware/brcm
 
 	# Firmware for rpi3 b+ wifi chip
 	for f in bin txt clm_blob; do
-		$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43455/7.45.154/brcmfmac43455-sdio.${f}
+		$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm/brcmfmac43455-sdio.${f}
 		vinstall brcmfmac43455-sdio.${f} 0644 usr/lib/firmware/brcm
 	done
 
 	# Firmware for rpi3 b+ bluetooth chip
-	$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43455/BCM4345C0.hcd
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/bluez-firmware/raw/master/broadcom/BCM4345C0.hcd
 	vinstall BCM4345C0.hcd 0644 usr/lib/firmware/brcm
 }

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: rpi-firmware: use raspbian as source for wifi and bluetooth firmware
  2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
@ 2019-09-30 22:51 ` voidlinux-github
  2019-10-01  0:14 ` voidlinux-github
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-09-30 22:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/14774#issuecomment-536784512

Comment:
thanks @amak79 , that was long overdue. Can you clarify the licensing information as well?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: rpi-firmware: use raspbian as source for wifi and bluetooth firmware
  2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
  2019-09-30 22:51 ` voidlinux-github
@ 2019-10-01  0:14 ` voidlinux-github
  2019-10-01 14:51 ` voidlinux-github
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-10-01  0:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 349 bytes --]

New comment by amak79 on void-packages repository

https://github.com/void-linux/void-packages/pull/14774#issuecomment-536803278

Comment:
See https://github.com/RPi-Distro/bluez-firmware/issues/1

The license file for the WiFi and Bluetooth firmware can be found here: https://github.com/RPi-Distro/firmware-nonfree/blob/master/LICENCE.cypress


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: rpi-firmware: use raspbian as source for wifi and bluetooth firmware
  2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
  2019-09-30 22:51 ` voidlinux-github
  2019-10-01  0:14 ` voidlinux-github
@ 2019-10-01 14:51 ` voidlinux-github
  2019-10-01 15:39 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-10-01 14:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/14774#issuecomment-537073587

Comment:
then it's certainly not `license="BSD-3-Clause"`

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] rpi-firmware: use raspbian as source for wifi and bluetooth firmware
  2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
                   ` (2 preceding siblings ...)
  2019-10-01 14:51 ` voidlinux-github
@ 2019-10-01 15:39 ` voidlinux-github
  2019-10-01 15:39 ` voidlinux-github
  2019-10-02 20:27 ` [PR PATCH] [Merged]: " voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-10-01 15:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

There is an updated pull request by amak79 against master on the void-packages repository

https://github.com/amak79/void-packages rpi-firmware
https://github.com/void-linux/void-packages/pull/14774

rpi-firmware: use raspbian as source for wifi and bluetooth firmware
This pull request changes the source for the WiFi and Bluetooth firmware to Raspbian. As the official Raspberry Pi distro, it receives the firmware directly from Cypress and always has the most recent versions. The changes over the current source:

brcmfmac43430-sdio.txt
- Improved brcmfmac BT coexistence parameters

BCM4345C0.hcd
- Restores the LEScan capability
- Enables BT 4.2 functionality

A patch file from https://github.com/void-linux/void-packages/pull/14774.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-firmware-14774.patch --]
[-- Type: text/x-diff, Size: 2551 bytes --]

From b4a70fe9b9896baf5529ac52909d40c32e3d25c2 Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Sat, 28 Sep 2019 16:42:59 +1000
Subject: [PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth
 firmware

---
 srcpkgs/rpi-firmware/template | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index 6ab9754d811..7386619bfdc 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -4,12 +4,12 @@ _gitshort="${_githash:0:7}"
 
 pkgname=rpi-firmware
 version=20190828
-revision=1
+revision=2
 archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
-license="BSD-3-Clause"
+license="BSD-3-Clause, custom:Cypress"
 homepage="https://github.com/raspberrypi/firmware"
 distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
 checksum=7e988a93c27cc59c89fa5270455196a71516b4aa9668152f8e87d6b1448ea914
@@ -32,23 +32,26 @@ do_install() {
 	vinstall ${FILESDIR}/cmdline.txt 644 boot
 	vinstall ${FILESDIR}/config.txt 644 boot
 
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/LICENCE.cypress
+	vlicense LICENCE.cypress
+
 	# Firmware for rpi3 b and zero wifi chip
 	for f in bin txt; do
-		$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43430/7.45.98.38/brcmfmac43430-sdio.${f}
+		$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm/brcmfmac43430-sdio.${f}
 		vinstall brcmfmac43430-sdio.${f} 0644 usr/lib/firmware/brcm
 	done
 
 	# Firmware for rpi3 b and zero bluetooth chip
-	$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43430/BCM43430A1.hcd
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/bluez-firmware/raw/master/broadcom/BCM43430A1.hcd
 	vinstall BCM43430A1.hcd 0644 usr/lib/firmware/brcm
 
 	# Firmware for rpi3 b+ wifi chip
 	for f in bin txt clm_blob; do
-		$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43455/7.45.154/brcmfmac43455-sdio.${f}
+		$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm/brcmfmac43455-sdio.${f}
 		vinstall brcmfmac43455-sdio.${f} 0644 usr/lib/firmware/brcm
 	done
 
 	# Firmware for rpi3 b+ bluetooth chip
-	$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43455/BCM4345C0.hcd
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/bluez-firmware/raw/master/broadcom/BCM4345C0.hcd
 	vinstall BCM4345C0.hcd 0644 usr/lib/firmware/brcm
 }

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] rpi-firmware: use raspbian as source for wifi and bluetooth firmware
  2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
                   ` (3 preceding siblings ...)
  2019-10-01 15:39 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-01 15:39 ` voidlinux-github
  2019-10-02 20:27 ` [PR PATCH] [Merged]: " voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-10-01 15:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

There is an updated pull request by amak79 against master on the void-packages repository

https://github.com/amak79/void-packages rpi-firmware
https://github.com/void-linux/void-packages/pull/14774

rpi-firmware: use raspbian as source for wifi and bluetooth firmware
This pull request changes the source for the WiFi and Bluetooth firmware to Raspbian. As the official Raspberry Pi distro, it receives the firmware directly from Cypress and always has the most recent versions. The changes over the current source:

brcmfmac43430-sdio.txt
- Improved brcmfmac BT coexistence parameters

BCM4345C0.hcd
- Restores the LEScan capability
- Enables BT 4.2 functionality

A patch file from https://github.com/void-linux/void-packages/pull/14774.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-firmware-14774.patch --]
[-- Type: text/x-diff, Size: 2551 bytes --]

From b4a70fe9b9896baf5529ac52909d40c32e3d25c2 Mon Sep 17 00:00:00 2001
From: amak <amak.git@outlook.com>
Date: Sat, 28 Sep 2019 16:42:59 +1000
Subject: [PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth
 firmware

---
 srcpkgs/rpi-firmware/template | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index 6ab9754d811..7386619bfdc 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -4,12 +4,12 @@ _gitshort="${_githash:0:7}"
 
 pkgname=rpi-firmware
 version=20190828
-revision=1
+revision=2
 archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
-license="BSD-3-Clause"
+license="BSD-3-Clause, custom:Cypress"
 homepage="https://github.com/raspberrypi/firmware"
 distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
 checksum=7e988a93c27cc59c89fa5270455196a71516b4aa9668152f8e87d6b1448ea914
@@ -32,23 +32,26 @@ do_install() {
 	vinstall ${FILESDIR}/cmdline.txt 644 boot
 	vinstall ${FILESDIR}/config.txt 644 boot
 
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/LICENCE.cypress
+	vlicense LICENCE.cypress
+
 	# Firmware for rpi3 b and zero wifi chip
 	for f in bin txt; do
-		$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43430/7.45.98.38/brcmfmac43430-sdio.${f}
+		$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm/brcmfmac43430-sdio.${f}
 		vinstall brcmfmac43430-sdio.${f} 0644 usr/lib/firmware/brcm
 	done
 
 	# Firmware for rpi3 b and zero bluetooth chip
-	$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43430/BCM43430A1.hcd
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/bluez-firmware/raw/master/broadcom/BCM43430A1.hcd
 	vinstall BCM43430A1.hcd 0644 usr/lib/firmware/brcm
 
 	# Firmware for rpi3 b+ wifi chip
 	for f in bin txt clm_blob; do
-		$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43455/7.45.154/brcmfmac43455-sdio.${f}
+		$XBPS_FETCH_CMD https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm/brcmfmac43455-sdio.${f}
 		vinstall brcmfmac43455-sdio.${f} 0644 usr/lib/firmware/brcm
 	done
 
 	# Firmware for rpi3 b+ bluetooth chip
-	$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/bcm43455/BCM4345C0.hcd
+	$XBPS_FETCH_CMD https://github.com/RPi-Distro/bluez-firmware/raw/master/broadcom/BCM4345C0.hcd
 	vinstall BCM4345C0.hcd 0644 usr/lib/firmware/brcm
 }

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Merged]: rpi-firmware: use raspbian as source for wifi and bluetooth firmware
  2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
                   ` (4 preceding siblings ...)
  2019-10-01 15:39 ` voidlinux-github
@ 2019-10-02 20:27 ` voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-10-02 20:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 605 bytes --]

There's a merged pull request on the void-packages repository

rpi-firmware: use raspbian as source for wifi and bluetooth firmware
https://github.com/void-linux/void-packages/pull/14774

Description:
This pull request changes the source for the WiFi and Bluetooth firmware to Raspbian. As the official Raspberry Pi distro, it receives the firmware directly from Cypress and always has the most recent versions. The changes over the current source:

brcmfmac43430-sdio.txt
- Improved brcmfmac BT coexistence parameters

BCM4345C0.hcd
- Restores the LEScan capability
- Enables BT 4.2 functionality

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-10-02 20:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-28  7:12 [PR PATCH] rpi-firmware: use raspbian as source for wifi and bluetooth firmware voidlinux-github
2019-09-30 22:51 ` voidlinux-github
2019-10-01  0:14 ` voidlinux-github
2019-10-01 14:51 ` voidlinux-github
2019-10-01 15:39 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-01 15:39 ` voidlinux-github
2019-10-02 20:27 ` [PR PATCH] [Merged]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).