mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-10 06:00:11 +00:00
Revert "Always fallback if multiple channels are not supproted"
This commit is contained in:
parent
d4de517ade
commit
d49ed53c3e
@ -1573,26 +1573,16 @@ if [[ $NO_VIRT -eq 0 ]]; then
|
||||
echo "DONE"
|
||||
fi
|
||||
|
||||
# Find interface frequency and channel
|
||||
|
||||
if is_wifi_connected ${WIFI_IFACE} && [[ $FREQ_BAND_SET -eq 0 ]]; then
|
||||
WIFI_IFACE_FREQ=$(iw dev ${WIFI_IFACE} link | grep -i freq | awk '{print $2}')
|
||||
WIFI_IFACE_CHANNEL=$(ieee80211_frequency_to_channel ${WIFI_IFACE_FREQ})
|
||||
echo -n "${WIFI_IFACE} is already associated with channel ${WIFI_IFACE_CHANNEL} (${WIFI_IFACE_FREQ} MHz)"
|
||||
|
||||
|
||||
# If the frequency is not explicitly set, set one automatically
|
||||
if is_wifi_connected ${WIFI_IFACE} && [[ $FREQ_BAND_SET -eq 0 ]]; then
|
||||
if is_5ghz_frequency $WIFI_IFACE_FREQ; then
|
||||
FREQ_BAND=5
|
||||
else
|
||||
FREQ_BAND=2.4
|
||||
fi
|
||||
elif is_wifi_connected ${WIFI_IFACE} && [[ $FREQ_BAND_SET -eq 1 ]]; then
|
||||
echo "Custom frequency band set with ${FREQ_BAND}Mhz with channel ${CHANNEL}"
|
||||
fi
|
||||
|
||||
# If the access point channel is the same as the interface channel, do:
|
||||
# - Make sure that the adapter support multiple channels
|
||||
# - Otherwise fallback to the same interface channel
|
||||
if [[ $WIFI_IFACE_CHANNEL -ne $CHANNEL ]]; then
|
||||
if ( get_adapter_info ${IFACE} | grep "#channels <= 2" -q )
|
||||
then
|
||||
@ -1605,6 +1595,10 @@ if [[ $NO_VIRT -eq 0 ]]; then
|
||||
else
|
||||
echo "channel------------------ ${CHANNEL}"
|
||||
fi
|
||||
elif is_wifi_connected ${WIFI_IFACE} && [[ $FREQ_BAND_SET -eq 1 ]]; then
|
||||
echo "Custom frequency band set with ${FREQ_BAND}Mhz with channel ${CHANNEL}"
|
||||
fi
|
||||
|
||||
|
||||
VIRTDIEMSG="Maybe your WiFi adapter does not fully support virtual interfaces.
|
||||
Try again with --no-virt."
|
||||
|
Loading…
Reference in New Issue
Block a user