├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── changelog.txt ├── common ├── custom_build.prop ├── file_contexts_image ├── post-fs-data.sh └── service.sh ├── config.sh └── module.prop /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.[oa] 2 | *~ 3 | *.log 4 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/changelog.txt -------------------------------------------------------------------------------- /common/custom_build.prop: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | -------------------------------------------------------------------------------- /common/file_contexts_image: -------------------------------------------------------------------------------- 1 | /magisk(/.*)? u:object_r:system_file:s0 2 | -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/common/service.sh -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/config.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggardkernel/su-xbin-bind/HEAD/module.prop --------------------------------------------------------------------------------