[HELP] How to remove something from the product partition? - Magisk

I am trying to remove a pre-installed app from the product partition and from what I have read, magisk as of 19.4 and 20 supports modifying files in the product partition. I can't seem to find any magisk modules that allow you to do so. I am familiar with C++ but never have written anything for android. Does anyone know of an app or magisk module that will allow me to do what I am trying to do? System app uninstaller fails, and FX file explorer can't mount it, so I'm not sure what to do. Thanks.
Basically what I want to do is to disable/remove the original Maps apk in the product partition so I can install a version that I prefer that is older than the pre-installed one. All attempts to modify the version string in the apk have failed

You'll need a Magisk module. You could of course create an installer, but that's not really necessary for such a simple thing.
In /data/adb/modules, create a directory that will be your module. In this directory create /system/product/<path to the app>, and finally in this directory create a file naked .replace (mind the leading dot, it's necessary). You'll end up with:
Code:
/data/adb/modules/<your module directory>/system/product/<path to app>/.replace
Official doc details:
https://topjohnwu.github.io/Magisk/guides.html#remove-folders
So that this will look nice in the Manager modules list you should also create a module.prop file. Just follow the docs, right here:
https://topjohnwu.github.io/Magisk/guides.html#moduleprop
(It's usually a good idea if "id" matches the module directory name mentioned above.)

Didgeridoohan said:
You'll need a Magisk module. You could of course create an installer, but that's not really necessary for such a simple thing.
In /data/adb/modules, create a directory that will be your module. In this directory create /system/product/<path to the app>, and finally in this directory create a file naked .replace (mind the leading dot, it's necessary). You'll end up with:
Code:
/data/adb/modules/<your module directory>/system/product/<path to app>/.replace
Official doc details:
https://topjohnwu.github.io/Magisk/guides.html#remove-folders
So that this will look nice in the Manager modules list you should also create a module.prop file. Just follow the docs, right here:
https://topjohnwu.github.io/Magisk/guides.html#moduleprop
(It's usually a good idea if "id" matches the module directory name mentioned above.)
Click to expand...
Click to collapse
Thank you very much for your response. I have done just as you said and created /data/adb/modules/MapsDowngrade/system/product/Maps/.replace as well as created the module.prop . I noticed youtube vanced has placed the modified apk in the folder as well, which I did so. Unfortunately, upon reboot the original Maps is still there as if nothing changed

Did you also uninstall any updates that had been made to Maps? Updated are stored in /data, so those will still be there after any /system apps have been removed.

Yes, this is a fresh install of the OS and all updates were disabled on play store before it was put online

I just made a full magisk module installer and still have the same issue. Here is a copy of the magisk file I created: http://nightfire.no-ip.org/DowngradeMaps.zip
I based it off of the youtube vanced module but removed unnecessary parts but the original Maps is still showing up, even if I disable it before installing the module and then re-enabling it.

Ok. More info needed then.
First I would have expected the Maps directory to be in /system/product/app or /system/product/priv-app instead of directly in /system/product/, but I don't have a device with a product partition so I don't know how it works.
Second, what does /system/product/Maps and /product/Maps look like? If the module worked as expected both of those should only contain the .replace file.
Last, please post the Magisk log, but only do so after you've installed the Canary debug build, since it has much more detailed logging (install the apk from here and make sure that debug is selected under "Update channel" in the Manager settings: https://forum.xda-developers.com/apps/magisk/dev-magisk-canary-channel-bleeding-edge-t3839337). The log might show if things are mounting properly.

click4dylan said:
I just made a full magisk module installer and still have the same issue. Here is a copy of the magisk file I created: http://nightfire.no-ip.org/DowngradeMaps.zip
I based it off of the youtube vanced module but removed unnecessary parts but the original Maps is still showing up, even if I disable it before installing the module and then re-enabling it.
Click to expand...
Click to collapse
Using a module installation zip might actually be too much in this case, since it's such a simple module. Just complicates things unnecessarily... I'd advice just staying with creating the directory manually.

Sorry I wrote my directory above wrongly. My phone (Oneplus 7t) has a system/product/app/Maps/Maps.apk and a product/app/Maps/Maps.apk
I will reply with the logs soon. I will add a .replace for both directories now.

As expected, replacing both product and system/product had no effect. Here is my log file:
Code:
--------- beginning of main
--------- beginning of system
02-12 12:13:21.568 766 766 I Magisk : Magisk v20.3-15bd2da8(20201) daemon started
02-12 12:13:21.568 766 766 I Magisk : * Device API level: 29
02-12 12:13:21.595 766 767 I Magisk : ** post-fs-data mode running
02-12 12:13:21.598 766 767 I Magisk : * Initializing Magisk environment
02-12 12:13:21.601 766 767 I Magisk : * Mounting mirrors
02-12 12:13:21.602 766 767 I Magisk : mount: /sbin/.magisk/mirror/product
02-12 12:13:21.602 766 767 I Magisk : mount: /sbin/.magisk/mirror/vendor
02-12 12:13:21.602 766 767 I Magisk : mount: /sbin/.magisk/mirror/data
02-12 12:13:21.602 766 767 I Magisk : link: /sbin/.magisk/mirror/system
02-12 12:13:21.602 766 767 I Magisk : * Setting up internal busybox
02-12 12:13:21.612 766 767 I Magisk : * Running post-fs-data.d scripts
02-12 12:13:21.618 766 767 I Magisk : * Running module post-fs-data scripts
02-12 12:13:21.618 766 767 I Magisk : iYTBP-Vanced-black-Magisk-Repo: exec [post-fs-data.sh]
02-12 12:13:21.623 766 767 I Magisk : * Loading modules
02-12 12:13:21.623 766 767 I Magisk : iYTBP-Vanced-black-Magisk-Repo: constructing magic mount structure
02-12 12:13:21.624 766 767 I Magisk : DowngradeMaps: constructing magic mount structure
02-12 12:13:21.624 766 767 E Magisk : symlink ./system/product->/data/adb/modules/DowngradeMaps/product failed with 17: File exists
02-12 12:13:21.624 766 767 I Magisk : GoogleDialerFramework: constructing magic mount structure
02-12 12:13:21.628 766 767 I Magisk : bind_mount: /product/app/Maps
02-12 12:13:21.628 766 767 I Magisk : mnt_tmpfs : /system/app
02-12 12:13:21.628 766 767 I Magisk : bind_mount: /system/app/YouTube
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/HTMLViewer
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPBugReportLite
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OsuLogin
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/Netflix_Stub
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/BackupRestoreRemoteService
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/DeskClock
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/BookmarkProvider
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/SoterService
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/PlayAutoInstallConfig
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/NxpSecureElement
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/LiveWallpapersPicker
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/PlatformCaptivePortalLogin
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPCommonLogTool
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/SimAppDialog
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/EngineeringMode
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/Traceur
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/Netflix_Activation
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/PhotosOnline
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/KeyChain
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPSesAuthentication
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPSoundTuner
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/BasicDreams
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPScreenRecord
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/WifiRfTestApk
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/oem_tcma
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPPush
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/Stk
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/CarrierDefaultApp
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/WapiCertManage
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPFilemanager
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/Rftoolkit
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPGamingSpace
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/QColor
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPLongshot
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPLiveWallpaper
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPTelephonyDiagnoseManager
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/SmscPlugger
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/AntHalService
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPBreathMode
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/NxpNfcNci
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/OPMmsLocationFramework
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/NFCTestMode
02-12 12:13:21.629 766 767 I Magisk : bind_mount: /system/app/CtsShimPrebuilt
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/EngSpecialTest
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/GoogleExtShared
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OemAutoTestServer
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/LogKitSdService
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/PrintSpooler
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OPOnlineConfig
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/BluetoothExt
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/CompanionDeviceManager
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/PartnerBookmarksProvider
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/SensorTestTool
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/BluetoothMidiService
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OPWallpaperResources
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/Backup
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/NVBackupUI
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OPBackup
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/EasterEgg_O2
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/ARCore_stub
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/PacProcessor
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/Calculator
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OPSafe
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/WAPPushManager
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/WallpaperBackup
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OEMLogKit
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/SdCardService
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OPIntelliService
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/GooglePrintRecommendationService
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/BuiltInPrintService
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/OPAppUpgrader
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/Bluetooth
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/CertInstaller
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/app/BTtestmode
02-12 12:13:21.630 766 767 I Magisk : mnt_tmpfs : /system/framework
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/com.google.android.dialer.support.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/android.hardware.light-V2.0-java.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/framework.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/locksettings.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/WfdCommon.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-ims-common.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/arm
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/am.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/services.jar.prof
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/hid.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/QPerformance.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-QPerformance.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/dpm.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/telephony-common.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-android.test.base.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/oneplus_sdk_wrapper.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/bmgr.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/vr.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/oneplus-services.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/com.qti.snapdragon.sdk.display.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/wigig-service.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/qmapbridge.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/wapicertstore.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-framework.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/vendor.oneplus.hardware.motorcontrol-V1.0-java.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/com.nxp.nfc.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-ext.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-qcnvitems.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot-core-libart.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/boot.vdex
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/VendorPropExt.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/svc.jar
02-12 12:13:21.630 766 767 I Magisk : bind_mount: /system/framework/arm64
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/voip-common.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/vendor.oneplus.fingerprint.extension-V1.0-java.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/vendor.oneplus.camera.CameraHIDL-V1.0-java.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/content.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.android.location.provider.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/monkey.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/wifi-service.jar.prof
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/android.test.mock.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.qrd.wappush.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-okhttp.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.qti.location.sdk.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/telephony-ext.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/tcmiface.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/ethernet-service.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/framework-res.apk
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/ims-common.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-voip-common.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-oneplus_sdk_wrapper.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.android.nfc_extras.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/sm.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.android.future.usb.accessory.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/wifi-service.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/audiosphere.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/oneplus_sdk_utils.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/tcmclient.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-bouncycastle.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/qcom.fmradio.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/android.hidl.manager-V1.0-java.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/input.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/javax.obex.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/requestsync.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/ConnectivityExt.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/android.test.runner.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/oneplus-framework.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-telephony-common.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-WfdCommon.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/android.hidl.base-V1.0-java.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/UxPerformance.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/vendor.oneplus.hardware.param-V1.0-java.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/appwidget.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/izat.xt.srv.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/qcnvitems.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/bu.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/oneplus-coreservices.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/services.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-UxPerformance.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-telephony-ext.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-oneplus-framework.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.android.mediadrm.signer.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/com.android.media.remotedisplay.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-tcmiface.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/oem-services.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-apache-xml.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/ext.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/android.test.base.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/org.apache.http.legacy.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/org.apache.http.legacy.jar.prof
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/media.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/uiautomator.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/ActivityExt.jar
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/boot-oneplus_sdk_utils.vdex
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/oat
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/framework/telecom.jar
02-12 12:13:21.631 766 767 I Magisk : mnt_tmpfs : /system/etc/sysconfig
02-12 12:13:21.631 766 767 I Magisk : bind_mount: /system/etc/sysconfig/google_exclusives_enable.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/dialer_experience.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/power_profile_com.oneplus.mms.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/power_profile_com.recognize.number.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/hiddenapi-package-whitelist.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/qti_whitelist.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/power_profile_com.oneplus.optvassistant.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/framework-sysconfig.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/sysconfig/oem_whitelist.xml
02-12 12:13:21.632 766 767 I Magisk : mnt_tmpfs : /system/etc/permissions
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.google.android.dialer.support.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.android.media.remotedisplay.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/qti_permissions.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/org.apache.http.legacy.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/android.software.live_wallpaper.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-google-system.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.qti.snapdragon.sdk.display.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.qti.location.sdk.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.oneplus.software.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/GooglePermissionController_permissions.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.oneplus.software.overseas.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.android.location.provider.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/android.test.base.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/qti_libpermissions.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/android.test.runner.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/oneplus_sdk_wrapper.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-oem-system.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/platform.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/GoogleDocumentsUI_permissions.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/oneplus_sdk_utils.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-platform.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.android.nfc_extras.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/izat.xt.srv.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.android.mediadrm.signer.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.android.future.usb.accessory.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-qti.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/android.software.webview.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.wapi.wapicertstore.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/android.software.verified_boot.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/qcnvitems.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/GoogleExtServices_permissions.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.oem.feature.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.nxp.nfc.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.oem.features_secrecy.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/vendor.qti.data.factory-V2.0-java.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.qualcomm.qti.imscmservice.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.oem.feature_xmotor.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/android.test.mock.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.qualcomm.location.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/vendor-oneplus-engnative-engineer.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-com.qualcomm.location.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/audiosphere.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/javax.obex.xml
02-12 12:13:21.632 766 767 I Magisk : bind_mount: /system/etc/permissions/com.qrd.wappush.xml
02-12 12:13:21.638 766 775 I Magisk : * Starting MagiskHide
02-12 12:13:21.638 766 775 I Magisk : hide_policy: Hiding sensitive props
02-12 12:13:21.638 766 775 I Magisk : hide_list init: [com.TWCableTV/.Spectrum]
02-12 12:13:21.646 766 775 I Magisk : hide_list init: [com.google.android.gms/com.google.android.gms.unstable]
02-12 12:13:21.648 766 775 I Magisk : hide_list init: [org.microg.gms.droidguard/com.google.android.gms.unstable]
01-02 06:27:14.534 766 1357 I Magisk : ** late_start service mode running
01-02 06:27:14.534 766 1357 I Magisk : * Running service.d scripts
01-02 06:27:14.534 766 1357 I Magisk : * Running module service scripts
--------- beginning of crash
01-02 06:27:27.543 766 3442 I Magisk : ** boot_complete triggered

When creating only a .replace for /system/product/app/Maps this is the log, but Maps is still using the original version:
Both directories when viewed with FX file explorer still show the original Maps.apk
Code:
--------- beginning of main
--------- beginning of system
02-12 12:18:51.263 768 768 I Magisk : Magisk v20.3-15bd2da8(20201) daemon started
02-12 12:18:51.263 768 768 I Magisk : * Device API level: 29
02-12 12:18:51.289 768 769 I Magisk : ** post-fs-data mode running
02-12 12:18:51.291 768 769 I Magisk : * Initializing Magisk environment
02-12 12:18:51.295 768 769 I Magisk : * Mounting mirrors
02-12 12:18:51.295 768 769 I Magisk : mount: /sbin/.magisk/mirror/product
02-12 12:18:51.295 768 769 I Magisk : mount: /sbin/.magisk/mirror/vendor
02-12 12:18:51.295 768 769 I Magisk : mount: /sbin/.magisk/mirror/data
02-12 12:18:51.295 768 769 I Magisk : link: /sbin/.magisk/mirror/system
02-12 12:18:51.296 768 769 I Magisk : * Setting up internal busybox
02-12 12:18:51.307 768 769 I Magisk : * Running post-fs-data.d scripts
02-12 12:18:51.312 768 769 I Magisk : * Running module post-fs-data scripts
02-12 12:18:51.312 768 769 I Magisk : iYTBP-Vanced-black-Magisk-Repo: exec [post-fs-data.sh]
02-12 12:18:51.317 768 769 I Magisk : * Loading modules
02-12 12:18:51.318 768 769 I Magisk : iYTBP-Vanced-black-Magisk-Repo: constructing magic mount structure
02-12 12:18:51.318 768 769 I Magisk : DowngradeMaps: constructing magic mount structure
02-12 12:18:51.319 768 769 I Magisk : GoogleDialerFramework: constructing magic mount structure
02-12 12:18:51.323 768 769 I Magisk : bind_mount: /product/app/Maps
02-12 12:18:51.323 768 769 I Magisk : mnt_tmpfs : /system/app
02-12 12:18:51.323 768 769 I Magisk : bind_mount: /system/app/YouTube
02-12 12:18:51.323 768 769 I Magisk : bind_mount: /system/app/HTMLViewer
02-12 12:18:51.323 768 769 I Magisk : bind_mount: /system/app/OPBugReportLite
02-12 12:18:51.323 768 769 I Magisk : bind_mount: /system/app/OsuLogin
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/Netflix_Stub
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/BackupRestoreRemoteService
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/DeskClock
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/BookmarkProvider
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/SoterService
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/PlayAutoInstallConfig
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/NxpSecureElement
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/LiveWallpapersPicker
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/PlatformCaptivePortalLogin
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPCommonLogTool
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/SimAppDialog
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/EngineeringMode
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/Traceur
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/Netflix_Activation
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/PhotosOnline
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/KeyChain
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPSesAuthentication
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPSoundTuner
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/BasicDreams
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPScreenRecord
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/WifiRfTestApk
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/oem_tcma
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPPush
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/Stk
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/CarrierDefaultApp
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/WapiCertManage
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPFilemanager
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/Rftoolkit
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPGamingSpace
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/QColor
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPLongshot
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPLiveWallpaper
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPTelephonyDiagnoseManager
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/SmscPlugger
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/AntHalService
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPBreathMode
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/NxpNfcNci
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPMmsLocationFramework
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/NFCTestMode
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/CtsShimPrebuilt
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/EngSpecialTest
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/GoogleExtShared
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OemAutoTestServer
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/LogKitSdService
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/PrintSpooler
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPOnlineConfig
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/BluetoothExt
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/CompanionDeviceManager
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/PartnerBookmarksProvider
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/SensorTestTool
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/BluetoothMidiService
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/OPWallpaperResources
02-12 12:18:51.324 768 769 I Magisk : bind_mount: /system/app/Backup
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/NVBackupUI
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/OPBackup
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/EasterEgg_O2
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/ARCore_stub
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/PacProcessor
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/Calculator
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/OPSafe
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/WAPPushManager
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/WallpaperBackup
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/OEMLogKit
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/SdCardService
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/OPIntelliService
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/GooglePrintRecommendationService
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/BuiltInPrintService
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/OPAppUpgrader
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/Bluetooth
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/CertInstaller
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/app/BTtestmode
02-12 12:18:51.325 768 769 I Magisk : mnt_tmpfs : /system/framework
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/com.google.android.dialer.support.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/android.hardware.light-V2.0-java.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/framework.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/locksettings.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/WfdCommon.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/boot-ims-common.vdex
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/arm
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/am.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/services.jar.prof
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/hid.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/QPerformance.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/boot-QPerformance.vdex
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/dpm.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/telephony-common.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/boot-android.test.base.vdex
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/oneplus_sdk_wrapper.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/bmgr.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/vr.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/oneplus-services.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/com.qti.snapdragon.sdk.display.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/wigig-service.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/qmapbridge.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/wapicertstore.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/boot-framework.vdex
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/vendor.oneplus.hardware.motorcontrol-V1.0-java.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/com.nxp.nfc.jar
02-12 12:18:51.325 768 769 I Magisk : bind_mount: /system/framework/boot-ext.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-qcnvitems.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-core-libart.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/VendorPropExt.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/svc.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/arm64
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/voip-common.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/vendor.oneplus.fingerprint.extension-V1.0-java.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/vendor.oneplus.camera.CameraHIDL-V1.0-java.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/content.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/com.android.location.provider.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/monkey.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/wifi-service.jar.prof
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/android.test.mock.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/com.qrd.wappush.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-okhttp.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/com.qti.location.sdk.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/telephony-ext.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/tcmiface.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/ethernet-service.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/framework-res.apk
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/ims-common.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-voip-common.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-oneplus_sdk_wrapper.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/com.android.nfc_extras.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/sm.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/com.android.future.usb.accessory.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/wifi-service.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/audiosphere.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/oneplus_sdk_utils.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/tcmclient.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-bouncycastle.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/qcom.fmradio.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/android.hidl.manager-V1.0-java.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/input.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/javax.obex.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/requestsync.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/ConnectivityExt.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/android.test.runner.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/oneplus-framework.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-telephony-common.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/boot-WfdCommon.vdex
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/android.hidl.base-V1.0-java.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/UxPerformance.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/vendor.oneplus.hardware.param-V1.0-java.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/appwidget.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/izat.xt.srv.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/qcnvitems.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/bu.jar
02-12 12:18:51.326 768 769 I Magisk : bind_mount: /system/framework/oneplus-coreservices.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/services.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/boot-UxPerformance.vdex
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/boot-telephony-ext.vdex
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/boot-oneplus-framework.vdex
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/com.android.mediadrm.signer.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/com.android.media.remotedisplay.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/boot-tcmiface.vdex
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/oem-services.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/boot-apache-xml.vdex
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/ext.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/android.test.base.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/org.apache.http.legacy.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/org.apache.http.legacy.jar.prof
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/media.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/uiautomator.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/ActivityExt.jar
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/boot-oneplus_sdk_utils.vdex
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/oat
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/framework/telecom.jar
02-12 12:18:51.327 768 769 I Magisk : mnt_tmpfs : /system/etc/sysconfig
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/google_exclusives_enable.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/dialer_experience.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/power_profile_com.oneplus.mms.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/power_profile_com.recognize.number.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/hiddenapi-package-whitelist.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/qti_whitelist.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/power_profile_com.oneplus.optvassistant.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/framework-sysconfig.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/sysconfig/oem_whitelist.xml
02-12 12:18:51.327 768 769 I Magisk : mnt_tmpfs : /system/etc/permissions
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.google.android.dialer.support.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.android.media.remotedisplay.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/qti_permissions.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/org.apache.http.legacy.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/android.software.live_wallpaper.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-google-system.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.qti.snapdragon.sdk.display.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.qti.location.sdk.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.oneplus.software.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/GooglePermissionController_permissions.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.oneplus.software.overseas.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/com.android.location.provider.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/android.test.base.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/qti_libpermissions.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/android.test.runner.xml
02-12 12:18:51.327 768 769 I Magisk : bind_mount: /system/etc/permissions/oneplus_sdk_wrapper.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-oem-system.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/platform.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/GoogleDocumentsUI_permissions.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/oneplus_sdk_utils.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-platform.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.android.nfc_extras.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/izat.xt.srv.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.android.mediadrm.signer.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.android.future.usb.accessory.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-qti.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/android.software.webview.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.wapi.wapicertstore.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/android.software.verified_boot.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/qcnvitems.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/GoogleExtServices_permissions.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.oem.feature.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.nxp.nfc.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.oem.features_secrecy.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/vendor.qti.data.factory-V2.0-java.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.qualcomm.qti.imscmservice.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.oem.feature_xmotor.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/android.test.mock.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.qualcomm.location.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/vendor-oneplus-engnative-engineer.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-com.qualcomm.location.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/audiosphere.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/javax.obex.xml
02-12 12:18:51.328 768 769 I Magisk : bind_mount: /system/etc/permissions/com.qrd.wappush.xml
02-12 12:18:51.336 768 777 I Magisk : * Starting MagiskHide
02-12 12:18:51.336 768 777 I Magisk : hide_policy: Hiding sensitive props
02-12 12:18:51.336 768 777 I Magisk : hide_list init: [com.TWCableTV/.Spectrum]
02-12 12:18:51.344 768 777 I Magisk : hide_list init: [com.google.android.gms/com.google.android.gms.unstable]
02-12 12:18:51.346 768 777 I Magisk : hide_list init: [org.microg.gms.droidguard/com.google.android.gms.unstable]
01-02 06:32:44.574 768 1365 I Magisk : ** late_start service mode running
01-02 06:32:44.574 768 1365 I Magisk : * Running service.d scripts
01-02 06:32:44.575 768 1365 I Magisk : * Running module service scripts
--------- beginning of crash
01-02 06:32:57.626 768 3445 I Magisk : ** boot_complete triggered
01-02 06:33:13.610 768 777 I Magisk : proc_monitor: [com.google.android.gms.unstable] PID=[8075] UID=[10202]

Just to simplify things and make troubleshooting easier, could you post a new log with your other modules disabled?
And, what does the module look like now? In the module directory you should only have module.prop and the /system/product/apo/Maps/ directory structure with the .replace file, nothing else. I'm asking because you seem to imply (and the log suggests it as well) that you've also created a /product/app/Maps directory. That would break things since Magisk expects to create that symlink itself... You can find more, very useful, info about how a module is built here:
https://topjohnwu.github.io/Magisk/guides.html

Didgeridoohan said:
Just to simplify things and make troubleshooting easier, could you post a new log with your other modules disabled?
And, what does the module look like now? In the module directory you should only have module.prop and the /system/product/apo/Maps/ directory structure with the .replace file, nothing else. I'm asking because you seem to imply (and the log suggests it as well) that you've also created a /product/app/Maps directory. That would break things since Magisk expects to create that symlink itself... You can find more, very useful, info about how a module is built here:
https://topjohnwu.github.io/Magisk/guides.html
Click to expand...
Click to collapse
Currently there is now only the .replace file and the module.prop
Code:
--------- beginning of main
--------- beginning of system
02-12 12:42:18.361 768 768 I Magisk : Magisk v20.3-15bd2da8(20201) daemon started
02-12 12:42:18.361 768 768 I Magisk : * Device API level: 29
02-12 12:42:18.388 768 769 I Magisk : ** post-fs-data mode running
02-12 12:42:18.390 768 769 I Magisk : * Initializing Magisk environment
02-12 12:42:18.394 768 769 I Magisk : * Mounting mirrors
02-12 12:42:18.394 768 769 I Magisk : mount: /sbin/.magisk/mirror/product
02-12 12:42:18.394 768 769 I Magisk : mount: /sbin/.magisk/mirror/vendor
02-12 12:42:18.394 768 769 I Magisk : mount: /sbin/.magisk/mirror/data
02-12 12:42:18.394 768 769 I Magisk : link: /sbin/.magisk/mirror/system
02-12 12:42:18.394 768 769 I Magisk : * Setting up internal busybox
02-12 12:42:18.405 768 769 I Magisk : * Running post-fs-data.d scripts
02-12 12:42:18.411 768 769 I Magisk : * Running module post-fs-data scripts
02-12 12:42:18.411 768 769 I Magisk : * Loading modules
02-12 12:42:18.411 768 769 I Magisk : DowngradeMaps: constructing magic mount structure
02-12 12:42:18.412 768 769 I Magisk : bind_mount: /product/app/Maps
02-12 12:42:18.416 768 776 I Magisk : * Starting MagiskHide
02-12 12:42:18.416 768 776 I Magisk : hide_policy: Hiding sensitive props
02-12 12:42:18.417 768 776 I Magisk : hide_list init: [com.TWCableTV/.Spectrum]
02-12 12:42:18.425 768 776 I Magisk : hide_list init: [com.google.android.gms/com.google.android.gms.unstable]
02-12 12:42:18.427 768 776 I Magisk : hide_list init: [org.microg.gms.droidguard/com.google.android.gms.unstable]
01-02 06:56:11.385 768 1289 I Magisk : ** late_start service mode running
01-02 06:56:11.385 768 1289 I Magisk : * Running service.d scripts
01-02 06:56:11.386 768 1289 I Magisk : * Running module service scripts
--------- beginning of crash
01-02 06:56:24.448 768 3476 I Magisk : ** boot_complete triggered
01-02 06:56:40.825 768 776 I Magisk : proc_monitor: [com.google.android.gms.unstable] PID=[6823] UID=[10202]

Ok, that looks good. But, I'm expecting that the real directories (not in the module directory), /product/app/Maps and /system/product/app/Maps does not contain the .replace file then, or?

Didgeridoohan said:
Ok, that looks good. But, I'm expecting that the real directories (not in the module directory), /product/app/Maps and /system/product/app/Maps does not contain the .replace file then, or?
Click to expand...
Click to collapse
Nope, product/app/Maps contains only Maps.apk and system/product/app/Maps contains Maps.apk and nothing else

Hello everybody
I have the same problem. I use a self-made magisk module to debloat my Rom (OOS 10.3.0 - OnePlus 6t). The apps from /system/app and /system/
priv-app work, but unfortunately not in /system/product. I tested the whole thing with magisk 20.1 and 20.2 and came to the same result. Seems like it's a bug. Here is a screenshot (Solid Explorer - left /data/adb/modules/ - right /system/Producer/priv-app)

It does seem like a bug... I've brought the issue up with @topjohnwu, so let's see what he has to say.

thanks for looking into this!

Apparently it might be OnePlus messing things up. OxygenOS is mounting /data/india/india.img over /system/product, which makes it impossible for us to do our thing with Magisk.
The solution is to remove the img file, but I have absolutely no idea what it's for (you'd have to do the homework for that). Just to be safe you could just rename it to india.bak and if something breaks rename it back to .img.

+1
same problem on OP7T (HD1900) with xXX Magisk module and my own Magisk debloat module...
debloating of system/app and system/priv-app is working as expected - but debloating under product/app is weird (no replacing files with 0KB in it - files explorers showing only empty folders) and under product/priv-app nothing is debloated...
edit: found no india.img under data/india...

Related

Can't pass SafetyNet no matter what I tried

Morning all,
I'm not sure if it's okay to create a thread here about this same old issue. but I'm desperate
My specs:
- Xperia XZ F8332 latest fw 41.2.A.7.35
- Unlocked BL
- Repack kernel boot.img using @tobias.waldvogel tool but the modified version from @serajr here which includes force-encrypt and ta_poc from @munjeni (no idea why his account was disabled though). So I got:
+ dm-verity disabled
+ force-encrypt disabled
+ Sony RIC disabled
+ TA features fully working (I got my TA backed up long before)
- No SuperSU / Superuser remnants (I did use SuperSU but after upgrading to the latest fw I decided to switch to MagiskSU)
- Magisk and Magisk Manager latest version
- MagiskSU working
- MagiskHide working (tested with Root Checker)
- Freedom v.1.7.7 installed (not sure if it's relevant but just fyi)
What I did try:
- Reflash Magisk
- Magisk Core Only mode
- Remove all magisk props
- Disable USB Debugging (also Turn off Developer options)
- Some Magisk module such as Universal SafetyNet Fix, SafetyNet Passer,...
... basically all tricks ever posted (I hope)
Magisk log:
Code:
--------- beginning of main
I( 2602: 2602) Magisk v13.3(1330) daemon started
I( 2602: 2604) ** post-fs mode running
--------- beginning of system
I( 2602: 2629) ** post-fs-data mode running
I( 2602: 2629) * Mounting /data/magisk.img
I( 2602: 2629) * Running post-fs-data.d scripts
I( 2602: 2629) * Loading modules
I( 2602: 2629) Greenify4Magisk: constructing magic mount structure
I( 2602: 2629) SoundEnhancement_Unlocker: constructing magic mount structure
I( 2602: 2629) * Mounting system/vendor mirrors
I( 2602: 2629) mount: /dev/block/bootdevice/by-name/system -> /dev/magisk/mirror/system
I( 2602: 2629) link: /dev/magisk/mirror/system/vendor -> /dev/magisk/mirror/vendor
I( 2602: 2629) bind_mount: /system/priv-app
I( 2602: 2629) bind_mount: /system/priv-app/Greenify
I( 2602: 2629) bind_mount: /system/priv-app/ApnUpdater
I( 2602: 2629) bind_mount: /system/priv-app/ArtFilterCamera-legacy-xxhdpi-release
I( 2602: 2629) bind_mount: /system/priv-app/BackupRestoreConfirmation
I( 2602: 2629) bind_mount: /system/priv-app/BlockedNumberProvider
I( 2602: 2629) bind_mount: /system/priv-app/CNEService
I( 2602: 2629) bind_mount: /system/priv-app/CalendarProvider
I( 2602: 2629) bind_mount: /system/priv-app/CallLogBackup
I( 2602: 2629) bind_mount: /system/priv-app/CameraCommon
I( 2602: 2629) bind_mount: /system/priv-app/CameraPanorama-release
I( 2602: 2629) bind_mount: /system/priv-app/CameraWearableBridgeHandheldServer
I( 2602: 2629) bind_mount: /system/priv-app/CarrierConfig
I( 2602: 2629) bind_mount: /system/priv-app/ConfigUpdater
I( 2602: 2629) bind_mount: /system/priv-app/Contacts
I( 2602: 2629) bind_mount: /system/priv-app/ContactsSettingsUtil
I( 2602: 2629) bind_mount: /system/priv-app/Conversations
I( 2602: 2629) bind_mount: /system/priv-app/CoverApp2
I( 2602: 2629) bind_mount: /system/priv-app/CredentialManagerService
I( 2602: 2629) bind_mount: /system/priv-app/CtsShimPrivPrebuilt
I( 2602: 2629) bind_mount: /system/priv-app/CustomizationSelector
I( 2602: 2629) bind_mount: /system/priv-app/CustomizedSettings
I( 2602: 2629) bind_mount: /system/priv-app/DefaultContainerService
I( 2602: 2629) bind_mount: /system/priv-app/DeviceSecurityService
I( 2602: 2629) bind_mount: /system/priv-app/Dialer
I( 2602: 2629) bind_mount: /system/priv-app/DocumentsUI
I( 2602: 2629) bind_mount: /system/priv-app/DownloadProvider
I( 2602: 2629) bind_mount: /system/priv-app/EmergencyInfo
I( 2602: 2629) bind_mount: /system/priv-app/EmergencySms
I( 2602: 2629) bind_mount: /system/priv-app/EnterpriseService
I( 2602: 2629) bind_mount: /system/priv-app/ExternalStorageProvider
I( 2602: 2629) bind_mount: /system/priv-app/FusedLocation
I( 2602: 2629) bind_mount: /system/priv-app/GetMore-standard-release
I( 2602: 2629) bind_mount: /system/priv-app/GmsCore
I( 2602: 2629) bind_mount: /system/priv-app/GoogleBackupTransport
I( 2602: 2629) bind_mount: /system/priv-app/GoogleExtServices
I( 2602: 2629) bind_mount: /system/priv-app/GoogleFeedback
I( 2602: 2629) bind_mount: /system/priv-app/GoogleLoginService
I( 2602: 2629) bind_mount: /system/priv-app/GoogleOneTimeInitializer
I( 2602: 2629) bind_mount: /system/priv-app/GooglePackageInstaller
I( 2602: 2629) bind_mount: /system/priv-app/GooglePartnerSetup
I( 2602: 2629) bind_mount: /system/priv-app/GoogleServicesFramework
I( 2602: 2629) bind_mount: /system/priv-app/InputDevices
I( 2602: 2629) bind_mount: /system/priv-app/IntelligentBacklight
I( 2602: 2629) bind_mount: /system/priv-app/IntelligentGesture
I( 2602: 2629) bind_mount: /system/priv-app/ManagedProvisioning
I( 2602: 2629) bind_mount: /system/priv-app/MediaProvider
I( 2602: 2629) bind_mount: /system/priv-app/MmsService
I( 2602: 2629) bind_mount: /system/priv-app/MtpDocumentsProvider
I( 2602: 2629) bind_mount: /system/priv-app/MusicFX
I( 2602: 2629) bind_mount: /system/priv-app/MyXperia-release
I( 2602: 2629) bind_mount: /system/priv-app/OMAClientProvisioning
I( 2602: 2629) bind_mount: /system/priv-app/Phonesky
I( 2602: 2629) bind_mount: /system/priv-app/ProxyHandler
I( 2602: 2629) bind_mount: /system/priv-app/QtiTetherService
I( 2602: 2629) bind_mount: /system/priv-app/RcsVideoShare
I( 2602: 2629) bind_mount: /system/priv-app/RemoteUnlockService
I( 2602: 2629) bind_mount: /system/priv-app/SEMCSetupWizard
I( 2602: 2629) bind_mount: /system/priv-app/SemcCameraUI-legacy-jniLibs64-xxhdpi-release
I( 2602: 2629) bind_mount: /system/priv-app/SemcClock-release
I( 2602: 2629) bind_mount: /system/priv-app/SemcCnapProvider
I( 2602: 2629) bind_mount: /system/priv-app/SemcContactsProvider
I( 2602: 2629) bind_mount: /system/priv-app/SemcMusic
I( 2602: 2629) bind_mount: /system/priv-app/SemcPhotoEditor-No-RenderScript-photoeditor-release
I( 2602: 2629) bind_mount: /system/priv-app/SemcStorageChecker
I( 2602: 2629) bind_mount: /system/priv-app/SemcTelephonyProvider
I( 2602: 2629) bind_mount: /system/priv-app/Settings
I( 2602: 2629) bind_mount: /system/priv-app/SettingsProvider
I( 2602: 2629) bind_mount: /system/priv-app/SetupWizard
I( 2602: 2629) bind_mount: /system/priv-app/SharedStorageBackup
I( 2602: 2629) bind_mount: /system/priv-app/Shell
I( 2602: 2629) bind_mount: /system/priv-app/SimlockUnlockApp
I( 2602: 2629) bind_mount: /system/priv-app/SmartCharger
I( 2602: 2629) bind_mount: /system/priv-app/SmartCleaner
I( 2602: 2629) bind_mount: /system/priv-app/SocialphonebookStub
I( 2602: 2629) bind_mount: /system/priv-app/SomcChargingSupport
I( 2602: 2629) bind_mount: /system/priv-app/SomcExtTelephony
I( 2602: 2629) bind_mount: /system/priv-app/SomcGloveMode
I( 2602: 2629) bind_mount: /system/priv-app/SomcMovieCreator-Tsv-release
I( 2602: 2629) bind_mount: /system/priv-app/SomcWifiDisplay
I( 2602: 2629) bind_mount: /system/priv-app/SomcWifiService
I( 2602: 2629) bind_mount: /system/priv-app/SoundPhotoCamera-legacy-xxhdpi-release
I( 2602: 2629) bind_mount: /system/priv-app/StartupFlagV2
I( 2602: 2629) bind_mount: /system/priv-app/StatementService
I( 2602: 2629) bind_mount: /system/priv-app/StorageManager
I( 2602: 2629) bind_mount: /system/priv-app/StylePortrait
I( 2602: 2629) bind_mount: /system/priv-app/SuperStamina
I( 2602: 2629) bind_mount: /system/priv-app/SuperVideoCamera-legacy-xxhdpi-release
I( 2602: 2629) bind_mount: /system/priv-app/SystemUI
I( 2602: 2629) bind_mount: /system/priv-app/Tag
I( 2602: 2629) bind_mount: /system/priv-app/TeleService
I( 2602: 2629) bind_mount: /system/priv-app/Telecom
I( 2602: 2629) bind_mount: /system/priv-app/TimeShiftCamera-legacy-xxhdpi-release
I( 2602: 2629) bind_mount: /system/priv-app/USMHome
I( 2602: 2629) bind_mount: /system/priv-app/UpdateCenter-release
I( 2602: 2629) bind_mount: /system/priv-app/Velvet
I( 2602: 2629) bind_mount: /system/priv-app/VpnDialogs
I( 2602: 2629) bind_mount: /system/priv-app/WallpaperCropper
I( 2602: 2629) bind_mount: /system/priv-app/WapPush-release
I( 2602: 2629) bind_mount: /system/priv-app/album-albumLive-release
I( 2602: 2629) bind_mount: /system/priv-app/com.facebook.system
I( 2602: 2629) bind_mount: /system/priv-app/com.qualcomm.location
I( 2602: 2629) bind_mount: /system/priv-app/com.sonymobile.retaildemo
I( 2602: 2629) bind_mount: /system/priv-app/dpmserviceapp
I( 2602: 2629) bind_mount: /system/priv-app/enhancedusbux
I( 2602: 2629) bind_mount: /system/priv-app/home-sonyEricsson-release
I( 2602: 2629) bind_mount: /system/priv-app/qcrilmsgtunnel
I( 2602: 2629) bind_mount: /system/priv-app/rcs-core
I( 2602: 2629) bind_mount: /system/priv-app/rcs-settings
I( 2602: 2629) bind_mount: /system/priv-app/somc-get-to-know-it-release
I( 2602: 2629) bind_mount: /system/priv-app/sonyentrance2-release
I( 2602: 2629) bind_mount: /system/priv-app/sound-picker-release
I( 2602: 2629) bind_mount: /system/priv-app/textinput-chn-xxhdpi-release
I( 2602: 2629) bind_mount: /system/priv-app/usb-mtp-backup-transport
I( 2602: 2629) bind_mount: /system/priv-app/usb-mtp-factoryreset-wrapper
I( 2602: 2629) bind_mount: /system/priv-app/usb-mtp-fotaupdate-wrapper
I( 2602: 2629) bind_mount: /system/priv-app/usb-mtp-update-wrapper
I( 2602: 2629) bind_mount: /system/priv-app/usb-mtp-vendor-extension-service
I( 2602: 2629) bind_mount: /vendor/overlay
I( 2602: 2629) bind_mount: /vendor/overlay/SoundEnhancement-Overlay-305-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/Album-Overlay-275-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/CellBroadcastReceiver-Overlay-285-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/ConversationsRuntimeOverlay
I( 2602: 2629) bind_mount: /vendor/overlay/EmailRuntimeOverlay
I( 2602: 2629) bind_mount: /vendor/overlay/Home-Overlay-275-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/OrganizerRuntimeOverlay
I( 2602: 2629) bind_mount: /vendor/overlay/ServiceMenu-Overlay-270-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/ServiceMenu-Overlay-275-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/Stk-Overlay-285-common-dsds-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/SuperVideoCamera-Overlay-275-release.apk
I( 2602: 2629) bind_mount: /vendor/overlay/SwiftKey-Overlay-270-release.apk
I( 2602: 2629) * Running module post-fs-data scripts
I( 2602: 2641) * Starting MagiskHide
I( 2602: 2641) hide_utils: Hiding sensitive props
I( 2602: 2641) hide_list: [com.google.android.gms.unstable]
I( 2602: 2641) proc_monitor: init ns=mnt:[4026531840]
I( 2602: 3069) ** late_start service mode running
I( 2602: 3069) * Running service.d scripts
I( 2602: 3069) * Running module service scripts
I( 2602: 2641) proc_monitor: zygote ns=mnt:[4026534269] zygote64 ns=mnt:[4026534270]
I( 2602: 2641) proc_monitor: com.google.android.gms.unstable (PID=6938 ns=mnt:[4026534410])
I( 6945: 6945) hide_utils: Re-linking /sbin
I( 2602: 2641) proc_monitor: com.google.android.gms.unstable (PID=8983 ns=mnt:[4026534312])
I( 2602: 2641) proc_monitor: com.google.android.gms.unstable (PID=10103 ns=mnt:[4026534374])
I( 2602: 2641) proc_monitor: com.google.android.gms.unstable (PID=11524 ns=mnt:[4026534377])
Still no luck so far
Any help would be highly appreciated.
That's a tricky one... You seem to have all the check boxes ticked. A couple of things that come to mind straight away (no guarantees for success):
You don't have the SuperSU app intalled still? Are you absolutely sure you removed all remnants of SuperSU (how did you unroot)?
Have you tried a different kernel? Maybe Magisk can't hide your unlocked bootloader and you need to find a kernel that does this (I have no idea if the one you use have this feature).
Same thing goes for SELinux. Do you have it set to permissive? Maybe there's an issue with Magisk hiding the permissive state...
Since you seemed to have tried most things, have you tried wiping your device and starting over completely clean (a pain in the bee-hind, I know)?
boydzethuong said:
...
- Repack kernel boot.img using tobias.waldvogel tool but the modified version from serajr...
Click to expand...
Click to collapse
Read this
Didgeridoohan said:
That's a tricky one... You seem to have all the check boxes ticked. A couple of things that come to mind straight away (no guarantees for success):
You don't have the SuperSU app intalled still? Are you absolutely sure you removed all remnants of SuperSU (how did you unroot)?
Have you tried a different kernel? Maybe Magisk can't hide your unlocked bootloader and you need to find a kernel that does this (I have no idea if the one you use have this feature).
Same thing goes for SELinux. Do you have it set to permissive? Maybe there's an issue with Magisk hiding the permissive state...
Since you seemed to have tried most things, have you tried wiping your device and starting over completely clean (a pain in the bee-hind, I know)?
Click to expand...
Click to collapse
serajr said:
Read this
Click to expand...
Click to collapse
@Didgeridoohan thank you for reading and listing some more things I havent actually tried. But I think I dont need to try anymore as @serajr said it's the ta_poc. Unexpectedly. Haha. I should have gone to the Magisk General Support / Discussion thread to have a look first but.... 1692 pages.... and I didnt know what keyword I should use to search... so thank you @serajr for finding it out, you saved me hours.
I guess I will wait for updates from @munjeni see if he has any updates for the ta_poc (to fix the problem), or updates from Magisk to support ta_poc kernel, or just a module, maybe...

Vendor partition change files

I'm looking for a solution to change files in the vendor parition. Is this possible through a magisk module?
I've tried with the attached zip, but that didn't work, in fact it changed nothing.
Installation log:
- Copying zip to temp directory
- Installing enable_volte_pixel_xl_2.zip
- A/B partition detected, current slot: _b
- Mounting /system, /vendor
- Device skip_initramfs detected
Archive: /data/user/0/com.topjohnwu.magisk/cache/install.zip
inflating: config.sh
inflating: module.prop
creating: common/
inflating: common/post-fs-data.sh
inflating: common/service.sh
inflating: common/system.prop
*******************************
Installing Pixel XL 2 mcfg_sw VoLTE Enabler
*******************************
******************************
Powered by Magisk (@topjohnwu)
******************************
- Creating /data/adb/magisk_merge.img with size 64M
mke2fs 1.43.3 (04-Sep-2016)
Creating regular file /data/adb/magisk_merge.img
Creating filesystem with 16384 4k blocks and 16384 inodes
Allocating group tables: 0/1 done
Writing inode tables: 0/1 done
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: 0/1 done
- Mounting /data/adb/magisk_merge.img to /dev/tmp/magisk_img
- Extracting module files
Archive: /data/user/0/com.topjohnwu.magisk/cache/install.zip
creating: system/
inflating: system/mcfg_sw.mbn
- Setting permissions
- Done
- All done!
Well... Looking at the attached zip, it's not strange nothing is mounted to /vendor. Your file is placed directly in /system...
You'll have to place it in /system/vendor (and whatever sub-directory of /vendor the file should be in), and Magisk will take care of mounting it to /vendor.
You'll find a little more info on how Magisk modules work here:
https://github.com/topjohnwu/Magisk/blob/master/docs/modules.md
View attachment enable_volte_pixel_xl_2.zip
Didgeridoohan said:
Well... Looking at the attached zip, it's not strange nothing is mounted to /vendor. Your file is placed directly in /system...
You'll have to place it in /system/vendor (and whatever sub-directory of /vendor the file should be in), and Magisk will take care of mounting it to /vendor.
You'll find a little more info on how Magisk modules work here:
https://github.com/topjohnwu/Magisk/blob/master/docs/modules.md
Click to expand...
Click to collapse
Thanks for the tip, the config looks now like this(attached file)
But unfortunately nothing happened.
Magisk log:
01-01 10:33:47.337 716 716 I Magisk : ** Initializing Magisk
01-01 10:33:47.497 716 716 I Magisk : * Creating /sbin overlay
01-01 10:33:47.500 716 716 I Magisk : * Mounting mirrors
01-01 10:33:47.500 716 716 I Magisk : bind_mount: /sbin/.core/mirror/system <- /system_root/system
01-01 10:33:47.500 716 716 I Magisk : mount: /sbin/.core/mirror/vendor <- /dev/block/dm-0
01-01 10:33:47.501 716 716 I Magisk : bind_mount: /sbin/.core/mirror/bin <- /data/adb/magisk
01-01 10:33:47.501 716 716 I Magisk : * Setting up internal busybox
01-01 10:33:47.562 719 719 I Magisk : Magisk v16.4(1642) daemon started
01-01 10:33:47.564 719 727 I Magisk : ** post-fs-data mode running
01-01 10:33:47.565 719 727 I Magisk : * Merging /data/adb/magisk_merge.img -> /data/adb/magisk.img
01-01 10:33:47.703 719 727 I Magisk : Upgrade module: PixelXlMcfgSwVoLteEnabler
01-01 10:33:47.845 719 727 I Magisk : * Mounting /data/adb/magisk.img
01-01 10:33:48.075 719 727 I Magisk : * Running post-fs-data.d scripts
01-01 10:33:48.075 719 727 I Magisk : * Running module post-fs-data scripts
01-01 10:33:48.075 719 727 I Magisk : * Loading modules
01-01 10:33:48.076 719 727 I Magisk : ViPER4AndroidFX: loading [system.prop]
01-01 10:33:48.087 719 727 I Magisk : ViPER4AndroidFX: constructing magic mount structure
01-01 10:33:48.093 719 727 I Magisk : PixelXlMcfgSwVoLteEnabler: constructing magic mount structure
01-01 10:33:48.104 719 727 I Magisk : mnt_tmpfs : /system
01-01 10:33:48.104 719 727 I Magisk : creat_link: /system/vendor <- /sbin/.core/mirror/system/vendor
01-01 10:33:48.105 719 727 I Magisk : bind_mount: /system/etc/audio_effects.conf <- /sbin/.core/img/ViPER4AndroidFX/system/etc/audio_effects.conf
01-01 10:33:48.105 719 727 I Magisk : mnt_tmpfs : /system/etc/permissions
01-01 10:33:48.105 719 727 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-com.pittvandewitt.viperfx.xml <- /sbin/.core/img/ViPER4AndroidFX/system/etc/permissions/privapp-permissions-com.pittvandewitt.viperfx.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.ims.rcsmanager.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.ims.rcsmanager.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.vzwomatrigger.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.vzwomatrigger.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.omadm.service.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.omadm.service.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/android.software.live_wallpaper.xml <- /sbin/.core/mirror/system/etc/permissions/android.software.live_wallpaper.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.mediadrm.signer.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.mediadrm.signer.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/android.software.webview.xml <- /sbin/.core/mirror/system/etc/permissions/android.software.webview.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-google.xml <- /sbin/.core/mirror/system/etc/permissions/privapp-permissions-google.xml
01-01 10:33:48.106 719 727 I Magisk : bind_mount: /system/etc/permissions/com.verizon.apn.xml <- /sbin/.core/mirror/system/etc/permissions/com.verizon.apn.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/com.verizon.embms.xml <- /sbin/.core/mirror/system/etc/permissions/com.verizon.embms.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/com.google.android.media.effects.xml <- /sbin/.core/mirror/system/etc/permissions/com.google.android.media.effects.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/com.google.android.camera.experimental2017.xml <- /sbin/.core/mirror/system/etc/permissions/com.google.android.camera.experimental2017.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/vzw_mvs_permissions.xml <- /sbin/.core/mirror/system/etc/permissions/vzw_mvs_permissions.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.sdm.plugins.sprintdm.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.sdm.plugins.sprintdm.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/platform.xml <- /sbin/.core/mirror/system/etc/permissions/platform.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-wahoo.xml <- /sbin/.core/mirror/system/etc/permissions/privapp-permissions-wahoo.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-platform.xml <- /sbin/.core/mirror/system/etc/permissions/privapp-permissions-platform.xml
01-01 10:33:48.107 719 727 I Magisk : bind_mount: /system/etc/permissions/com.google.android.maps.xml <- /sbin/.core/mirror/system/etc/permissions/com.google.android.maps.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/com.customermobile.preload.vzw.xml <- /sbin/.core/mirror/system/etc/permissions/com.customermobile.preload.vzw.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/android.hardware.telephony.euicc.xml <- /sbin/.core/mirror/system/etc/permissions/android.hardware.telephony.euicc.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/com.verizon.provider.xml <- /sbin/.core/mirror/system/etc/permissions/com.verizon.provider.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.location.provider.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.location.provider.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/com.google.vr.platform.xml <- /sbin/.core/mirror/system/etc/permissions/com.google.vr.platform.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/features-verizon.xml <- /sbin/.core/mirror/system/etc/permissions/features-verizon.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/privapp-permissions-aosp_wahoo.xml <- /sbin/.core/mirror/system/etc/permissions/privapp-permissions-aosp_wahoo.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/com.google.android.hardwareinfo.xml <- /sbin/.core/mirror/system/etc/permissions/com.google.android.hardwareinfo.xml
01-01 10:33:48.108 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.sdm.plugins.connmo.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.sdm.plugins.connmo.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/permissions/com.google.android.dialer.support.xml <- /sbin/.core/mirror/system/etc/permissions/com.google.android.dialer.support.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/permissions/com.android.media.remotedisplay.xml <- /sbin/.core/mirror/system/etc/permissions/com.android.media.remotedisplay.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/permissions/android.software.preview_sdk.xml <- /sbin/.core/mirror/system/etc/permissions/android.software.preview_sdk.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/permissions/obdm_permissions.xml <- /sbin/.core/mirror/system/etc/permissions/obdm_permissions.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/permissions/com.verizon.llkagent.xml <- /sbin/.core/mirror/system/etc/permissions/com.verizon.llkagent.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/permissions/com.verizon.services.xml <- /sbin/.core/mirror/system/etc/permissions/com.verizon.services.xml
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/media_profiles_V1_0.dtd <- /sbin/.core/mirror/system/etc/media_profiles_V1_0.dtd
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/treble_sepolicy_tests_27.0 <- /sbin/.core/mirror/system/etc/treble_sepolicy_tests_27.0
01-01 10:33:48.109 719 727 I Magisk : bind_mount: /system/etc/ppp <- /sbin/.core/mirror/system/etc/ppp
01-01 10:33:48.110 719 727 I Magisk : bind_mount: /system/etc/textclassifier <- /sbin/.core/mirror/system/etc/textclassifier
01-01 10:33:48.110 719 727 I Magisk : bind_mount: /system/etc/mke2fs.conf <- /sbin/.core/mirror/system/etc/mke2fs.conf
01-01 10:33:48.110 719 727 I Magisk : bind_mount: /system/etc/security <- /sbin/.core/mirror/system/etc/security
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/old-apns-conf.xml <- /sbin/.core/mirror/system/etc/old-apns-conf.xml
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/bpf <- /sbin/.core/mirror/system/etc/bpf
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/vintf <- /sbin/.core/mirror/system/etc/vintf
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/clatd.conf <- /sbin/.core/mirror/system/etc/clatd.conf
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/treble_sepolicy_tests_26.0 <- /sbin/.core/mirror/system/etc/treble_sepolicy_tests_26.0
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/init <- /sbin/.core/mirror/system/etc/init
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/prop.default <- /sbin/.core/mirror/system/etc/prop.default
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/llndk.libraries.P.txt <- /sbin/.core/mirror/system/etc/llndk.libraries.P.txt
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/selinux <- /sbin/.core/mirror/system/etc/selinux
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/public.libraries.txt <- /sbin/.core/mirror/system/etc/public.libraries.txt
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/fonts.xml <- /sbin/.core/mirror/system/etc/fonts.xml
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/sepolicy_tests <- /sbin/.core/mirror/system/etc/sepolicy_tests
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/ld.config.P.txt <- /sbin/.core/mirror/system/etc/ld.config.P.txt
01-01 10:33:48.111 719 727 I Magisk : bind_mount: /system/etc/update_engine <- /sbin/.core/mirror/system/etc/update_engine
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/fs_config_files <- /sbin/.core/mirror/system/etc/fs_config_files
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/hosts <- /sbin/.core/mirror/system/etc/hosts
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/mkshrc <- /sbin/.core/mirror/system/etc/mkshrc
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/fs_config_dirs <- /sbin/.core/mirror/system/etc/fs_config_dirs
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/NOTICE.xml.gz <- /sbin/.core/mirror/system/etc/NOTICE.xml.gz
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/preloaded-classes <- /sbin/.core/mirror/system/etc/preloaded-classes
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/ambient <- /sbin/.core/mirror/system/etc/ambient
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/vndksp.libraries.P.txt <- /sbin/.core/mirror/system/etc/vndksp.libraries.P.txt
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/preferred-apps <- /sbin/.core/mirror/system/etc/preferred-apps
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/libnfc-nci.conf <- /sbin/.core/mirror/system/etc/libnfc-nci.conf
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/dirty-image-objects <- /sbin/.core/mirror/system/etc/dirty-image-objects
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/event-log-tags <- /sbin/.core/mirror/system/etc/event-log-tags
01-01 10:33:48.112 719 727 I Magisk : bind_mount: /system/etc/cne <- /sbin/.core/mirror/system/etc/cne
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/firmware <- /sbin/.core/mirror/system/etc/firmware
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/bluetooth <- /sbin/.core/mirror/system/etc/bluetooth
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/sysconfig <- /sbin/.core/mirror/system/etc/sysconfig
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/xtables.lock <- /sbin/.core/mirror/system/etc/xtables.lock
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/seccomp_policy <- /sbin/.core/mirror/system/etc/seccomp_policy
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/boot-image.prof <- /sbin/.core/mirror/system/etc/boot-image.prof
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/apns-conf.xml <- /sbin/.core/mirror/system/etc/apns-conf.xml
01-01 10:33:48.113 719 727 I Magisk : bind_mount: /system/etc/gps_debug.conf <- /sbin/.core/mirror/system/etc/gps_debug.conf
01-01 10:33:48.114 719 727 I Magisk : mnt_tmpfs : /system/priv-app
01-01 10:33:48.114 719 727 I Magisk : bind_mount: /system/priv-app/ViPER4AndroidFX <- /sbin/.core/img/ViPER4AndroidFX/system/priv-app/ViPER4AndroidFX
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/Asdiv <- /sbin/.core/mirror/system/priv-app/Asdiv
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/StorageManagerGoogle <- /sbin/.core/mirror/system/priv-app/StorageManagerGoogle
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/SetupWizard <- /sbin/.core/mirror/system/priv-app/SetupWizard
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/VzwOmaTrigger <- /sbin/.core/mirror/system/priv-app/VzwOmaTrigger
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/SprintDM <- /sbin/.core/mirror/system/priv-app/SprintDM
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/Shell <- /sbin/.core/mirror/system/priv-app/Shell
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/TetheringEntitlement <- /sbin/.core/mirror/system/priv-app/TetheringEntitlement
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/CtsShimPrivPrebuilt <- /sbin/.core/mirror/system/priv-app/CtsShimPrivPrebuilt
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/MtpDocumentsProvider <- /sbin/.core/mirror/system/priv-app/MtpDocumentsProvider
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/Velvet <- /sbin/.core/mirror/system/priv-app/Velvet
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/TimeZoneUpdater <- /sbin/.core/mirror/system/priv-app/TimeZoneUpdater
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/ExternalStorageProvider <- /sbin/.core/mirror/system/priv-app/ExternalStorageProvider
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/MyVerizonServices <- /sbin/.core/mirror/system/priv-app/MyVerizonServices
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/WellbeingPrebuilt <- /sbin/.core/mirror/system/priv-app/WellbeingPrebuilt
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/MediaProvider <- /sbin/.core/mirror/system/priv-app/MediaProvider
01-01 10:33:48.115 719 727 I Magisk : bind_mount: /system/priv-app/HotwordEnrollmentXGoogleWCD9340 <- /sbin/.core/mirror/system/priv-app/HotwordEnrollmentXGoogleWCD9340
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/StatementService <- /sbin/.core/mirror/system/priv-app/StatementService
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/AppDirectedSMSService <- /sbin/.core/mirror/system/priv-app/AppDirectedSMSService
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/SettingsProvider <- /sbin/.core/mirror/system/priv-app/SettingsProvider
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/TurboPrebuilt <- /sbin/.core/mirror/system/priv-app/TurboPrebuilt
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/BlockedNumberProvider <- /sbin/.core/mirror/system/priv-app/BlockedNumberProvider
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/GmsCoreSetupPrebuilt <- /sbin/.core/mirror/system/priv-app/GmsCoreSetupPrebuilt
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/GoogleFeedback <- /sbin/.core/mirror/system/priv-app/GoogleFeedback
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/VerizonAuthDialog <- /sbin/.core/mirror/system/priv-app/VerizonAuthDialog
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/qcrilmsgtunnel <- /sbin/.core/mirror/system/priv-app/qcrilmsgtunnel
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/ConfigUpdater <- /sbin/.core/mirror/system/priv-app/ConfigUpdater
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/DiagMon <- /sbin/.core/mirror/system/priv-app/DiagMon
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/SharedStorageBackup <- /sbin/.core/mirror/system/priv-app/SharedStorageBackup
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/HelpRtcPrebuilt <- /sbin/.core/mirror/system/priv-app/HelpRtcPrebuilt
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/BackupRestoreConfirmation <- /sbin/.core/mirror/system/priv-app/BackupRestoreConfirmation
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/HotwordEnrollmentTGoogleWCD9340 <- /sbin/.core/mirror/system/priv-app/HotwordEnrollmentTGoogleWCD9340
01-01 10:33:48.116 719 727 I Magisk : bind_mount: /system/priv-app/OTAConfigPrebuilt <- /sbin/.core/mirror/system/priv-app/OTAConfigPrebuilt
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/GmsCoreSidecarPrebuilt <- /sbin/.core/mirror/system/priv-app/GmsCoreSidecarPrebuilt
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/DownloadProvider <- /sbin/.core/mirror/system/priv-app/DownloadProvider
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/MmsService <- /sbin/.core/mirror/system/priv-app/MmsService
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/ConnMO <- /sbin/.core/mirror/system/priv-app/ConnMO
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/Showcase <- /sbin/.core/mirror/system/priv-app/Showcase
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/Telecom <- /sbin/.core/mirror/system/priv-app/Telecom
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/GCS <- /sbin/.core/mirror/system/priv-app/GCS
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/WfcActivation <- /sbin/.core/mirror/system/priv-app/WfcActivation
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/ConnMetrics <- /sbin/.core/mirror/system/priv-app/ConnMetrics
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/SprintHM <- /sbin/.core/mirror/system/priv-app/SprintHM
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/EmergencyInfo <- /sbin/.core/mirror/system/priv-app/EmergencyInfo
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/MusicFX <- /sbin/.core/mirror/system/priv-app/MusicFX
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/WallpaperPickerGooglePrebuilt <- /sbin/.core/mirror/system/priv-app/WallpaperPickerGooglePrebuilt
01-01 10:33:48.117 719 727 I Magisk : bind_mount: /system/priv-app/AndroidMigratePrebuilt <- /sbin/.core/mirror/system/priv-app/
Ah... I just noticed what you're doing and why it's not working as you expect. I didn't see what you'd done to config.sh earlier...
In the system directory in the module you need to mirror the directory structure to the file you're trying to replace. So:
Code:
<MODULE>/system/vendor/mbn/mcfg/configs/mcfg_sw/generic/common/WildCard/WildCard/mcfg_sw.mbn
<MODULE>/system/vendor/mbn/mcfg/configs/mcfg_sw/generic/common/PixelLite/Commercial/mcfg_sw.mbn
The REPLACE part in config.sh is only used to replace a directory in /system or /vendor with an empty directory. Useful for debloating system apps or clearing out the directory for any other files than the ones you mount with the module.
What you're basically doing with your module is that you mount your file directly to the root of /system, and then you also create two empty folders named "mcfg_sw.mbn" in the directory structures you've put in config.sh.
Remove the stuff from REPLACE in config.sh and create the proper directory structures in the module system folder and you should be good to go.
Here's the relevant part is the documentation that's mentioned in config.sh for the REPLACE part:
https://github.com/topjohnwu/Magisk/blob/master/docs/tips.md#remove-folders
Edit: oh yeah... If you're gonna post a log output directly in the post like that, at least use hide tags, please. Better yet, attach the file to the post.
Okey, so the only thing I now did is:
-Place the folder structure in the system folder
-Remove the replace code in the script
Do I need to delete the existing files in the vendor partition or does the module overwrite the existing files?
devsx said:
Okey, so the only thing I now did is:
-Place the folder structure in the system folder
-Remove the replace code in the script
Do I need to delete the existing files in the vendor partition or does the module overwrite the existing files?
Click to expand...
Click to collapse
Don't delete anything. Magisk will mount new files over any already existing files.
Ok, but it seems not working with the way you described.
devsx said:
Ok, but it seems not working with the way you described.
Click to expand...
Click to collapse
Nope... Still not right.
You're putting another system folder inside the module's system folder. That won't do...
You should have the vendor folder (with all relevant sub-folders) directly in the module's system folder.
Didgeridoohan said:
Nope... Still not right.
You're putting another system folder inside the module's system folder. That won't do...
You should have the vendor folder (with all relevant sub-folders) directly in the module's system folder.
Click to expand...
Click to collapse
Many thanks, it worked!!
devsx said:
Many thanks, it worked!!
Click to expand...
Click to collapse
Are you saying you now have a working VoLTE/WiFi module for Pixel 2 - can you please share the working version.
Does it also work on DP?
Thanks in advance
goRt said:
Are you saying you now have a working VoLTE/WiFi module for Pixel 2 - can you please share the working version.
Does it also work on DP?
Thanks in advance
Click to expand...
Click to collapse
Nah

Magisk Core Only Mode (Always ON)

So the modules are not working.
Tried to turn core-only off. Rebooted. It's ON again.
Log :
Code:
--------- beginning of main
--------- beginning of system
09-10 10:58:03.623 301 301 I Magisk : Magisk v19.3(19300) daemon started
09-10 10:58:03.623 301 301 I Magisk : * Device API level: 25
09-10 10:58:16.217 301 542 I Magisk : ** late_start service mode running
09-10 10:58:16.438 301 542 E Magisk : * post-fs-data mode is not triggered
09-10 10:58:16.441 301 542 I Magisk : * Initializing Magisk environment
09-10 10:58:16.540 301 542 I Magisk : * Mounting mirrors
09-10 10:58:16.542 301 542 I Magisk : mount: /sbin/.magisk/mirror/system
09-10 10:58:16.542 301 542 I Magisk : mount: /sbin/.magisk/mirror/data
09-10 10:58:16.542 301 542 I Magisk : link: /sbin/.magisk/mirror/vendor
09-10 10:58:16.576 301 542 I Magisk : * Setting up internal busybox
09-10 10:58:16.751 301 542 I Magisk : * Running service.d scripts
09-10 10:58:16.816 301 673 I Magisk : * Starting MagiskHide
09-10 10:58:16.817 301 673 I Magisk : hide_policy: Hiding sensitive props
09-10 10:58:16.881 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android]
09-10 10:58:16.893 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android:crash]
09-10 10:58:16.903 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android:phoenix]
09-10 10:58:16.912 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android:stuffing]
09-10 10:58:16.921 301 673 I Magisk : hide_list init: [com.google.android.gms/com.google.android.gms.unstable]
09-10 10:58:16.929 301 673 I Magisk : hide_list init: [org.microg.gms.droidguard/com.google.android.gms.unstable]
09-10 10:58:17.497 301 815 I Magisk : ** post-fs-data mode running
09-10 10:58:17.500 301 815 I Magisk : * Initializing Magisk environment
09-10 10:58:17.500 301 815 I Magisk : * Mounting mirrors
09-10 10:58:17.501 301 815 E Magisk : mount /sbin/.magisk/block/system->/sbin/.magisk/mirror/system failed with 16: Device or resource busy
09-10 10:58:17.501 301 815 I Magisk : mount: /sbin/.magisk/mirror/system
09-10 10:58:17.501 301 815 E Magisk : mount /sbin/.magisk/block/data->/sbin/.magisk/mirror/data failed with 16: Device or resource busy
09-10 10:58:17.501 301 815 I Magisk : mount: /sbin/.magisk/mirror/data
09-10 10:58:17.502 301 815 I Magisk : * Setting up internal busybox
09-10 10:58:17.513 301 815 I Magisk : * Running post-fs-data.d scripts
09-10 10:59:21.071 301 1953 I Magisk : ** boot_complete triggered
09-10 10:59:51.698 301 673 I Magisk : proc_monitor: [com.google.android.gms.unstable] PID=[4345] UID=[10010]
-update
Cleared mobile cache and Magisk repo cache and it worked.
Seems that fix works
I have same trouble after installing some modules, that fix worked for me
Didnt work for me.. Tried everything. Revmoving the caches. Uninstalling everything trying older version nothing works.. I think my rom is the issue but I don't want to change roms.. I want a workaround or fix
Edit: i just noticed a beta finally came out. 19.4 after installing it and disabling core only and installing a module it finally stayed off after boot
It doesn't work just uninstall and start all over again.
18.1 is still the best.
Sent from my Sony G8142 using XDA Labs
rootenshi said:
-update
Cleared mobile cache and Magisk repo cache and it worked.
Click to expand...
Click to collapse
How to clear magisk repo cache??
Thejayyadav said:
How to clear magisk repo cache??
Click to expand...
Click to collapse
Open Magisk -> Settings -> Clear repo cache
i am too facing the issue but clearing repo cache and all application caches does not help, any solution?
pl refer here https://forum.xda-developers.com/showpost.php?p=81177129&postcount=26
codergenius said:
i am too facing the issue but clearing repo cache and all application caches does not help, any solution?
pl refer here https://forum.xda-developers.com/showpost.php?p=81177129&postcount=26
Click to expand...
Click to collapse
flash MultiFunctionsPlus and reboot.

Magisk modules not working on realme 2 pro

Why magisk modules not working on realme 2 pro
They can be installed but don't activate after reboot
Only we have an old patched version of magisk installer v17.1 which have working modules but it is old version with very few modules
Please fix this and support realme 2 pro mdroid pie
Without more info or any kind of logs it's extremely hard to offer any kind of help. Take a look here:
https://didgeridoohan.com/magisk/MagiskHelp
Here is the log
Code:
301 542 I Magisk : link: /sbin/.magisk/mirror/vendor
09-10 10:58:16.576 301 542 I Magisk : * Setting up internal busybox
09-10 10:58:16.751 301 542 I Magisk : * Running service.d scripts
09-10 10:58:16.816 301 673 I Magisk : * Starting MagiskHide
09-10 10:58:16.817 301 673 I Magisk : hide_policy: Hiding sensitive props
09-10 10:58:16.881 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android]
09-10 10:58:16.893 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android:crash]
09-10 10:58:16.903 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android:phoenix]
09-10 10:58:16.912 301 673 I Magisk : hide_list init: [com.snapchat.android/com.snapchat.android:stuffing]
09-10 10:58:16.921 301 673 I Magisk : hide_list init: [com.google.android.gms/com.google.android.gms.unstable]
09-10 10:58:16.929 301 673 I Magisk : hide_list init: [org.microg.gms.droidguard/com.google.android.gms.unstable]
09-10 10:58:17.497 301 815 I Magisk : ** post-fs-data mode running
09-10 10:58:17.500 301 815 I Magisk : * Initializing Magisk environment
09-10 10:58:17.500 301 815 I Magisk : * Mounting mirrors
09-10 10:58:17.501 301 815 E Magisk : mount /sbin/.magisk/block/system->/sbin/.magisk/mirror/system failed with 16: Device or resource busy
09-10 10:58:17.501 301 815 I Magisk : mount: /sbin/.magisk/mirror/system
09-10 10:58:17.501 301 815 E Magisk : mount /sbin/.magisk/block/data->/sbin/.magisk/mirror/data failed with 16: Device or resource busy
09-10 10:58:17.501 301 815 I Magisk : mount: /sbin/.magisk/mirror/data
09-10 10:58:17.502 301 815 I Magisk : * Setting up internal busybox
09-10 10:58:17.513 301 815 I Magisk : * Running post-fs-data.d scripts
09-10 10:59:21.071 301 1953 I Magisk : ** boot_complete triggered
09-10 10:59:51.698 301 673 I Magisk : proc_monitor: [com.google.android.gms.unstable] PID=[4345] UID=[10010]
The magisk is forced to run on Core mode only and cannot be switched
elswerky said:
Why magisk modules not working on realme 2 pro
They can be installed but don't activate after reboot
Only we have an old patched version of magisk installer v17.1 which have working modules but it is old version with very few modules
Please fix this and support realme 2 pro mdroid pie
Click to expand...
Click to collapse
To make magisk modules working properly, use fix magisk for oppo and realme by wzsx150.
Flash it with your twrp.

Magisk Hide Module installed but not available

Hey,
I installed Magisk via TWRP. The App is available and I can open it.
I installed the module "Magisk Hide Props Config". The Module is showing unter "Modules".
But after reboot I can't select the Module and configure anything.
What can I do to get this working? Maybe the log tells you something?
Code:
--------- beginning of main
--------- beginning of system
07-13 07:53:51.177 2457 2457 I Magisk : Magisk 20.4(20400) daemon started
07-13 07:53:51.178 2457 2457 I Magisk : * Device API level: 28
07-13 07:53:51.206 2457 2458 I Magisk : ** post-fs-data mode running
07-13 07:53:51.207 2457 2458 I Magisk : * Initializing Magisk environment
07-13 07:53:51.245 2457 2458 I Magisk : * Mounting mirrors
07-13 07:53:51.246 2457 2458 I Magisk : mount: /sbin/.magisk/mirror/system
07-13 07:53:51.246 2457 2458 I Magisk : mount: /sbin/.magisk/mirror/data
07-13 07:53:51.246 2457 2458 I Magisk : link: /sbin/.magisk/mirror/vendor
07-13 07:53:51.246 2457 2458 I Magisk : link: /sbin/.magisk/mirror/product
07-13 07:53:51.246 2457 2458 I Magisk : * Setting up internal busybox
07-13 07:53:51.266 2457 2458 I Magisk : * Running post-fs-data.d scripts
07-13 07:53:51.272 2457 2458 I Magisk : * Running module post-fs-data scripts
07-13 07:53:51.272 2457 2458 I Magisk : MagiskHidePropsConf: exec [post-fs-data.sh]
07-13 07:53:51.296 2457 2458 I Magisk : * Loading modules
07-13 07:53:51.297 2457 2458 I Magisk : MagiskHidePropsConf: loading [system.prop]
07-13 07:53:51.297 2457 2458 I Magisk : MagiskHidePropsConf: constructing magic mount structure
07-13 07:53:51.298 2457 2458 I Magisk : mnt_tmpfs : /system/xbin
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/props
07-13 07:53:51.298 2457 2458 I Magisk : copy_link : /system/xbin/gzip
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/rawbu
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/wget
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/procmem
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/showmap
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/mmc_utils
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/ioshark_bench
07-13 07:53:51.298 2457 2458 I Magisk : bind_mount: /system/xbin/taskstats
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/micro_bench_static64
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/showslab
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/pigz
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/anrd
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/latencytop
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/rsync
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/nano
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/puncture_fs
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/bash
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/simpleperf
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/simpleperf32
07-13 07:53:51.299 2457 2458 I Magisk : copy_link : /system/xbin/zcat
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/zip
07-13 07:53:51.299 2457 2458 I Magisk : bind_mount: /system/xbin/micro_bench_static
07-13 07:53:51.300 2457 2458 I Magisk : copy_link : /system/xbin/unpigz
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/7z
07-13 07:53:51.300 2457 2458 I Magisk : copy_link : /system/xbin/gunzip
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/crypto
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/sane_schedstat
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/httpurl
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/librank
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/unrar
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/vim
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/dumpcache
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/ksminfo
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/dnschk
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/procrank
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/runconuid
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/htop
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/cpustats
07-13 07:53:51.300 2457 2458 I Magisk : bind_mount: /system/xbin/micro_bench64
07-13 07:53:51.301 2457 2458 I Magisk : bind_mount: /system/xbin/micro_bench
07-13 07:53:51.301 2457 2458 I Magisk : bind_mount: /system/xbin/tcpdump
07-13 09:53:52.053 2457 2553 I Magisk : ** late_start service mode running
07-13 09:53:52.054 2457 2553 I Magisk : * Running service.d scripts
07-13 09:53:52.434 2457 2553 I Magisk : * Running module service scripts
07-13 09:53:52.434 2457 2553 I Magisk : MagiskHidePropsConf: exec [service.sh]
07-13 09:54:08.111 2457 3863 I Magisk : ** boot_complete triggered
please delete this thread...
I found out that this module has no menu and is only available via terminal...

Categories

Resources