firmware/bsp/default/root_file_system/etc/rc.local

14 lines
224 B
Bash
Executable File

#!/bin/sh
# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
/usr/sbin/configurenetwork
sleep 3
/usr/sbin/configurehood
touch /tmp/started
exit 0