mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Merge pull request #1428 from RaspAP/fix/dev-capabilities
Fix: More robust method to parse phy from selected interface
This commit is contained in:
commit
e85e403169
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ if (isset($_POST['interface'])) {
|
|||
$flags = 0;
|
||||
|
||||
// get physical device for selected interface
|
||||
exec("iw dev | awk '/$iface/ {print line}{line = $0}'", $return);
|
||||
exec("iw dev | awk -v iface=".$iface." '/^phy#/ { phy = $0 } $1 == \"Interface\" { interface = $2 } interface == iface { print phy }'", $return);
|
||||
$phy = $return[0];
|
||||
|
||||
// get frequencies supported by device
|
||||
|
|
Loading…
Reference in a new issue