You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
426 B
Plaintext
18 lines
426 B
Plaintext
#
|
|
# Copyright (c) 2013 Qualcomm Atheros, Inc..
|
|
#
|
|
# All Rights Reserved.
|
|
# Qualcomm Atheros Confidential and Proprietary.
|
|
#
|
|
|
|
|
|
if [ "$ACTION" = "released" -a "$BUTTON" = "wps" ]; then
|
|
local enable
|
|
enable=`/sbin/uci -q get wsplcd.config.HyFiSecurity`
|
|
|
|
if [ -n "$enable" -a "$enable" -ne 0 ] ; then
|
|
echo "Push button event of 1905.1 AP Auto Configuration" > /dev/console
|
|
echo "wps_pbc $SEEN" > /var/run/wsplc.pipe &
|
|
fi
|
|
fi
|