mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-20 10:51:27 +00:00
This series is based on * 2020-07-10 ipq6018-ilq-11-0_qca_oem-034672b0676c37b1f4519e5720e18e95fe6236ef Add support for * qsdk kernel/v4.4 * qsdk ethernet subsystem * v5.7 ath11k backport + QualComm staging patches (wlan_ap_1.0) * ath11k-firmware * hostapd/iw/... Feature support * full boot, system detection * sysupgrade to nand * HE support via latest hostapd * driver support for usb, crypto, hwmon, cpufreq, ... Missing * NSS/HW flow offloading - FW blob is not redistributable Using the qsdk v4.4 is an intermediate solution while the vanilla is being tested. Vanilla kernel is almost on feature par. Work has already started to upstream the ethernet and switch drivers. Once complete the target will be fully upstream. Signed-off-by: John Crispin <john@phrozen.org>
63 lines
1.7 KiB
Bash
63 lines
1.7 KiB
Bash
#!/bin/sh
|
|
|
|
wps_catch_credentials() {
|
|
local iface ifaces ifc ifname ssid encryption key radio radios
|
|
local found=0
|
|
|
|
. /usr/share/libubox/jshn.sh
|
|
ubus -S -t 30 listen wps_credentials | while read creds; do
|
|
json_init
|
|
json_load "$creds"
|
|
json_select wps_credentials || continue
|
|
json_get_vars ifname ssid key encryption
|
|
local ifcname="$ifname"
|
|
json_init
|
|
json_load "$(ubus -S call network.wireless status)"
|
|
json_get_keys radios
|
|
for radio in $radios; do
|
|
json_select $radio
|
|
json_select interfaces
|
|
json_get_keys ifaces
|
|
for ifc in $ifaces; do
|
|
json_select $ifc
|
|
json_get_vars ifname
|
|
[ "$ifname" = "$ifcname" ] && {
|
|
ubus -S call uci set "{\"config\":\"wireless\", \"type\":\"wifi-iface\", \
|
|
\"match\": { \"device\": \"$radio\", \"encryption\": \"wps\" }, \
|
|
\"values\": { \"encryption\": \"$encryption\", \
|
|
\"ssid\": \"$ssid\", \
|
|
\"key\": \"$key\" } }"
|
|
ubus -S call uci commit '{"config": "wireless"}'
|
|
ubus -S call uci apply
|
|
}
|
|
json_select ..
|
|
done
|
|
json_select ..
|
|
json_select ..
|
|
done
|
|
done
|
|
}
|
|
|
|
if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then
|
|
wps_done=0
|
|
ubusobjs="$( ubus -S list hostapd.* )"
|
|
for ubusobj in $ubusobjs; do
|
|
ubus -S call $ubusobj wps_start && wps_done=1
|
|
done
|
|
[ $wps_done = 0 ] || return 0
|
|
wps_done=0
|
|
ubusobjs="$( ubus -S list wpa_supplicant.* )"
|
|
for ubusobj in $ubusobjs; do
|
|
ifname="$(echo $ubusobj | cut -d'.' -f2 )"
|
|
multi_ap=""
|
|
if [ -e "/var/run/wpa_supplicant-${ifname}.conf.is_multiap" ]; then
|
|
ubus -S call $ubusobj wps_start '{ "multi_ap": true }' && wps_done=1
|
|
else
|
|
ubus -S call $ubusobj wps_start && wps_done=1
|
|
fi
|
|
done
|
|
[ $wps_done = 0 ] || wps_catch_credentials &
|
|
fi
|
|
|
|
return 0
|