-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
80 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/system/bin/sh | ||
|
||
# Magisk Module: ToyBox-Ext v1.0.8 | ||
# Copyright (c) zgfg @ xda, 2022- | ||
# GitHub source: https://github.com/zgfg/ToyBox-Ext | ||
|
||
# Module's own path (local path) | ||
MODDIR=${0%/*} | ||
cd $MODDIR | ||
|
||
# Log for debugging | ||
LogFile="$MODDIR/service.log" | ||
exec 3>&2 2>$LogFile | ||
set -x | ||
LogTime=$(date +%c) | ||
|
||
# Wait to finish booting | ||
until [ "$(getprop sys.boot_completed)" = 1 ] | ||
do | ||
sleep 1 | ||
done | ||
|
||
# Current time | ||
DLTIME=$(date +"%s") | ||
|
||
# Source the original toybox binary type and last download time | ||
TBSCRIPT='./tbtype.sh' | ||
if [ -f $TBSCRIPT ] | ||
then | ||
. $TBSCRIPT | ||
fi | ||
|
||
# Passed time since the last download | ||
PASSEDTIME=$(($DLTIME - $LASTDLTIME)) | ||
|
||
# Waiting time between downloads (15 days) | ||
WAITTIME=$((15 * 24 * 3600)) | ||
WAITTIME=$((2 * 60)) # toDo: Remove | ||
|
||
# If waiting time passed, download the latest binary again | ||
if [ ! -z $TBTYPE ] && [ $PASSEDTIME -gt $WAITTIME ] | ||
then | ||
sleep 5 | ||
rm -f $TBTYPE | ||
/data/adb/magisk/busybox wget -c -T 20 "http://landley.net/toybox/bin/$TBTYPE" | ||
fi | ||
|
||
# Test the download | ||
if [ ! -z $TBTYPE ] && [ -f $TBTYPE ] | ||
then | ||
# Compare checksums for the old and new binary | ||
MD5Old=$(md5sum toybox-ext | head -c 32) | ||
MD5New=$(md5sum "$TBTYPE" | head -c 32) | ||
if [ "$MD5New" = "$MD5Old" ] | ||
then | ||
# Save the download time | ||
echo "LASTDLTIME=$DLTIME" >> $TBSCRIPT | ||
|
||
# Delete, same as old binary | ||
rm -f $TBTYPE | ||
else | ||
# Test downloaded binary | ||
chmod 755 $TBTYPE | ||
Applets=$(./$TBTYPE) | ||
if [ -z "$Applets" ] | ||
then | ||
# Delete, not working | ||
rm -f $TBTYPE | ||
else | ||
# Save the binary type and installation time | ||
echo "TBTYPE=$TBTYPE" > $TBSCRIPT | ||
echo "LASTDLTIME=$DLTIME" >> $TBSCRIPT | ||
|
||
# Notify user to reboot | ||
exec 2>&3 3>&- | ||
su -lp 2000 -c "cmd notification post -S bigtext -t 'ToyBox-Ext Module' 'Tag' 'Reboot to update ToyBox binary'" 1>/dev/null | ||
exec 3>&2 2>>$LogFile | ||
fi | ||
fi | ||
fi |
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