|
@@ -59,14 +59,6 @@ test ! -e "$final_path" || ynh_die --message="This path already contains a folde
|
|
|
# Register (book) web path
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
|
|
|
|
|
-# If we're on armbian, force $firmware_nonfree
|
|
|
-# because armbian-firmware conflicts with the non-free packages ...
|
|
|
-if dpkg --list | grep -q armbian-firmware; then
|
|
|
- echo "You are running Armbian and non-free firmware are known to conflict with armbian-firwmare. " >&2
|
|
|
- firmware_nonfree=0
|
|
|
- echo "Variable firmware_non_free has been forced to 'no'" >&2
|
|
|
-fi
|
|
|
-
|
|
|
if [ $firmware_nonfree = "no" ]; then
|
|
|
firmware_nonfree=0
|
|
|
elif [ $firmware_nonfree = "yes" ]; then
|
|
@@ -125,15 +117,10 @@ if [[ $firmware_nonfree -eq 1 ]]; then
|
|
|
if ! grep -q non-free /etc/apt/sources.list ; then
|
|
|
sed '/debian/{s/main/& non-free/}' -i /etc/apt/sources.list
|
|
|
fi
|
|
|
- packages=$nonfree_packages
|
|
|
+ check_armbian_nonfree_conflict
|
|
|
+ packages=$nonfree_firmware_packages
|
|
|
else
|
|
|
- packages=$free_packages
|
|
|
- # Extract from http://packages.trisquel.info/toutatis-updates/open-ath9k-htc-firmware
|
|
|
- # https://www.fsf.org/news/ryf-certification-thinkpenguin-usb-with-atheros-chip
|
|
|
- # https://wiki.debian.org/ath9k_htc/open_firmware
|
|
|
- mkdir -p /lib/firmware
|
|
|
- install -b -o root -g root -m 0644 ../conf/firmware_htc-7010.fw /lib/firmware/htc_7010.fw
|
|
|
- install -b -o root -g root -m 0644 ../conf/firmware_htc-9271.fw /lib/firmware/htc_9271.fw
|
|
|
+ packages=$free_firmware_packages
|
|
|
fi
|
|
|
|
|
|
#=================================================
|