mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-16 15:39:59 +00:00
29 lines
541 B
PHP
29 lines
541 B
PHP
|
#
|
||
|
# Makefile to download firmware and config files for Intel Wireless chipsets from Linux firmware tree
|
||
|
#
|
||
|
# Supported:
|
||
|
# - Intel Wireless 8260
|
||
|
# - Intel Wireless 8265
|
||
|
|
||
|
LINUX_FIRMWARE_URL = https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/
|
||
|
|
||
|
FILES = \
|
||
|
ibt-11-5.ddc \
|
||
|
ibt-11-5.sfi \
|
||
|
ibt-12-16.ddc \
|
||
|
ibt-12-16.sfi
|
||
|
|
||
|
all: $(FILES)
|
||
|
|
||
|
%.sfi:
|
||
|
@echo "Downloading %@"
|
||
|
@curl -O -L $(LINUX_FIRMWARE_URL)/intel/$@
|
||
|
|
||
|
%.ddc:
|
||
|
@echo "Downloading %@"
|
||
|
@curl -O -L $(LINUX_FIRMWARE_URL)/intel/$@
|
||
|
|
||
|
clean:
|
||
|
rm -f $(FILES)
|
||
|
|