mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
ucentral-schema: update to latest HEAD
b3ce69e wifiscan: allow bandwith override 6d59acc trace: improve tracing code Fixes: WIFI-7167 Fixes: WIFI-7168 Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
@@ -6,7 +6,7 @@ PKG_RELEASE:=1
|
||||
PKG_SOURCE_URL=https://github.com/blogic/ucentral-schema.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_DATE:=2022-01-17
|
||||
PKG_SOURCE_VERSION:=b8fdfb157fdb85b69e5456f84992a1a70e33ad7a
|
||||
PKG_SOURCE_VERSION:=b3ce69e0cd995e8a244673419fd59cad5fc07f75
|
||||
|
||||
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
||||
PKG_LICENSE:=BSD-3-Clause
|
||||
|
||||
13
feeds/ucentral/ucentral-schema/files/usr/bin/tcpdump_timeout
Executable file
13
feeds/ucentral/ucentral-schema/files/usr/bin/tcpdump_timeout
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
n=$1
|
||||
shift
|
||||
|
||||
if [ $n -eq 0]; then
|
||||
tcpdump $@
|
||||
else
|
||||
tcpdump $@ &
|
||||
x=$!
|
||||
sleep $n
|
||||
kill $x
|
||||
fi
|
||||
Reference in New Issue
Block a user