95f3fc514c
Changelog (since 2021.04.21): 47007d0 wireless-regdb: update regulatory database based on preceding changes e983a25 Update regulatory rules for Ecuador (EC) a0bcb88 wireless-regdb: Update regulatory rules for Norway (NO) on 6 and 60 GHz cdf854d wireless-regdb: Update regulatory rules for Germany (DE) on 6GHz a4468e8 wireless-regdb: update regulatory database based on preceding changes 86cba52 wireless-regdb: reduce bandwidth for 5730-5850 and 5850-5895 MHz in US 6fa2384 wireless-regdb: remove PTMP-ONLY from 5850-5895 MHz for US 9839e1e wireless-regdb: recent FCC report and order allows 5850-5895 immediately 42dfaf4 wireless-regdb: update 5725-5850 MHz rule for GB Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# wireless-regdb
|
|
#
|
|
################################################################################
|
|
|
|
WIRELESS_REGDB_VERSION = 2021.08.28
|
|
WIRELESS_REGDB_SOURCE = wireless-regdb-$(WIRELESS_REGDB_VERSION).tar.xz
|
|
WIRELESS_REGDB_SITE = $(BR2_KERNEL_MIRROR)/software/network/wireless-regdb
|
|
WIRELESS_REGDB_LICENSE = ISC
|
|
WIRELESS_REGDB_LICENSE_FILES = LICENSE
|
|
WIRELESS_REGDB_CPE_ID_VENDOR = kernel
|
|
|
|
ifeq ($(BR2_PACKAGE_CRDA),y)
|
|
define WIRELESS_REGDB_INSTALL_CRDA_TARGET_CMDS
|
|
$(INSTALL) -m 644 -D -T $(@D)/regulatory.bin \
|
|
$(TARGET_DIR)/usr/lib/crda/regulatory.bin
|
|
$(INSTALL) -m 644 -D -T $(@D)/sforshee.key.pub.pem \
|
|
$(TARGET_DIR)/etc/wireless-regdb/pubkeys/sforshee.key.pub.pem
|
|
endef
|
|
endif
|
|
|
|
define WIRELESS_REGDB_INSTALL_TARGET_CMDS
|
|
$(WIRELESS_REGDB_INSTALL_CRDA_TARGET_CMDS)
|
|
$(INSTALL) -m 644 -D -T $(@D)/regulatory.db \
|
|
$(TARGET_DIR)/lib/firmware/regulatory.db
|
|
$(INSTALL) -m 644 -D -T $(@D)/regulatory.db.p7s \
|
|
$(TARGET_DIR)/lib/firmware/regulatory.db.p7s
|
|
endef
|
|
|
|
$(eval $(generic-package))
|