summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/wireless-regdb
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2019-06-18 22:59:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-19 22:13:40 +0100
commit120e9ca1becfe09505da0e90ff8c8863d004f2d2 (patch)
tree65787845e84fa60172a9f0f98358f24c27fc21fb /meta/recipes-kernel/wireless-regdb
parent107c5441aa2f24be12057c06433a31fd719f1d21 (diff)
downloadpoky-120e9ca1becfe09505da0e90ff8c8863d004f2d2.tar.gz
wireless-regdb: Add recipe
Since wpa-supplicant is provided, the database of permitted frequencies should also be provided. wireless-regdb-static should be used with kernel >= 4.15. wireless-regdb can be used with older kernels and is mostly irrelevant here, but keeping it in meta-networking would create needless recipe duplication. This package was previously in meta-networking. (From OE-Core rev: 00c5a665b48c830a0008139b7ae1a51e79b72bb5) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/wireless-regdb')
-rw-r--r--meta/recipes-kernel/wireless-regdb/wireless-regdb_2019.06.03.bb44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2019.06.03.bb b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2019.06.03.bb
new file mode 100644
index 0000000000..9076d94601
--- /dev/null
+++ b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2019.06.03.bb
@@ -0,0 +1,44 @@
1SUMMARY = "Wireless Central Regulatory Domain Database"
2HOMEPAGE = "http://wireless.kernel.org/en/developers/Regulatory/CRDA"
3SECTION = "net"
4LICENSE = "ISC"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=07c4f6dea3845b02a18dc00c8c87699c"
6
7SRC_URI = "https://www.kernel.org/pub/software/network/${BPN}/${BP}.tar.xz"
8SRC_URI[md5sum] = "4b5ba3f089db7fdb7b9daae6a7c1f2cb"
9SRC_URI[sha256sum] = "cd917ed86b63ce8d93947979f1f18948f03a4ac0ad89ec25227b36ac00dc54bf"
10
11inherit bin_package allarch
12
13do_install() {
14 install -d -m0755 ${D}${nonarch_libdir}/crda
15 install -d -m0755 ${D}${sysconfdir}/wireless-regdb/pubkeys
16 install -m 0644 regulatory.bin ${D}${nonarch_libdir}/crda/regulatory.bin
17 install -m 0644 sforshee.key.pub.pem ${D}${sysconfdir}/wireless-regdb/pubkeys/sforshee.key.pub.pem
18
19 install -m 0644 -D regulatory.db ${D}${nonarch_base_libdir}/firmware/regulatory.db
20 install -m 0644 regulatory.db.p7s ${D}${nonarch_base_libdir}/firmware/regulatory.db.p7s
21}
22
23# Install static regulatory DB in /lib/firmware for kernel to load.
24# This requires Linux kernel >= v4.15.
25# For kernel <= v4.14, inherit the kernel_wireless_regdb.bbclass
26# (in meta-networking) in kernel's recipe.
27PACKAGES = "${PN}-static ${PN}"
28RCONFLICTS_${PN} = "${PN}-static"
29
30FILES_${PN}-static = " \
31 ${nonarch_base_libdir}/firmware/regulatory.db \
32 ${nonarch_base_libdir}/firmware/regulatory.db.p7s \
33"
34
35# Native users might want to use the source of regulatory DB.
36# This is for example used by Linux kernel <= v4.14 and
37# kernel_wireless_regdb.bbclass in meta-networking.
38do_install_append_class-native() {
39 install -m 0644 -D db.txt ${D}${libdir}/crda/db.txt
40}
41
42RSUGGESTS_${PN} = "crda"
43
44BBCLASSEXTEND = "native"