Can anyone help me with using Magisk Overlayfs to rename the addon.d folder inside the /system directory? I want to rename this folder to prevent an app from detecting that I'm using a custom ROM.
If I set OVERLAY_MODE=0 and execute the command mount -o rw,remount /system/addon.d, it mounts the contents of the addon.d folder as read-write. This allows me to add, delete, and rename files within addon.d. However, it doesn't let me rename the folder itself. Additionally, attempting to mount /system does not work and results in error: mount: '/system' not in /proc/mounts.
Additional Info
Using Magisk OverlayFS v3.2.1
Both DO_UNMOUNT_KSU and OVERLAY_LEGACY_MOUNT set to true
Can anyone help me with using Magisk Overlayfs to rename the
addon.d
folder inside the/system
directory? I want to rename this folder to prevent an app from detecting that I'm using a custom ROM.If I set
OVERLAY_MODE=0
and execute the commandmount -o rw,remount /system/addon.d
, it mounts the contents of theaddon.d
folder as read-write. This allows me to add, delete, and rename files withinaddon.d
. However, it doesn't let me rename the folder itself. Additionally, attempting to mount/system
does not work and results inerror: mount: '/system' not in /proc/mounts.
Additional Info
DO_UNMOUNT_KSU
andOVERLAY_LEGACY_MOUNT
set to trueOutput of
cat /proc/mounts | grep '/system'