You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
7 months ago
|
#!/vendor/bin/sh
|
||
|
|
||
|
# take the wake lock
|
||
|
allowsuspend=`getprop ro.boot.qemu.allowsuspend`
|
||
|
case "$allowsuspend" in
|
||
|
"") echo "emulator_wake_lock" > /sys/power/wake_lock
|
||
|
;;
|
||
|
1) echo "emulator_wake_lock" > /sys/power/wake_unlock
|
||
|
;;
|
||
|
*) echo "emulator_wake_lock" > /sys/power/wake_lock
|
||
|
;;
|
||
|
esac
|