├── META-INF └── com │ └── google │ └── android │ ├── updater-script │ └── update-binary ├── service.sh ├── module.prop ├── post-fs-data.sh ├── customize.sh └── README.md /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | 3 | MODDIR="${0%/*}" 4 | 5 | sleep 60 6 | 7 | #off tombstoned 8 | for SERVICE in tombstoned; do 9 | stop $SERVICE 10 | done 11 | 12 | # Exit 13 | exit 0 14 | -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- 1 | id=OffTombstoned 2 | name=Off Tombstoned 3 | version=v4 4 | versionCode=4 5 | author=@LeanHijosdesusMadres 6 | description=Tombstoned is the process responsible for generating system crash reports in the background. 7 | support=https://t.me/modulostk -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | MODDIR=${0%/*} 3 | 4 | # @modulostk [telegram] 5 | # Max tombstone count [/data/tombstones] 6 | resetprop -n tombstoned.max_tombstone_count 0 7 | # Max anr tombstone count [/data/anr] 8 | resetprop -n tombstoned.max_anr_count 0 9 | 10 | exit 0 -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | ui_print "" 3 | ui_print "* 🅾🅵🅵 🆃🅾🅼🅱🆂🆃🅾🅽🅴🅳 *" 4 | ui_print "* 🅾🅵🅵 🆃🅾🅼🅱🆂🆃🅾🅽🅴🅳 *" 5 | ui_print "* 🅾🅵🅵 🆃🅾🅼🅱🆂🆃🅾🅽🅴🅳 *" 6 | ui_print "* 🅾🅵🅵 🆃🅾🅼🅱🆂🆃🅾🅽🅴🅳 *" 7 | ui_print "* 🅾🅵🅵 🆃🅾🅼🅱🆂🆃🅾🅽🅴🅳 *" 8 | ui_print "" 9 | ui_print "* By @LeanHijosdesusMadres *" 10 | 11 | set_perm_recursive ${MODPATH} 0 0 0755 0644 12 | 13 | ui_print "" 14 | ui_print "☬ @ModulOStk" 15 | ui_print "" 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Off Tombstoned 2 | 3 | ![](https://i.ibb.co/9T6jQr3/IMG-20231216-180606-354.jpg) 4 | 5 | ## Description 6 | Tombstoned is the process in charge of generating crash reports in the system in the background, also known as "tombstones", this module deactivates this function that you have never used and that perhaps you did not know existed. 7 | 8 | ## Support 9 | - [GitHub](https://github.com/LeanxModulostk/Off-Tombstoned) 10 | - [Telegram Channel](https://t.me/modulostk) 11 | 12 | ## Special Thanks 13 | 14 | • [Android Google Source](https://android.googlesource.com/platform/system/core/+/android-o-mr1-iot-release-1.0.1/debuggerd/tombstoned/tombstoned.cpp) 15 | 16 | • [Zackptg5 for the MMT-Ex template](https://github.com/Zackptg5) 17 | 18 | • [Topjohnwu for making Magisk](https://github.com/topjohnwu) 19 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | 3 | ################# 4 | # Initialization 5 | ################# 6 | 7 | umask 022 8 | 9 | # echo before loading util_functions 10 | ui_print() { echo "$1"; } 11 | 12 | require_new_magisk() { 13 | ui_print "*******************************" 14 | ui_print " Please install Magisk v20.4+! " 15 | ui_print "*******************************" 16 | exit 1 17 | } 18 | 19 | ######################### 20 | # Load util_functions.sh 21 | ######################### 22 | 23 | OUTFD=$2 24 | ZIPFILE=$3 25 | 26 | mount /data 2>/dev/null 27 | 28 | [ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk 29 | . /data/adb/magisk/util_functions.sh 30 | [ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk 31 | 32 | nohup am start -a android.intent.action.VIEW -d https://t.me/modulostk >/dev/null 2>&1 & 33 | 34 | install_module 35 | exit 0 --------------------------------------------------------------------------------