Tianling Shen a875052d23
license: re-license Project ImmortalWrt under GPL-2.0-only
This fixes license conflict with upstream OpenWrt.

Reviewed-at: https://github.com/immortalwrt/immortalwrt/pull/839.

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
(cherry picked from commit eb782c08339bfc301f382026046d027a523f9ebb)
2022-12-24 10:44:52 +08:00

34 lines
819 B
Makefile

#
# Copyright (C) 2021 ImmortalWrt
# <https://immortalwrt.org>
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=brcmfmac-firmware-4366c0-pcie-vendor
PKG_VERSION:=1
PKG_RELEASE:=4
include $(INCLUDE_DIR)/package.mk
define Package/brcmfmac-firmware-4366c0-pcie-vendor
SECTION:=firmware
CATEGORY:=Firmware
TITLE:=Broadcom 4366c0 FullMac PCIe firmware from vendor
CONFLICTS:=brcmfmac-firmware-4366c0-pcie
endef
define Build/Compile
true
endef
define Package/brcmfmac-firmware-4366c0-pcie-vendor/install
$(INSTALL_DIR) $(1)/lib/firmware/brcm
$(INSTALL_DATA) ./files/brcmfmac4366c-pcie.bin $(1)/lib/firmware/brcm/brcmfmac4366c-pcie.bin
endef
$(eval $(call BuildPackage,brcmfmac-firmware-4366c0-pcie-vendor))