Hey, I have a python script with an infinite loop which adds data too a database while the system is on, my script works i have tested it via SSH. but i cant seem to get the script too either be started at boot by the process library or by the OpenWRT's rc.local or init.d files or find any information on why it is not working.
heres my rc.local file
# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
wifi-live-or-reset
boot-complete-notify
[u]python /mnt/sda1/arduino/www/x/app.py &[/u]
# Uncomment the following line in order to reset the microntroller
# right after linux becomes ready
#reset-mcu
# Uncomment the following line in order to disable kernel console
# debug messages, thus having a silent and clean serial communication
# with the microcontroller
#echo 0 > /proc/sys/kernel/printk
exit 0