mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
5230adfd63
The patch prevents linking wifi_drv on each build.
15 lines
373 B
Makefile
15 lines
373 B
Makefile
#
|
|
# Pseudo library to copy Intel Wireless firmware to build directory
|
|
#
|
|
|
|
WIFI_CONTRIB_DIR := $(call select_from_ports,dde_linux)
|
|
|
|
IMAGES := $(notdir $(wildcard $(WIFI_CONTRIB_DIR)/firmware/*.ucode))
|
|
BIN_DIR := $(BUILD_BASE_DIR)/bin
|
|
FW_DIR := $(WIFI_CONTRIB_DIR)/firmware
|
|
|
|
all: $(addprefix $(BIN_DIR)/,$(IMAGES))
|
|
|
|
$(BIN_DIR)/%.ucode: $(FW_DIR)/%.ucode
|
|
$(VERBOSE)cp $^ $@
|