diff options
author | Manel Caro <mcaro@iseebcn.com> | 2019-03-09 21:25:56 +0100 |
---|---|---|
committer | Manel Caro <mcaro@iseebcn.com> | 2019-03-09 21:25:56 +0100 |
commit | 9332c933fc05f42882640c9a4e35fab09854af84 (patch) | |
tree | 2b9b00b5a411b27f9705603c0d93b8925afd4677 /scripts/rc.local | |
download | board-9332c933fc05f42882640c9a4e35fab09854af84.zip board-9332c933fc05f42882640c9a4e35fab09854af84.tar.gz board-9332c933fc05f42882640c9a4e35fab09854af84.tar.bz2 |
Board: Client Test Suite Initial Commit
Diffstat (limited to 'scripts/rc.local')
-rwxr-xr-x | scripts/rc.local | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/rc.local b/scripts/rc.local new file mode 100755 index 0000000..1a762c1 --- /dev/null +++ b/scripts/rc.local @@ -0,0 +1,19 @@ +#!/bin/sh -e +# +# rc.local +# +# Thisscript is executed at the end of each multiuser runlevel. +#sleep 5 +#/sbin/iw wlan0 set power_save off || echo "COULD NOT DISABLE THE PS WLAN0" +#echo 0 > /sys/kernel/debug/ieee80211/phy0/wlcore/sleep_auth +#echo "WLAN-PS-DISABLE" +sh /etc/init.d/auto-test.sh || exit 1 +# Make sure that the script will "exit 0" on success or any other +# value on error. +# +# In order to enable or disable this script just change the execution +# bits. +# +# By default this script does nothing. + +exit 0 |