├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── arm ├── keycheck ├── magiskboot ├── magiskinit └── magiskinit64 ├── chromeos ├── futility ├── kernel.keyblock └── kernel_data_key.vbprivk ├── common ├── boot_patch.sh ├── magisk.apk └── util_functions.sh └── x86 ├── keycheck ├── magiskboot ├── magiskinit └── magiskinit64 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/README.md -------------------------------------------------------------------------------- /arm/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/arm/keycheck -------------------------------------------------------------------------------- /arm/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/arm/magiskboot -------------------------------------------------------------------------------- /arm/magiskinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/arm/magiskinit -------------------------------------------------------------------------------- /arm/magiskinit64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/arm/magiskinit64 -------------------------------------------------------------------------------- /chromeos/futility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/chromeos/futility -------------------------------------------------------------------------------- /chromeos/kernel.keyblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/chromeos/kernel.keyblock -------------------------------------------------------------------------------- /chromeos/kernel_data_key.vbprivk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/chromeos/kernel_data_key.vbprivk -------------------------------------------------------------------------------- /common/boot_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/common/boot_patch.sh -------------------------------------------------------------------------------- /common/magisk.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/common/magisk.apk -------------------------------------------------------------------------------- /common/util_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/common/util_functions.sh -------------------------------------------------------------------------------- /x86/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/x86/keycheck -------------------------------------------------------------------------------- /x86/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/x86/magiskboot -------------------------------------------------------------------------------- /x86/magiskinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/x86/magiskinit -------------------------------------------------------------------------------- /x86/magiskinit64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/Kernel-Sepolicy-Patcher/HEAD/x86/magiskinit64 --------------------------------------------------------------------------------