mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
e7e7893f22
The driver falls in line with the previous 'legacy_wifi_drv' component where the ported wireless LAN stack and device driver is encapsulated in a library. This library in return is used by the 'Libc::Component' providing the necessary environment for the 'wpa_supplicant'. In constrast to the old driver a 'wifi' VFS plugin is in charge of initalizing the 'Lx_kit::Env' prior to executing any static constructors. Fixes #4455.
18 lines
393 B
Makefile
18 lines
393 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/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
|