├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── Makefile ├── README.md ├── _module.prop ├── common ├── post-fs-data.sh ├── service.sh └── system.prop ├── config.sh ├── license.txt └── system └── xbin └── symbol-links.tar /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/README.md -------------------------------------------------------------------------------- /_module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/_module.prop -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/common/system.prop -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/config.sh -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/license.txt -------------------------------------------------------------------------------- /system/xbin/symbol-links.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haruue/MagiskBusybox/HEAD/system/xbin/symbol-links.tar --------------------------------------------------------------------------------