mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 23:12:24 +00:00
04efe88044
Intel wifi cards in the AX210 family need additional PNVM firmware to function properly. Enable the bundling and loading of *.pnvm files. Issue #4663
19 lines
427 B
Makefile
19 lines
427 B
Makefile
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/linux-firmware)
|
|
|
|
content: ucode_files LICENSE.wifi_drv
|
|
|
|
|
|
.PHONY: ucode_files
|
|
ucode_files:
|
|
cp $(PORT_DIR)/firmware/*.ucode .
|
|
cp $(PORT_DIR)/firmware/*.pnvm .
|
|
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
|