You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i was having issues with ota scripts doubling magisk scripts making recovery install two instances of magisk into /boot at once when newer versions of magisk were installed and kitsune was uninstalled. this ended up with the magisk binaries in /boot being corrupt
turns out the issue kitsune mask (magisk-delta) installed its own preservation script in /system/ as 99-magisk.sh with a recursive directory "addon.d"
the script looks at /system/addon.d/ for the kitsune binaries, but as a backup looks into /data/adb/magisk for the binaries to preserve into /boot
the conflict is resolved after uninstalling kitsune mask and renaming the file extension of 99-magisk.sh or removing it and the recursive and respective "addon.d" directory that follows.
newer versions of magisk will then work as designed for ota updates to retain magisk
please include a kitsune flashzip uninstaller that cleans remnants of kitsune
it could be as simple as:
rm -f /system/99-magisk.sh
rm -fr /system/addon.d/
The text was updated successfully, but these errors were encountered:
i was having issues with ota scripts doubling magisk scripts making recovery install two instances of magisk into /boot at once when newer versions of magisk were installed and kitsune was uninstalled. this ended up with the magisk binaries in /boot being corrupt
turns out the issue kitsune mask (magisk-delta) installed its own preservation script in /system/ as 99-magisk.sh with a recursive directory "addon.d"
the script looks at /system/addon.d/ for the kitsune binaries, but as a backup looks into /data/adb/magisk for the binaries to preserve into /boot
the conflict is resolved after uninstalling kitsune mask and renaming the file extension of 99-magisk.sh or removing it and the recursive and respective "addon.d" directory that follows.
newer versions of magisk will then work as designed for ota updates to retain magisk
please include a kitsune flashzip uninstaller that cleans remnants of kitsune
it could be as simple as:
rm -f /system/99-magisk.sh
rm -fr /system/addon.d/
The text was updated successfully, but these errors were encountered: