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.

16 lines
367 B
Plaintext

#
# Copyright (c) 2015 Qualcomm Atheros, Inc..
#
# All Rights Reserved.
# Qualcomm Atheros Confidential and Proprietary.
#
if [ "$ACTION" = "released" -a "$BUTTON" = "wps" ]; then
enable=`/sbin/uci -q get repacd.repacd.Enable`
PIPE_NAME='/var/run/repacd.pipe'
if [ -n "$enable" -a "$enable" -ne 0 -a -p $PIPE_NAME ] ; then
echo "wps_pbc" > $PIPE_NAME &
fi
fi