summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/ypr0tools/files/common/etc/safemode/smode2
-rwxr-xr-xutils/ypr0tools/rockbox.sh15
2 files changed, 12 insertions, 5 deletions
diff --git a/utils/ypr0tools/files/common/etc/safemode/smode b/utils/ypr0tools/files/common/etc/safemode/smode
index f94d09a26d..9a0cea9d66 100755
--- a/utils/ypr0tools/files/common/etc/safemode/smode
+++ b/utils/ypr0tools/files/common/etc/safemode/smode
@@ -30,7 +30,7 @@ fi
30if [ -e "/usr/local/bin/r1" ] 30if [ -e "/usr/local/bin/r1" ]
31then 31then
32 # running on YP-R1 model 32 # running on YP-R1 model
33 BACK=$(echo -e -n "\x02") 33 BACK=$(echo -e -n "\x03")
34 PLATFORM=1 34 PLATFORM=1
35 BUTTON_DEVICE="/dev/r1Button" 35 BUTTON_DEVICE="/dev/r1Button"
36 STORAGES="/dev/stl3,/dev/stl2" 36 STORAGES="/dev/stl3,/dev/stl2"
diff --git a/utils/ypr0tools/rockbox.sh b/utils/ypr0tools/rockbox.sh
index 85e1b43533..fcae06d717 100755
--- a/utils/ypr0tools/rockbox.sh
+++ b/utils/ypr0tools/rockbox.sh
@@ -14,11 +14,18 @@
14# expected to run $MAINFILE 14# expected to run $MAINFILE
15 15
16# Check for menu button being pressed. Return immediately to launch the OF 16# Check for menu button being pressed. Return immediately to launch the OF
17var=$(dd if=/dev/r0Btn bs=4 count=1) 17if [ -e "/dev/r1Button" ]
18# Here a workaround to detect the byte 18then
19var2=$(echo -e -n "\x07") 19 # running on YP-R1 model (volume up button)
20 BTN=$(echo -e -n "\x02")
21 VAL=$(dd if=/dev/r1Button bs=4 count=1)
22else
23 # running on YP-R0 model (menu button)
24 BTN=$(echo -e -n "\x07")
25 VAL=$(dd if=/dev/r0Btn bs=4 count=1)
26fi
20 27
21if [[ "$var" = "$var2" ]] 28if [[ "$VAL" = "$BTN" ]]
22then 29then
23 return 30 return
24fi 31fi