Buildroot 2018-11 (#258)

* Update to buildroot 2018.11

* containerd update

* runc update

* runc docker engine

* runc docker proxy

* update rpi firmware

* update network manager

* update dhcpd

* update wait on network

* update rpi wifi

* revert glibc
This commit is contained in:
Pascal Vizeli
2018-11-26 11:04:01 +01:00
committed by GitHub
parent a9bbc7babe
commit 4411307353
3154 changed files with 41316 additions and 24203 deletions

View File

@@ -3,7 +3,12 @@ config BR2_PACKAGE_WIRELESS_REGDB
help
Wireless regulatory database.
Wireless regulatory database for CRDA. The database lists the
Wireless regulatory database. The database lists the
allowed radio frequencies for each local jurisdiction.
http://linuxwireless.org/en/developers/Regulatory
Since linux-4.15 the kernel supports loading the files
regulatory.db/regulatory.db.p7s directly from the
/lib/firmware directory, for earlier versions the crda helper
application is needed.
https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb

View File

@@ -1,2 +1,4 @@
# From https://www.kernel.org/pub/software/network/wireless-regdb/sha256sums.asc
sha256 371eafa3b26ece916ef83aca02c4bed2e54099eb5b8c6d22d3a4358dce6535b9 wireless-regdb-2017.03.07.tar.xz
sha256 a36b8147f1a3e98e1fd44321a4b8d7ad2f03cac98cdf527ccb1693342f08d65a wireless-regdb-2018.09.07.tar.xz
# Locally computed
sha256 678b0df753c86198fc496d1f1033429bbd57f101472132ee7eaaf9f5e0a7fae1 LICENSE

View File

@@ -4,17 +4,23 @@
#
################################################################################
WIRELESS_REGDB_VERSION = 2017.03.07
WIRELESS_REGDB_VERSION = 2018.09.07
WIRELESS_REGDB_SOURCE = wireless-regdb-$(WIRELESS_REGDB_VERSION).tar.xz
WIRELESS_REGDB_SITE = http://kernel.org/pub/software/network/wireless-regdb
WIRELESS_REGDB_SITE = $(BR2_KERNEL_MIRROR)/software/network/wireless-regdb
WIRELESS_REGDB_LICENSE = ISC
WIRELESS_REGDB_LICENSE_FILES = LICENSE
define WIRELESS_REGDB_INSTALL_TARGET_CMDS
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 \