_common.sh 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #!/bin/bash
  2. #=================================================
  3. # COMMON VARIABLES
  4. #=================================================
  5. pkg_dependencies="sipcalc hostapd iw kmod"
  6. nonfree_firmware_packages="firmware-atheros firmware-realtek firmware-ralink firmware-libertas atmel-firmware firmware-zd1211"
  7. free_firmware_packages="firmware-ath9k-htc"
  8. #=================================================
  9. # PERSONAL HELPERS
  10. #=================================================
  11. function iw_devices()
  12. {
  13. echo -n $(/sbin/iw dev | grep Interface | grep -v 'mon\.' | grep -v hotspot | awk '{ print $NF }') | tr ' ' '|'
  14. }
  15. function check_armbian_nonfree_conflict()
  16. {
  17. # If we're on armbian, force $firmware_nonfree
  18. # because armbian-firmware conflicts with firmware-misc-nonfree package
  19. if dpkg --list | grep -q armbian-firmware; then
  20. echo "You are running Armbian and firmware-misc-nonfree are known to conflict with armbian-firwmare. " >&2
  21. echo "The package firmware-misc-nonfree is a dependency of firmware-ralink, so firmware-ralink will NOT be installed" >&2
  22. echo "You can manually install firmware-ralink with 'apt -o Dpkg::Options::=\"--force-overwrite\" firmware-ralink'" >&2
  23. nonfree_firmware_packages=$(echo $nonfree_firmware_packages | sed 's/ firmware-ralink//')
  24. fi
  25. }
  26. function hot_reload_usb_wifi_cards()
  27. {
  28. modulesList="acx-mac80211 ar5523 ar9170usb at76c50x-usb at76_usb ath9k_htc carl9170 orinoco_usb p54usb prism2_usb r8712u r8192s_usb r8192u_usb rndis_wlan rt2500usb rt2800usb rt2870sta rt73usb rtl8187 rtl8192cu usb8xxx vt6656_stage zd1201 zd1211rw"
  29. modprobe --quiet --remove $modulesList || true
  30. possibleUsbDevicesNeedingReload=$(dmesg | grep -Pio '(?<=usb )[0-9-]+(?=:.*firmware)' | sort | uniq)
  31. for usbPath in $possibleUsbDevicesNeedingReload; do
  32. if [[ -f "/sys/bus/usb/devices/$usbPath/authorized" ]]; then
  33. echo "Try to reload driver for usb $usbPath" >&2
  34. echo 0 > /sys/bus/usb/devices/$usbPath/authorized
  35. echo 1 > /sys/bus/usb/devices/$usbPath/authorized
  36. # Wait for driver reloading
  37. sleep 2
  38. fi
  39. done
  40. }
  41. function configure_hostapd()
  42. {
  43. if [[ "${wifi_secure}" -eq 1 ]]; then
  44. sec_comment=""
  45. else
  46. sec_comment="#"
  47. fi
  48. ynh_add_config --template="/etc/hostapd/$app/hostapd.conf.tpl" --destination="/etc/hostapd/$app/hostapd.conf"
  49. }
  50. function configure_dhcp()
  51. {
  52. ynh_add_config --template="/etc/dnsmasq.$app/dhcpdv4.conf.tpl" --destination="/etc/dnsmasq.$app/dhcpdv4.conf"
  53. if [[ -n "${ip6_net}" ]] && [[ "${ip6_net}" != "none" ]]; then
  54. ynh_add_config --template="/etc/dnsmasq.$app/dhcpdv6.conf.tpl" --destination="/etc/dnsmasq.$app/dhcpdv6.conf"
  55. fi
  56. }
  57. #=================================================
  58. # EXPERIMENTAL HELPERS
  59. #=================================================
  60. #=================================================
  61. # FUTURE OFFICIAL HELPERS
  62. #=================================================