diff -Nru open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/ath9k_htc.conf open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/ath9k_htc.conf --- open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/ath9k_htc.conf 2023-02-25 18:28:32.000000000 +0000 +++ open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/ath9k_htc.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -options ath9k_htc use_dev_fw=1 diff -Nru open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/changelog open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/changelog --- open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/changelog 2023-02-25 19:37:02.000000000 +0000 +++ open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/changelog 2023-07-26 19:09:48.000000000 +0000 @@ -1,3 +1,12 @@ +open-ath9k-htc-firmware (1.4.0-108-gd856466+dfsg1-1.4) unstable; urgency=medium + + * Non-maintainer upload. + * Add notes on how to generate modaliases. + * Remove Qwest/Actiontec 802AIN ID. + * Prevent requesting dev firmware. (Closes: #1038684) + + -- Bastian Germann Wed, 26 Jul 2023 21:09:48 +0200 + open-ath9k-htc-firmware (1.4.0-108-gd856466+dfsg1-1.3) unstable; urgency=medium * Non-maintainer upload. diff -Nru open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.install open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.install --- open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.install 2023-02-25 18:28:32.000000000 +0000 +++ open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.install 2023-07-26 19:09:18.000000000 +0000 @@ -1,3 +1,2 @@ -debian/ath9k_htc.conf etc/modprobe.d/ target_firmware/htc_*.fw lib/firmware/ath9k_htc/ debian/firmware-ath9k-htc.metainfo.xml usr/share/metainfo diff -Nru open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.metainfo.xml open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.metainfo.xml --- open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.metainfo.xml 2023-02-25 19:29:35.000000000 +0000 +++ open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/firmware-ath9k-htc.metainfo.xml 2023-07-26 19:09:18.000000000 +0000 @@ -32,7 +32,6 @@ usb:v0471p209Ed* usb:v1EDAp2315d* usb:v0CF3p7015d* - usb:v1668p1200d* usb:v0CF3p7010d* usb:v0846p9018d* usb:v083ApA704d* diff -Nru open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/README.source open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/README.source --- open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/README.source 2023-02-25 18:28:32.000000000 +0000 +++ open-ath9k-htc-firmware-1.4.0-108-gd856466+dfsg1/debian/README.source 2023-07-26 19:09:18.000000000 +0000 @@ -16,3 +16,15 @@ and GCC. The sources are currently repacked with sources from Git; uscan and friends do the right thing. The package version corresponds to the typical format of 'git describe'. + +The modaliases in debian/firmware-ath9k-htc.metainfo.xml can be generated +from a running kernel via: +cd /lib/modules/`uname -r`/kernel/drivers/net/wireless/ath/ath9k +for alias in `modinfo -F alias ath9k_htc.ko` +do + if [ "$alias" = 'usb:v1668p1200d*dc*dsc*dp*ic*isc*ip*in*' ] + then + continue + fi + echo "$alias" +done