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