mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 01:22:25 +00:00
14 lines
211 B
Bash
Executable File
14 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/system.sh
|
|
|
|
board=$(board_name)
|
|
|
|
case $board in
|
|
edgecore,eap104)
|
|
uci set tisbl.tisbl.backdoorpin=31
|
|
uci set tisbl.tisbl.resetpin=35
|
|
;;
|
|
esac
|