2022-02-10 17:09:17 +00:00
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/linux-firmware)
|
|
|
|
|
|
|
|
content: ucode_files LICENSE.wifi_drv
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: ucode_files
|
|
|
|
ucode_files:
|
2023-01-04 12:03:27 +00:00
|
|
|
cp $(PORT_DIR)/firmware/*.bin .
|
2022-02-10 17:09:17 +00:00
|
|
|
cp $(PORT_DIR)/firmware/*.ucode .
|
2022-11-10 12:37:42 +00:00
|
|
|
cp $(PORT_DIR)/firmware/*.pnvm .
|
2022-02-10 17:09:17 +00:00
|
|
|
cp $(PORT_DIR)/firmware/regulatory.db .
|
|
|
|
cp $(PORT_DIR)/firmware/regulatory.db.p7s .
|
|
|
|
|
|
|
|
LICENSE.wifi_drv:
|
|
|
|
for i in $(PORT_DIR)/firmware/LICEN*E.*; do \
|
|
|
|
echo "$${i##*/}:" >> $@; \
|
|
|
|
cat $$i >> $@; \
|
|
|
|
echo >> $@; \
|
|
|
|
done
|