wlan-ap-Telecominfraproject/feeds/ucentral/ucentral-schema/files/etc/uci-defaults/99-ucentral-gps
Justin.Guo ef4f095c96 ucentral-schema: add GPS default configuration for WF-660A and WF-672
Fixes: WIFI-15223
Signed-off-by: Justin.Guo <guoxijun@actiontec.com>
2025-11-24 06:26:15 +01:00

30 lines
643 B
Bash
Executable File

#!/bin/sh
. /lib/functions.sh
case "$(board_name)" in
"edgecore,oap101"|\
"edgecore,oap101e"|\
"edgecore,oap101-6e"|\
"edgecore,oap101e-6e")
uci set gps.@gps[-1].tty='ttyMSM1'
uci set gps.@gps[-1].adjust_time=0
uci set gps.@gps[-1].disabled=0
uci set gps.@gps[-1].baudrate=115200
;;
"cig,wf672")
uci set gps.@gps[-1].tty='ttyUSB0'
uci set gps.@gps[-1].adjust_time=0
uci set gps.@gps[-1].disabled=1
uci set gps.@gps[-1].baudrate=115200
;;
"cig,wf660a")
uci set gps.@gps[-1].tty='ttyMSM0'
uci set gps.@gps[-1].adjust_time=0
uci set gps.@gps[-1].disabled=1
uci set gps.@gps[-1].baudrate=9600
;;
esac
exit 0