mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-19 10:23:03 +00:00
15 lines
203 B
Bash
Executable File
15 lines
203 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
set -x
|
|
START=38
|
|
start() {
|
|
#delay for wifi module load
|
|
sleep 0.5
|
|
/usr/sbin/rtk_txcalr -w
|
|
iw reg set US
|
|
}
|
|
stop()
|
|
{
|
|
echo "kill rtk_txcalr\n"
|
|
}
|