From ea59d9254b0199d1ed373325207944ef2626541b Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 21 Sep 2018 11:28:28 +0200 Subject: [PATCH] chipset/intel: fix firmware download --- chipset/intel/Makefile.inc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/chipset/intel/Makefile.inc b/chipset/intel/Makefile.inc index 7f9f3162c..e1dadb3de 100644 --- a/chipset/intel/Makefile.inc +++ b/chipset/intel/Makefile.inc @@ -5,24 +5,24 @@ # - Intel Wireless 8260 # - Intel Wireless 8265 -LINUX_FIRMWARE_URL = https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +LINUX_FIRMWARE_URL = https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ -FILES = \ +INTEL_FILES = \ ibt-11-5.ddc \ ibt-11-5.sfi \ ibt-12-16.ddc \ ibt-12-16.sfi -all: $(FILES) +all-intel: $(INTEL_FILES) %.sfi: - @echo "Downloading %@" + @echo "Downloading $@" @curl -O -L $(LINUX_FIRMWARE_URL)/intel/$@ %.ddc: - @echo "Downloading %@" + @echo "Downloading %$" @curl -O -L $(LINUX_FIRMWARE_URL)/intel/$@ -clean: - rm -f $(FILES) +clean-intel: + rm -f $(INTEL_FILES)