├── Android.mk ├── README.md ├── device_defines.mk ├── kernel_cmdline ├── Android.mk └── kernel_cmdline.c ├── kernel_permissive_patcher ├── kernel_permissive.sh └── updater-script ├── kernel_permissive_selinuxaudit ├── kernel_selinuxaudit.sh └── updater-script ├── kernel_safetynet_verified ├── kernel_safetynet.sh └── updater-script ├── lib ├── Android.mk ├── animation.c ├── animation.h ├── atomics.h ├── button.c ├── button.h ├── colors.c ├── colors.h ├── containers.c ├── containers.h ├── framebuffer.c ├── framebuffer.h ├── framebuffer_generic.c ├── framebuffer_png.c ├── framebuffer_qcom_overlay.c ├── framebuffer_truetype.c ├── fstab.c ├── fstab.h ├── inject.c ├── inject.h ├── input.c ├── input.h ├── input_priv.h ├── input_type_a.c ├── input_type_b.c ├── keyboard.c ├── keyboard.h ├── listview.c ├── listview.h ├── log.h ├── mrom_data.c ├── mrom_data.h ├── notification_card.c ├── notification_card.h ├── progressdots.c ├── progressdots.h ├── tabview.c ├── tabview.h ├── touch_tracker.c ├── touch_tracker.h ├── util.c ├── util.h ├── velocity_tracker.c ├── workers.c └── workers.h ├── logo.png ├── release ├── kernel_permissive_patcher.zip ├── kernel_safetynet_verified.zip └── kernel_selinuxaudit_patcher.zip └── version.h /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/Android.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/README.md -------------------------------------------------------------------------------- /device_defines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/device_defines.mk -------------------------------------------------------------------------------- /kernel_cmdline/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_cmdline/Android.mk -------------------------------------------------------------------------------- /kernel_cmdline/kernel_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_cmdline/kernel_cmdline.c -------------------------------------------------------------------------------- /kernel_permissive_patcher/kernel_permissive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_permissive_patcher/kernel_permissive.sh -------------------------------------------------------------------------------- /kernel_permissive_patcher/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_permissive_patcher/updater-script -------------------------------------------------------------------------------- /kernel_permissive_selinuxaudit/kernel_selinuxaudit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_permissive_selinuxaudit/kernel_selinuxaudit.sh -------------------------------------------------------------------------------- /kernel_permissive_selinuxaudit/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_permissive_selinuxaudit/updater-script -------------------------------------------------------------------------------- /kernel_safetynet_verified/kernel_safetynet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_safetynet_verified/kernel_safetynet.sh -------------------------------------------------------------------------------- /kernel_safetynet_verified/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/kernel_safetynet_verified/updater-script -------------------------------------------------------------------------------- /lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/Android.mk -------------------------------------------------------------------------------- /lib/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/animation.c -------------------------------------------------------------------------------- /lib/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/animation.h -------------------------------------------------------------------------------- /lib/atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/atomics.h -------------------------------------------------------------------------------- /lib/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/button.c -------------------------------------------------------------------------------- /lib/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/button.h -------------------------------------------------------------------------------- /lib/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/colors.c -------------------------------------------------------------------------------- /lib/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/colors.h -------------------------------------------------------------------------------- /lib/containers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/containers.c -------------------------------------------------------------------------------- /lib/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/containers.h -------------------------------------------------------------------------------- /lib/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/framebuffer.c -------------------------------------------------------------------------------- /lib/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/framebuffer.h -------------------------------------------------------------------------------- /lib/framebuffer_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/framebuffer_generic.c -------------------------------------------------------------------------------- /lib/framebuffer_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/framebuffer_png.c -------------------------------------------------------------------------------- /lib/framebuffer_qcom_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/framebuffer_qcom_overlay.c -------------------------------------------------------------------------------- /lib/framebuffer_truetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/framebuffer_truetype.c -------------------------------------------------------------------------------- /lib/fstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/fstab.c -------------------------------------------------------------------------------- /lib/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/fstab.h -------------------------------------------------------------------------------- /lib/inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/inject.c -------------------------------------------------------------------------------- /lib/inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/inject.h -------------------------------------------------------------------------------- /lib/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/input.c -------------------------------------------------------------------------------- /lib/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/input.h -------------------------------------------------------------------------------- /lib/input_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/input_priv.h -------------------------------------------------------------------------------- /lib/input_type_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/input_type_a.c -------------------------------------------------------------------------------- /lib/input_type_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/input_type_b.c -------------------------------------------------------------------------------- /lib/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/keyboard.c -------------------------------------------------------------------------------- /lib/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/keyboard.h -------------------------------------------------------------------------------- /lib/listview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/listview.c -------------------------------------------------------------------------------- /lib/listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/listview.h -------------------------------------------------------------------------------- /lib/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/log.h -------------------------------------------------------------------------------- /lib/mrom_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/mrom_data.c -------------------------------------------------------------------------------- /lib/mrom_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/mrom_data.h -------------------------------------------------------------------------------- /lib/notification_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/notification_card.c -------------------------------------------------------------------------------- /lib/notification_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/notification_card.h -------------------------------------------------------------------------------- /lib/progressdots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/progressdots.c -------------------------------------------------------------------------------- /lib/progressdots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/progressdots.h -------------------------------------------------------------------------------- /lib/tabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/tabview.c -------------------------------------------------------------------------------- /lib/tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/tabview.h -------------------------------------------------------------------------------- /lib/touch_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/touch_tracker.c -------------------------------------------------------------------------------- /lib/touch_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/touch_tracker.h -------------------------------------------------------------------------------- /lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/util.c -------------------------------------------------------------------------------- /lib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/util.h -------------------------------------------------------------------------------- /lib/velocity_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/velocity_tracker.c -------------------------------------------------------------------------------- /lib/workers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/workers.c -------------------------------------------------------------------------------- /lib/workers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/lib/workers.h -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/logo.png -------------------------------------------------------------------------------- /release/kernel_permissive_patcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/release/kernel_permissive_patcher.zip -------------------------------------------------------------------------------- /release/kernel_safetynet_verified.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/release/kernel_safetynet_verified.zip -------------------------------------------------------------------------------- /release/kernel_selinuxaudit_patcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/release/kernel_selinuxaudit_patcher.zip -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianDC/kernel_permissive_patcher/HEAD/version.h --------------------------------------------------------------------------------