mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
22 lines
407 B
Bash
22 lines
407 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2020 Qualcomm Technologies, Inc.
|
|
# All Rights Reserved.
|
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
|
#
|
|
|
|
[ "${ACTION}" = "add" ] && {
|
|
|
|
[ -e /tmp/.wifi-config-done ] && {
|
|
return
|
|
}
|
|
|
|
/sbin/wifi config > /tmp/wireless.tmp
|
|
[ -s /tmp/wireless.tmp ] && {
|
|
cat /tmp/wireless.tmp >> /etc/config/wireless
|
|
}
|
|
rm -f /tmp/wireless.tmp
|
|
|
|
touch /tmp/.wifi-config-done
|
|
}
|
|
|