From: Jason Self Date: Wed, 11 Apr 2018 17:31:16 +0000 (-0700) Subject: Makefile: Install ath9k_htc firmware directly in $(prefix) X-Git-Tag: v1.2~7 X-Git-Url: https://jxself.org/git/?p=linux-libre-firmware.git;a=commitdiff_plain;h=891ba783950d45e962a0b0088ef7f07c989fed53 Makefile: Install ath9k_htc firmware directly in $(prefix) Due to a report that the kernel isn't loading them when in a subdirectory. --- diff --git a/Makefile b/Makefile index 5c1ddf2..f11189a 100644 --- a/Makefile +++ b/Makefile @@ -90,8 +90,8 @@ clean: cd usbdux && $(MAKE) -f Makefile_dux clean install: - if [ -a ath9k_htc/target_firmware/htc_9271.fw ]; then $(install_program) -D ath9k_htc/target_firmware/htc_9271.fw $(prefix)/ath9k_htc/htc_9271.fw; fi; - if [ -a ath9k_htc/target_firmware/htc_7010.fw ]; then $(install_program) -D ath9k_htc/target_firmware/htc_7010.fw $(prefix)/ath9k_htc/htc_7010.fw; fi; + if [ -a ath9k_htc/target_firmware/htc_9271.fw ]; then $(install_program) -D ath9k_htc/target_firmware/htc_9271.fw $(prefix)/htc_9271.fw; fi; + if [ -a ath9k_htc/target_firmware/htc_7010.fw ]; then $(install_program) -D ath9k_htc/target_firmware/htc_7010.fw $(prefix)/htc_7010.fw; fi; if [ -a av7110/bootcode.bin ]; then $(install_program) -D av7110/bootcode.bin $(prefix)/av7110/bootcode.bin; fi; if [ -a cis/3CCFEM556.cis ]; then $(install_program) -D cis/3CCFEM556.cis $(prefix)/cis/3CCFEM556.cis; fi; if [ -a cis/3CXEM556.cis ]; then $(install_program) -D cis/3CXEM556.cis $(prefix)/cis/3CXEM556.cis; fi;