git: 872f124e0589 - main - net/wifi-firmware-kmod: add more MASTER_SITES
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 16 Sep 2024 00:08:54 UTC
The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/ports/commit/?id=872f124e05895ac0d5ea46ba1b4fae9d17d5f491 commit 872f124e05895ac0d5ea46ba1b4fae9d17d5f491 Author: Bjoern A. Zeeb <bz@FreeBSD.org> AuthorDate: 2024-09-15 18:56:35 +0000 Commit: Bjoern A. Zeeb <bz@FreeBSD.org> CommitDate: 2024-09-16 00:06:36 +0000 net/wifi-firmware-kmod: add more MASTER_SITES pkg builders are failing to fetch all firmware files due to 'Service Unavailable' errors. We assume it is some kind of rate limit on the git.kernel.org site and not something local to the pkg builder setup. I was unable to reproduce it locally. Given git.kernel.org is a geolocated service unroll the server names as well so that pkg builders can fall back to further machines [1]. We do leave the general name first so the common user should not see any problems. Suggested by: dbaio [1] Sponsored by: The FreeBSD Foundation Reviewed by: jrm Differential Revision: https://reviews.freebsd.org/D46681 --- net/wifi-firmware-kmod/Makefile.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net/wifi-firmware-kmod/Makefile.inc b/net/wifi-firmware-kmod/Makefile.inc index 1fe3f8b3528f..fa3bb2068848 100644 --- a/net/wifi-firmware-kmod/Makefile.inc +++ b/net/wifi-firmware-kmod/Makefile.inc @@ -1,7 +1,11 @@ PORTNAME= wifi-firmware-${FWDRV}-kmod PORTVERSION= ${FWDRV_VERSION} CATEGORIES= net -MASTER_SITES= https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ +MASTER_SITES= https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ \ + https://ams.source.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ \ + https://dfw.source.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ \ + https://nyc.source.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ \ + https://sin.source.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ MAINTAINER= bz@FreeBSD.org COMMENT= Firmware modules for the ${FWDRV} (${FLAVOR}) WiFi NIC driver