Commit 3d9ce2f5 authored by Dimitrios Siganos's avatar Dimitrios Siganos Committed by Peter Korsgaard
Browse files
parent ecfee107
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -765,6 +765,7 @@ source "package/vtun/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/wget/Config.in"
endif
source "package/wireless-regdb/Config.in"
source "package/wireless_tools/Config.in"
source "package/wireshark/Config.in"
source "package/wpa_supplicant/Config.in"
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_WIRELESS_REGDB
	bool "wireless-regdb"
	help
	  Wireless regulatory database.

	  Wireless regulatory database for CRDA. The database lists the
	  allowed radio frequencies for each local jurisdiction.

	  http://linuxwireless.org/en/developers/Regulatory
+18 −0
Original line number Diff line number Diff line
#############################################################
#
# wireless-regdb
#
#############################################################

WIRELESS_REGDB_VERSION = 2013.01.11
WIRELESS_REGDB_SOURCE = wireless-regdb-$(WIRELESS_REGDB_VERSION).tar.bz2
WIRELESS_REGDB_SITE = http://kernel.org/pub/software/network/wireless-regdb
WIRELESS_REGDB_LICENSE = ISC
WIRELESS_REGDB_LICENSE_FILES = LICENSE

define WIRELESS_REGDB_INSTALL_TARGET_CMDS
    install -m 644 -D -T $(@D)/regulatory.bin $(TARGET_DIR)/usr/lib/crda/regulatory.bin
    install -m 644 -D -T $(@D)/linville.key.pub.pem $(TARGET_DIR)/etc/wireless-regdb/pubkeys/linville.key.pub.pem
endef

$(eval $(generic-package))