├── .github └── workflows │ ├── build.yaml │ ├── gki-build-lkm.yaml │ ├── gki-kernel.yaml │ ├── ngki-build-lkm.yaml │ └── ngki-kernel.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── module ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── action.sh ├── boot-completed.sh ├── config.sh ├── customize.sh ├── lkm │ ├── list.txt │ ├── nuke-android-4.14.ko │ ├── nuke-android12-5.10.ko │ ├── nuke-android13-5.10.ko │ ├── nuke-android13-5.15.ko │ ├── nuke-android14-5.15.ko │ ├── nuke-android14-6.1.ko │ └── nuke-android15-6.6.ko ├── metainstall.sh ├── module.prop ├── modules.txt ├── post-fs-data.sh ├── service.sh ├── symlink │ └── mountify-symlink.sh ├── uninstall.sh ├── whiteout │ ├── action.sh │ └── module.prop ├── whiteout_gen.sh └── whiteouts.txt ├── nuke_ext4_lkm ├── Kconfig ├── LICENSE ├── Makefile ├── README.md └── nuke.c ├── update.json └── webui ├── .gitignore ├── LICENSE ├── file.js ├── index.html ├── index.js ├── language.js ├── material-symbols-outlined.woff2 ├── package-lock.json ├── package.json ├── public ├── config.json ├── config_mountify.json └── locales │ ├── CONTRIBUTOR.md │ ├── GUIDE.md │ ├── languages.json │ └── strings │ ├── en.xml │ └── zh-CN.xml ├── styles.css ├── theme.css └── vite.config.js /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/gki-build-lkm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/.github/workflows/gki-build-lkm.yaml -------------------------------------------------------------------------------- /.github/workflows/gki-kernel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/.github/workflows/gki-kernel.yaml -------------------------------------------------------------------------------- /.github/workflows/ngki-build-lkm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/.github/workflows/ngki-build-lkm.yaml -------------------------------------------------------------------------------- /.github/workflows/ngki-kernel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/.github/workflows/ngki-kernel.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | module/webroot 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/README.md -------------------------------------------------------------------------------- /module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /module/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/action.sh -------------------------------------------------------------------------------- /module/boot-completed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/boot-completed.sh -------------------------------------------------------------------------------- /module/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/config.sh -------------------------------------------------------------------------------- /module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/customize.sh -------------------------------------------------------------------------------- /module/lkm/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/list.txt -------------------------------------------------------------------------------- /module/lkm/nuke-android-4.14.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android-4.14.ko -------------------------------------------------------------------------------- /module/lkm/nuke-android12-5.10.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android12-5.10.ko -------------------------------------------------------------------------------- /module/lkm/nuke-android13-5.10.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android13-5.10.ko -------------------------------------------------------------------------------- /module/lkm/nuke-android13-5.15.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android13-5.15.ko -------------------------------------------------------------------------------- /module/lkm/nuke-android14-5.15.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android14-5.15.ko -------------------------------------------------------------------------------- /module/lkm/nuke-android14-6.1.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android14-6.1.ko -------------------------------------------------------------------------------- /module/lkm/nuke-android15-6.6.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/lkm/nuke-android15-6.6.ko -------------------------------------------------------------------------------- /module/metainstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/metainstall.sh -------------------------------------------------------------------------------- /module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/module.prop -------------------------------------------------------------------------------- /module/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/modules.txt -------------------------------------------------------------------------------- /module/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/post-fs-data.sh -------------------------------------------------------------------------------- /module/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/service.sh -------------------------------------------------------------------------------- /module/symlink/mountify-symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/symlink/mountify-symlink.sh -------------------------------------------------------------------------------- /module/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/uninstall.sh -------------------------------------------------------------------------------- /module/whiteout/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/whiteout/action.sh -------------------------------------------------------------------------------- /module/whiteout/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/whiteout/module.prop -------------------------------------------------------------------------------- /module/whiteout_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/whiteout_gen.sh -------------------------------------------------------------------------------- /module/whiteouts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/module/whiteouts.txt -------------------------------------------------------------------------------- /nuke_ext4_lkm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/nuke_ext4_lkm/Kconfig -------------------------------------------------------------------------------- /nuke_ext4_lkm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/nuke_ext4_lkm/LICENSE -------------------------------------------------------------------------------- /nuke_ext4_lkm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/nuke_ext4_lkm/Makefile -------------------------------------------------------------------------------- /nuke_ext4_lkm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/nuke_ext4_lkm/README.md -------------------------------------------------------------------------------- /nuke_ext4_lkm/nuke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/nuke_ext4_lkm/nuke.c -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/update.json -------------------------------------------------------------------------------- /webui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public/config.sh 3 | -------------------------------------------------------------------------------- /webui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/LICENSE -------------------------------------------------------------------------------- /webui/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/file.js -------------------------------------------------------------------------------- /webui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/index.html -------------------------------------------------------------------------------- /webui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/index.js -------------------------------------------------------------------------------- /webui/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/language.js -------------------------------------------------------------------------------- /webui/material-symbols-outlined.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/material-symbols-outlined.woff2 -------------------------------------------------------------------------------- /webui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/package-lock.json -------------------------------------------------------------------------------- /webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/package.json -------------------------------------------------------------------------------- /webui/public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/config.json -------------------------------------------------------------------------------- /webui/public/config_mountify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/config_mountify.json -------------------------------------------------------------------------------- /webui/public/locales/CONTRIBUTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/locales/CONTRIBUTOR.md -------------------------------------------------------------------------------- /webui/public/locales/GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/locales/GUIDE.md -------------------------------------------------------------------------------- /webui/public/locales/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/locales/languages.json -------------------------------------------------------------------------------- /webui/public/locales/strings/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/locales/strings/en.xml -------------------------------------------------------------------------------- /webui/public/locales/strings/zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/public/locales/strings/zh-CN.xml -------------------------------------------------------------------------------- /webui/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/styles.css -------------------------------------------------------------------------------- /webui/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/theme.css -------------------------------------------------------------------------------- /webui/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backslashxx/mountify/HEAD/webui/vite.config.js --------------------------------------------------------------------------------