Browse Source

base-files: be verbose when entering failsafe due to a button being pressed

Signed-off-by: John Crispin <[email protected]>

SVN-Revision: 37535
John Crispin 12 years ago
parent
commit
3e54dbbf60

+ 1 - 1
package/base-files/files/etc/rc.button/failsafe

@@ -1,2 +1,2 @@
 #!/bin/sh
-touch /tmp/failsafe_button
+echo ${BUTTON} > /tmp/failsafe_button

+ 1 - 1
package/base-files/files/lib/preinit/30_failsafe_wait

@@ -79,7 +79,7 @@ failsafe_wait() {
       preinit_net_echo "Please press button now to enter failsafe"
       pi_failsafe_net_message=false
       fs_wait_for_key f 'to enter failsafe mode' $fs_failsafe_wait_timeout && FAILSAFE=true
-      [ -f "/tmp/failsafe_button" ] && FAILSAFE=true
+      [ -f "/tmp/failsafe_button" ] && FAILSAFE=true && echo "- failsafe button "`cat /tmp/failsafe_button`" was pressed -"
       [ "$FAILSAFE" = "true" ] && export FAILSAFE && touch /tmp/failsafe
     fi
 }