├── POST_sGSI_Patches ├── Boot Partition │ └── POST-sGSI_3 │ │ ├── META-INF │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ ├── update-binary │ │ │ └── updater-script │ │ ├── anykernel.sh │ │ ├── ramdisk │ │ ├── init │ │ ├── init.environ.rc │ │ ├── init.rc │ │ ├── init.usb.configfs.rc │ │ ├── init.usb.rc │ │ ├── init.zygote32.rc │ │ ├── init.zygote64_32.rc │ │ └── ueventd.rc │ │ ├── texts │ │ ├── oslevel │ │ └── osversion │ │ └── tools │ │ ├── ak2-core.sh │ │ ├── busybox │ │ ├── lz4 │ │ ├── mkbootimg │ │ ├── unpackbootimg │ │ └── xz └── Vendor │ ├── Blobs HAX │ └── POST-sGSI_2 │ │ └── META-INF │ │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script │ └── P Blobs │ └── POST-sGSI_1 │ ├── META-INF │ ├── CERT.RSA │ ├── CERT.SF │ ├── MANIFEST.MF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script │ └── vendor │ ├── bin │ └── hw │ │ ├── android.hardware.audio@2.0-service │ │ ├── android.hardware.camera.provider@2.4-service │ │ ├── android.hardware.graphics.allocator@2.0-service │ │ ├── android.hardware.graphics.composer@2.1-service │ │ ├── android.hardware.keymaster@3.0-service │ │ ├── android.hardware.media.omx@1.0-service │ │ ├── android.hardware.wifi@1.0-service │ │ ├── hostapd │ │ └── wpa_supplicant │ ├── etc │ ├── init │ │ ├── android.hardware.audio@2.0-service.rc │ │ ├── android.hardware.camera.provider@2.4-service.rc │ │ ├── android.hardware.graphics.allocator@2.0-service.rc │ │ ├── android.hardware.graphics.composer@2.1-service.rc │ │ ├── android.hardware.keymaster@3.0-service.rc │ │ ├── android.hardware.media.omx@1.0-service.rc │ │ ├── android.hardware.wifi@1.0-service.rc │ │ └── hostapd.android.rc │ └── seccomp_policy │ │ └── configstore@1.0.policy │ ├── lib │ ├── Wndroid.frameworks.sensorservice@1.0.so │ ├── Wndroid.hardware.gnss@1.0.so │ ├── Wndroid.hardware.radio@1.0.so │ ├── Wndroid.hardware.sensors@1.0.so │ ├── android.frameworks.displayservice@1.0.so │ ├── android.hardware.tetheroffload.config@1.0.so │ ├── hw │ │ ├── android.hardware.audio.effect@2.0-impl.so │ │ ├── android.hardware.audio@2.0-impl.so │ │ └── android.hardware.graphics.mapper@2.0-impl.so │ ├── libWcuuc.so │ ├── libWi.so │ ├── libWinikin.so │ ├── libWkeystorebinder.so │ ├── libWtils.so │ ├── libWui.so │ ├── libdisplayconfig.so │ ├── libeffectsconfig.so │ └── libskia.so │ ├── lib64 │ ├── Wndroid.frameworks.sensorservice@1.0.so │ ├── Wndroid.hardware.gnss@1.0.so │ ├── Wndroid.hardware.radio@1.0.so │ ├── Wndroid.hardware.sensors@1.0.so │ ├── android.hardware.tetheroffload.config@1.0.so │ ├── android.hardware.tetheroffload.control@1.0.so │ ├── hw │ │ ├── android.hardware.graphics.allocator@2.0-impl.so │ │ ├── android.hardware.graphics.composer@2.1-impl.so │ │ ├── android.hardware.graphics.mapper@2.0-impl.so │ │ └── android.hardware.keymaster@3.0-impl.so │ ├── libWkeystorebinder.so │ ├── libeffectsconfig.so │ ├── libhwc2onfbadapter.so │ ├── libkeymaster3device.so │ └── libwifi-hal.so │ └── overlay │ ├── DisplayCutoutEmulationCorner │ └── DisplayCutoutEmulationCornerOverlay.apk │ ├── DisplayCutoutEmulationDouble │ └── DisplayCutoutEmulationDoubleOverlay.apk │ ├── DisplayCutoutEmulationTall │ └── DisplayCutoutEmulationTallOverlay.apk │ ├── P-Hotness.apk │ ├── Pixel │ └── PixelThemeOverlay.apk │ └── SysuiDarkTheme │ └── SysuiDarkThemeOverlay.apk ├── PixelGSI ├── AB2A.sh ├── ln.sh ├── makegsi.sh ├── overlay │ ├── DisplayCutoutEmulationCorner │ │ └── DisplayCutoutEmulationCornerOverlay.apk │ ├── DisplayCutoutEmulationDouble │ │ └── DisplayCutoutEmulationDoubleOverlay.apk │ ├── DisplayCutoutEmulationTall │ │ └── DisplayCutoutEmulationTallOverlay.apk │ ├── P-Hotness.apk │ ├── Pixel │ │ └── PixelThemeOverlay.apk │ └── SysuiDarkTheme │ │ └── SysuiDarkThemeOverlay.apk ├── plat_mac_permissions.xml ├── unpixelify.txt └── wificonf │ ├── wificonf │ └── wificonf.rc └── systemimgmaker ├── 32 └── libselinux.so ├── 64 └── libselinux.so ├── A.txt ├── AB2A.sh ├── CNEService.apk ├── P-lize.sh ├── Pblobs.txt ├── QtiAudio └── QtiAudio.apk ├── README.md ├── init ├── ld.config.vndk_lite.txt ├── ln.sh ├── make.sh ├── makeab.sh ├── plat_mac_permissions.xml └── unpixelify.txt /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | # Dummy file; update-binary is a shell script. 2 | -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/anykernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/anykernel.sh -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.environ.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.environ.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.usb.configfs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.usb.configfs.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.usb.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.zygote32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.zygote32.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.zygote64_32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/init.zygote64_32.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/ramdisk/ueventd.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/texts/oslevel: -------------------------------------------------------------------------------- 1 | 2018-09 2 | -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/texts/osversion: -------------------------------------------------------------------------------- 1 | 9 2 | 3 | -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/ak2-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/ak2-core.sh -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/busybox -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/lz4 -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/mkbootimg -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/unpackbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/unpackbootimg -------------------------------------------------------------------------------- /POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Boot Partition/POST-sGSI_3/tools/xz -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/Blobs HAX/POST-sGSI_2/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/Blobs HAX/POST-sGSI_2/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/Blobs HAX/POST-sGSI_2/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/Blobs HAX/POST-sGSI_2/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/CERT.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/CERT.RSA -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/CERT.SF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/CERT.SF -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.audio@2.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.audio@2.0-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.camera.provider@2.4-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.camera.provider@2.4-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.graphics.allocator@2.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.graphics.allocator@2.0-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.graphics.composer@2.1-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.graphics.composer@2.1-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.keymaster@3.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.keymaster@3.0-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.media.omx@1.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.media.omx@1.0-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.wifi@1.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/android.hardware.wifi@1.0-service -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/hostapd -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/wpa_supplicant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/bin/hw/wpa_supplicant -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.audio@2.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.audio@2.0-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.camera.provider@2.4-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.camera.provider@2.4-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.graphics.allocator@2.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.graphics.allocator@2.0-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.graphics.composer@2.1-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.graphics.composer@2.1-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.keymaster@3.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.keymaster@3.0-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.media.omx@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.media.omx@1.0-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.wifi@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/android.hardware.wifi@1.0-service.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/hostapd.android.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/init/hostapd.android.rc -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/seccomp_policy/configstore@1.0.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/etc/seccomp_policy/configstore@1.0.policy -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.frameworks.sensorservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.frameworks.sensorservice@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.hardware.gnss@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.hardware.gnss@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.hardware.radio@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.hardware.radio@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.hardware.sensors@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/Wndroid.hardware.sensors@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/android.frameworks.displayservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/android.frameworks.displayservice@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/android.hardware.tetheroffload.config@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/android.hardware.tetheroffload.config@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/hw/android.hardware.audio.effect@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/hw/android.hardware.audio.effect@2.0-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/hw/android.hardware.audio@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/hw/android.hardware.audio@2.0-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/hw/android.hardware.graphics.mapper@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/hw/android.hardware.graphics.mapper@2.0-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWcuuc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWcuuc.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWi.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWinikin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWinikin.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWkeystorebinder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWkeystorebinder.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWtils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWtils.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libWui.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libdisplayconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libdisplayconfig.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libeffectsconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libeffectsconfig.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib/libskia.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.frameworks.sensorservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.frameworks.sensorservice@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.hardware.gnss@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.hardware.gnss@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.hardware.radio@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.hardware.radio@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.hardware.sensors@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/Wndroid.hardware.sensors@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/android.hardware.tetheroffload.config@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/android.hardware.tetheroffload.config@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/android.hardware.tetheroffload.control@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/android.hardware.tetheroffload.control@1.0.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.graphics.allocator@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.graphics.allocator@2.0-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.graphics.composer@2.1-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.graphics.composer@2.1-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.graphics.mapper@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.graphics.mapper@2.0-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.keymaster@3.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/hw/android.hardware.keymaster@3.0-impl.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libWkeystorebinder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libWkeystorebinder.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libeffectsconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libeffectsconfig.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libhwc2onfbadapter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libhwc2onfbadapter.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libkeymaster3device.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libkeymaster3device.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libwifi-hal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/lib64/libwifi-hal.so -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/DisplayCutoutEmulationCorner/DisplayCutoutEmulationCornerOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/DisplayCutoutEmulationCorner/DisplayCutoutEmulationCornerOverlay.apk -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/DisplayCutoutEmulationDouble/DisplayCutoutEmulationDoubleOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/DisplayCutoutEmulationDouble/DisplayCutoutEmulationDoubleOverlay.apk -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/DisplayCutoutEmulationTall/DisplayCutoutEmulationTallOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/DisplayCutoutEmulationTall/DisplayCutoutEmulationTallOverlay.apk -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/P-Hotness.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/P-Hotness.apk -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/Pixel/PixelThemeOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/Pixel/PixelThemeOverlay.apk -------------------------------------------------------------------------------- /POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/SysuiDarkTheme/SysuiDarkThemeOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/POST_sGSI_Patches/Vendor/P Blobs/POST-sGSI_1/vendor/overlay/SysuiDarkTheme/SysuiDarkThemeOverlay.apk -------------------------------------------------------------------------------- /PixelGSI/AB2A.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/AB2A.sh -------------------------------------------------------------------------------- /PixelGSI/ln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/ln.sh -------------------------------------------------------------------------------- /PixelGSI/makegsi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/makegsi.sh -------------------------------------------------------------------------------- /PixelGSI/overlay/DisplayCutoutEmulationCorner/DisplayCutoutEmulationCornerOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/overlay/DisplayCutoutEmulationCorner/DisplayCutoutEmulationCornerOverlay.apk -------------------------------------------------------------------------------- /PixelGSI/overlay/DisplayCutoutEmulationDouble/DisplayCutoutEmulationDoubleOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/overlay/DisplayCutoutEmulationDouble/DisplayCutoutEmulationDoubleOverlay.apk -------------------------------------------------------------------------------- /PixelGSI/overlay/DisplayCutoutEmulationTall/DisplayCutoutEmulationTallOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/overlay/DisplayCutoutEmulationTall/DisplayCutoutEmulationTallOverlay.apk -------------------------------------------------------------------------------- /PixelGSI/overlay/P-Hotness.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/overlay/P-Hotness.apk -------------------------------------------------------------------------------- /PixelGSI/overlay/Pixel/PixelThemeOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/overlay/Pixel/PixelThemeOverlay.apk -------------------------------------------------------------------------------- /PixelGSI/overlay/SysuiDarkTheme/SysuiDarkThemeOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/overlay/SysuiDarkTheme/SysuiDarkThemeOverlay.apk -------------------------------------------------------------------------------- /PixelGSI/plat_mac_permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/plat_mac_permissions.xml -------------------------------------------------------------------------------- /PixelGSI/unpixelify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/unpixelify.txt -------------------------------------------------------------------------------- /PixelGSI/wificonf/wificonf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/wificonf/wificonf -------------------------------------------------------------------------------- /PixelGSI/wificonf/wificonf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/PixelGSI/wificonf/wificonf.rc -------------------------------------------------------------------------------- /systemimgmaker/32/libselinux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/32/libselinux.so -------------------------------------------------------------------------------- /systemimgmaker/64/libselinux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/64/libselinux.so -------------------------------------------------------------------------------- /systemimgmaker/A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/A.txt -------------------------------------------------------------------------------- /systemimgmaker/AB2A.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/AB2A.sh -------------------------------------------------------------------------------- /systemimgmaker/CNEService.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/CNEService.apk -------------------------------------------------------------------------------- /systemimgmaker/P-lize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/P-lize.sh -------------------------------------------------------------------------------- /systemimgmaker/Pblobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/Pblobs.txt -------------------------------------------------------------------------------- /systemimgmaker/QtiAudio/QtiAudio.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/QtiAudio/QtiAudio.apk -------------------------------------------------------------------------------- /systemimgmaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/README.md -------------------------------------------------------------------------------- /systemimgmaker/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/init -------------------------------------------------------------------------------- /systemimgmaker/ld.config.vndk_lite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/ld.config.vndk_lite.txt -------------------------------------------------------------------------------- /systemimgmaker/ln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/ln.sh -------------------------------------------------------------------------------- /systemimgmaker/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/make.sh -------------------------------------------------------------------------------- /systemimgmaker/makeab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/makeab.sh -------------------------------------------------------------------------------- /systemimgmaker/plat_mac_permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/plat_mac_permissions.xml -------------------------------------------------------------------------------- /systemimgmaker/unpixelify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfanoabdi/P_semiGSI/HEAD/systemimgmaker/unpixelify.txt --------------------------------------------------------------------------------