From 160e0b4e270e1124c6fef81dc146ee9851c8dae2 Mon Sep 17 00:00:00 2001 From: JabLuszko Date: Sat, 11 Nov 2023 20:48:25 +0100 Subject: [PATCH] logcat? --- update_mad_a9.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update_mad_a9.sh b/update_mad_a9.sh index 3d319fb..0c4030a 100644 --- a/update_mad_a9.sh +++ b/update_mad_a9.sh @@ -1,6 +1,6 @@ #!/system/bin/sh # update mad -# version 9.0 +# version 9.0.1 # created by GhostTalker, hijaked by krz # # adb connect %1:5555 @@ -15,13 +15,16 @@ pdconf="/data/data/com.mad.pogodroid/shared_prefs/com.mad.pogodroid_preferences. log(){ line="`date +'[%Y-%m-%dT%H:%M:%S %Z]'` $@" echo "$line" + /system/bin/log -p v -t "MAD-ATV" "$@" } remount_ro(){ +log "Remouting / as RO" mount -o remount,ro / } remount_rw(){ +log "Remouting / as RW" mount -o remount,rw / }