Skip to content

Commit

Permalink
update packages
Browse files Browse the repository at this point in the history
* crda-4.14
* wireless-regdb-2020.12.20

fix error messages like

```
[    6.954196] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.954207] cfg80211: failed to load regulatory.db
```

registered also in the issue #2999
  • Loading branch information
Eder Sosa committed Feb 9, 2021
1 parent f9b1c75 commit f1b8990
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions srcpkgs/crda/template
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
# Template file for 'crda'
pkgname=crda
version=3.18
revision=5
version=4.14
revision=1
_dbname=wireless-regdb
_dbversion=2016.06.10
_dbversion=2020.11.20
_dbsrc="${XBPS_BUILDDIR}/${_dbname}-${_dbversion}/"
hostmakedepends="libressl python python-M2Crypto pkg-config"
makedepends="libnl-devel libgcrypt-devel"
depends="iw"
short_desc="Central Regulatory Domain Agent for wireless networks"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="ISC"
homepage="http://wireless.kernel.org/en/developers/Regulatory/CRDA"
distfiles="https://kernel.org/pub/software/network/crda/${pkgname}-${version}.tar.xz https://www.kernel.org/pub/software/network/wireless-regdb/${_dbname}-${_dbversion}.tar.xz"
checksum="43fcb9679f8b75ed87ad10944a506292def13e4afb194afa7aa921b01e8ecdbf
cfedf1c3521b3c8f32602f25ed796e96e687c3441a00e7c050fedf7fd4f1b8b7"
homepage="https://wireless.wiki.kernel.org/en/developers/regulatory/crda"
distfiles="https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/crda.git/snapshot/${pkgname}-${version}.tar.gz
https://www.kernel.org/pub/software/network/wireless-regdb/${_dbname}-${_dbversion}.tar.xz"
checksum="5a8f35bb8b27474f466b0e75d451ba917433d8aab1889678a64d9c4e72a8b8c2
b4164490d82ff7b0086e812ac42ab27baf57be24324d4c0ee1c5dd6ba27f2a52"
conf_files="/etc/wireless-regdom.conf"

build_options="wardrive"
Expand All @@ -30,29 +31,30 @@ do_build() {
CFLAGS+=" -Wno-unused-const-variable"
cd ${_dbsrc}
make
cp *.pem ${wrksrc}/pubkeys
cp *.pub.pem ${wrksrc}/pubkeys

cd ${wrksrc}

make CC="$CC" all_noverify
}

do_install() {
make DESTDIR="${DESTDIR}" SBINDIR="/usr/bin/" UDEV_RULE_DIR="/usr/lib/udev/rules.d/" install
vlicense LICENSE
vlicense LICENSE crda.LICENSE

cd ${_dbsrc}
vmkdir usr/lib/crda/
vinstall regulatory.bin 644 usr/lib/crda/
make DESTDIR="${DESTDIR}" FIRMWARE_PATH="/usr/lib/firmware" install
vlicense LICENSE wireless-regdb.LICENSE

vmkdir etc/conf.d/

for dom in $(grep ^country db.txt | cut -d' ' -f2 | sed 's|:||g'); do
echo "#WIRELESS_REGDOM=\"${dom}\"" >> ${DESTDIR}/etc/wireless-regdom.tmp
done
sort -u ${DESTDIR}/etc/wireless-regdom.tmp >> ${DESTDIR}/etc/wireless-regdom.conf
rm ${DESTDIR}/etc/wireless-regdom.tmp

vbin ${FILESDIR}/set-wireless-regdom
echo 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", RUN+="/usr/bin/set-wireless-regdom"' >> ${DESTDIR}/usr/lib/udev/rules.d/85-regulatory.rules
echo 'ACTION=="add", SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", RUN+="/usr/bin/set-wireless-regdom"' >> ${DESTDIR}/usr/lib/udev/rules.d/85-regulatory.rules

find ${DESTDIR} -type f -name \*.h -delete # No need for devel files, no package i know uses libreg.so
}

0 comments on commit f1b8990

Please sign in to comment.