linux-firmware: allow LINUX_FIRMWARE_FILES to contain wildcards

This commit will allow the LINUX_FIRMWARE_FILES variable to contain
wildcards, which will simplify the handling of firmware that are
available in numerous revisions.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Gustavo Zacarias 2016-04-24 23:34:51 +02:00 committed by Thomas Petazzoni
parent ab8de336eb
commit 095c04f47c

View File

@ -356,7 +356,8 @@ endif
ifneq ($(LINUX_FIRMWARE_FILES),)
define LINUX_FIRMWARE_INSTALL_FILES
$(TAR) c -C $(@D) $(sort $(LINUX_FIRMWARE_FILES)) | \
cd $(@D) ; \
$(TAR) c $(sort $(LINUX_FIRMWARE_FILES)) | \
$(TAR) x -C $(TARGET_DIR)/lib/firmware
endef
endif