Skip to content

Commit 3c020a9

Browse files
committed
Partially revert the previous commit
Current commit will restore the modifications 1,4 in the previous commit 156c6ae. Thanks for people in the community, @privacyguy123, @aviraxp and @HuskyDG, just to name a few, to notice my sever mistakes. Those mistakes are mainly caused by my inconsistent usage of testing environments. I wrongly compared the detecting results with different `Zygisk` implementations and was too assertive and careless to make those changes. Here is the explanation for reverting the previous commit: 1. `system.prop` is not extracted for Android 1O+ devices in `customize.sh`; 2. mounting /data/resource-cache is still needed in some systems (ColorOS, to be confirmed), and it isn't a detection point. To verify that modifications 2,3 are effective, I tested them with `Zygisk Next` 1.2.4 (445-031a64c-release) and `Holmes` V1.5.1 Narcissus on `Magisk` a34c04f9 280002.
1 parent 156c6ae commit 3c020a9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

magisk-loader/magisk_module/daemon

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ if [ $debug = "true" ]; then
2323
fi
2424
fi
2525

26+
mount tmpfs -t tmpfs /data/resource-cache
27+
2628
if [ ! -S "/dev/socket/zygote" ]; then
2729
timeout 0.5 inotifyd - /dev/socket:near | while read -r line; do
2830
$debug && log -p v -t "LSPosed" "inotify: $line"
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dalvik.vm.dex2oat-flags=--inline-max-code-units=0

0 commit comments

Comments
 (0)