mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-08 02:09:48 +03:00
Added license hash, updated project URL, old site is dead.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 54917abdd7)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
911 B
Makefile
25 lines
911 B
Makefile
################################################################################
|
|
#
|
|
# wireless-regdb
|
|
#
|
|
################################################################################
|
|
|
|
WIRELESS_REGDB_VERSION = 2018.05.31
|
|
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
|
|
$(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))
|