324f055252
Changelog (since 2021.08.28, [1]): e061299 wireless-regdb: Raise DFS TX power limit to 250 mW (24 dBm) for the US 2ce78ed wireless-regdb: Update regulatory rules for Croatia (HR) on 6GHz 0d39f4c wireless-regdb: Update regulatory rules for South Korea (KR) acad231 wireless-regdb: Update regulatory rules for France (FR) on 6 and 60 GHz ea83a82 wireless-regdb: add support for US S1G channels 4408149 wireless-regdb: add 802.11ah bands to world regulatory domain 5f3cadc wireless-regdb: Update regulatory rules for Spain (ES) on 6GHz e0ac69b Revert "wireless-regdb: Update regulatory rules for South Korea (KR)" 40e5e80 wireless-regdb: Update regulatory rules for South Korea (KR) e427ff2 wireless-regdb: Update regulatory rules for China (CN) 0970116 wireless-regdb: Update regulatory rules for the Netherlands (NL) on 6GHz 4dac44b wireless-regdb: update regulatory database based on preceding changes [1] https://lore.kernel.org/linux-wireless/YhBCKWNw3IMfGs0L@ubuntu-x1/ 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 = 2022.02.18
|
|
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))
|