15 lines
480 B
Makefile
15 lines
480 B
Makefile
|
Package/ap6256-firmware = $(call Package/firmware-default,Broadcom AP6256 firmware)
|
||
|
define Package/ap6256-firmware/install
|
||
|
$(INSTALL_DIR) $(1)/lib/firmware
|
||
|
$(INSTALL_DATA) \
|
||
|
$(TOPDIR)/package/firmware/ap6256/*.bin \
|
||
|
$(1)/lib/firmware/
|
||
|
$(INSTALL_DATA) \
|
||
|
$(TOPDIR)/package/firmware/ap6256/*.hcd \
|
||
|
$(1)/lib/firmware/
|
||
|
$(INSTALL_DATA) \
|
||
|
$(TOPDIR)/package/firmware/ap6256/nvram_ap6256.txt \
|
||
|
$(1)/lib/firmware/nvram.txt
|
||
|
endef
|
||
|
$(eval $(call BuildPackage,ap6256-firmware))
|