update magisk

This commit is contained in:
rikka
2025-11-12 12:28:59 +08:00
parent 9b310aa4de
commit ae3434afd9
2 changed files with 5 additions and 5 deletions

View File

@@ -147,6 +147,6 @@ docker run -itd --rm --privileged \
## Credits
1. [remote-android](https://github.com/remote-android)
2. [waydroid_script](https://github.com/casualsnek/waydroid_script)
3. [Magisk Delta](https://huskydg.github.io/magisk-files/)
3. ~~[Magisk Delta](https://huskydg.github.io/magisk-files/)~~
4. [vendor_intel_proprietary_houdini](https://github.com/supremegamers/vendor_intel_proprietary_houdini)
5. [Magisk](https://github.com/topjohnwu/Magisk)

View File

@@ -7,9 +7,9 @@ from tools.helper import bcolors, download_file, host, print_color, run, get_dow
class Magisk(General):
download_loc = get_download_dir()
dl_link = "https://github.com/ayasa520/Magisk/releases/download/debug-7be6d81-30200/Magisk-7be6d81-30200-debug.apk"
dl_link = "https://github.com/ayasa520/Magisk/releases/download/canary-30403/app-debug.apk"
dl_file_name = os.path.join(download_loc, "magisk.apk")
act_md5 = "834b0f063ea713bea48b92c7d5648ce9"
act_md5 = "3b6f1497ac3be2669724abf902810f5c"
extract_to = "/tmp/magisk_unpack"
copy_dir = "./magisk"
magisk_dir = os.path.join(copy_dir, "system", "etc", "init", "magisk")
@@ -50,7 +50,7 @@ on property:init.svc.zygote=stopped
""".format(MAGISKSYSTEMDIR="/system/etc/init/magisk", MAGISKTMP="/sbin", magisk_name="magisk")
def download(self):
print_color("Downloading latest Magisk-Delta now .....", bcolors.GREEN)
print_color("Downloading latest Magisk now .....", bcolors.GREEN)
super().download()
def copy(self):