-
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Ensure releae-lock.sh does not cause unwanted acc/d termination. - General fixes & optimizations - mv /data/adb/acc-data /sdcard/Download/acc - Reapply voltage limits on plug. Release Notes - All persistent acc data is now stored in /sdcard/Download/acc/. - "mx4pro" users, please send me a new log archive after installing this version. - Nothing was done in regards to the "MIUI 12" bootloop issue. The root cause is still unknown. Unannounced Releases (@romanegunkov) - v2020.9.01 (202009010): Fixed --upgrade bug. - v2020.8.24 (202008240): Prevent auto shutdown if system has been running for less than 15 minutes.
- Loading branch information
Showing
19 changed files
with
123 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/system/bin/sh | ||
id=acc | ||
(pid= | ||
set +o sh 2>/dev/null || : | ||
set +euo sh 2>/dev/null || : | ||
flock -n 0 || { | ||
read pid | ||
kill $pid | ||
timeout 15 flock 0 || kill -KILL $pid | ||
}) <>$TMPDIR/${id}.lock | ||
}) <>$TMPDIR/${id}.lock || : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
# . $0 | ||
# select_ <var> <list> | ||
# | ||
# "#" is an argument for read -n (optional). | ||
# ${PS3:-#?} is used. | ||
|
||
|
||
|
Oops, something went wrong.