btstack/chipset/intel/Makefile.inc

29 lines
568 B
PHP
Raw Normal View History

#
# Makefile to download firmware and config files for Intel Wireless chipsets from Linux firmware tree
#
# Supported:
# - Intel Wireless 8260
# - Intel Wireless 8265
2018-09-21 09:28:28 +00:00
LINUX_FIRMWARE_URL = https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/
2018-09-21 09:28:28 +00:00
INTEL_FILES = \
ibt-11-5.ddc \
ibt-11-5.sfi \
ibt-12-16.ddc \
ibt-12-16.sfi
2018-09-21 09:28:28 +00:00
all-intel: $(INTEL_FILES)
%.sfi:
2018-09-21 12:55:13 +00:00
@echo Downloading $@
@curl -O -L $(LINUX_FIRMWARE_URL)/intel/$@
%.ddc:
2018-09-21 12:55:13 +00:00
@echo Downloading $@
@curl -O -L $(LINUX_FIRMWARE_URL)/intel/$@
2018-09-21 09:28:28 +00:00
clean-intel:
rm -f $(INTEL_FILES)