Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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

View File

@@ -0,0 +1,2 @@
# From https://www.kernel.org/pub/software/network/wireless-regdb/sha256sums.asc
sha256 371eafa3b26ece916ef83aca02c4bed2e54099eb5b8c6d22d3a4358dce6535b9 wireless-regdb-2017.03.07.tar.xz

View File

@@ -0,0 +1,20 @@
################################################################################
#
# wireless-regdb
#
################################################################################
WIRELESS_REGDB_VERSION = 2017.03.07
WIRELESS_REGDB_SOURCE = wireless-regdb-$(WIRELESS_REGDB_VERSION).tar.xz
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)/sforshee.key.pub.pem \
$(TARGET_DIR)/etc/wireless-regdb/pubkeys/sforshee.key.pub.pem
endef
$(eval $(generic-package))