H Devs..,
I have to apply the following config from my script to all my routers, If i try to call it from /etc/rc.local in all my routers then its big task.
File : sample.sh
#!/bin/sh
uci set system.@system[0].log_size=4096
uci set system.@system[0].log_type=file
uci set system.@system[0].cronloglevel=5
uci set system.@system[0].log_file= /etc/AP_Logs
uci set wireless.radio0.log_level=1
uci commit system
uci commit wireless
exit 0
so i thought, if i can call it from my source code, and build the image. then it will be easy, Just need to load the image in my Routers,
So, can it possible to call the script file in source code??
Tx, in advance