BigW Consortium Gitlab

Commit f5c88036 by rmilecki

buttons: make all button handler scripts return 0

this is required by the new button timeout feature Signed-off-by: 's avatarJohn Crispin <blogic@openwrt.org> Backport of r46471 git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@46581 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 389c915e
#!/bin/sh #!/bin/sh
[ "${TYPE}" = "switch" ] || echo ${BUTTON} > /tmp/failsafe_button [ "${TYPE}" = "switch" ] || echo ${BUTTON} > /tmp/failsafe_button
return 0
...@@ -16,3 +16,5 @@ then ...@@ -16,3 +16,5 @@ then
echo "FACTORY RESET" > /dev/console echo "FACTORY RESET" > /dev/console
jffs2reset -y && reboot & jffs2reset -y && reboot &
fi fi
return 0
...@@ -28,3 +28,5 @@ esac ...@@ -28,3 +28,5 @@ esac
config_foreach wifi_rfkill_set wifi-device config_foreach wifi_rfkill_set wifi-device
uci commit wireless uci commit wireless
wifi up wifi up
return 0
...@@ -7,3 +7,5 @@ if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then ...@@ -7,3 +7,5 @@ if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then
hostapd_cli -i "$socket" wps_pbc hostapd_cli -i "$socket" wps_pbc
done done
fi fi
return 0
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment