diff options
Diffstat (limited to 'minikrebs/profiles/nfc-login')
-rwxr-xr-x | minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager | 14 | ||||
-rwxr-xr-x | minikrebs/profiles/nfc-login/customfiles/usr/bin/mrled | 4 |
2 files changed, 11 insertions, 7 deletions
diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager index 63f35c74..f22a209e 100755 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager +++ b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager @@ -1,18 +1,18 @@ #!/bin/sh -#!/bin/sh #LOGIN_HOST=heidi.shack #LOGIN_HOST=heidi:5000 LOGIN_HOST=10.42.10.38:5000 all_led(){ - for i in 3g wlan lan wps;do - led $i $1 - done + for i in 3g wlan lan wps;do + led $i $1 + + done } led(){ - LED="$1" - ACTION="$2" - echo $ACTION > /sys/class/leds/tp-link:green:$LED/trigger + /usr/bin/mrled $1 $2 } + +# fix for mr3020 weirdness while sleep 1; do uid=$(nfc-list | grep UID | cut -d: -f 2 | sed 's/ //g') if ! [ x"$uid" = x ];then diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/mrled b/minikrebs/profiles/nfc-login/customfiles/usr/bin/mrled new file mode 100755 index 00000000..7059edd1 --- /dev/null +++ b/minikrebs/profiles/nfc-login/customfiles/usr/bin/mrled @@ -0,0 +1,4 @@ +#!/bin/sh +LED="$1" +ACTION="$2" +echo $ACTION > /sys/class/leds/tp-link:green:$LED/trigger |