├── .github └── workflows │ └── build.yml ├── .gitignore ├── Android.bp ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── aosp ├── bionic │ └── libc │ │ ├── async_safe │ │ └── include │ │ │ └── async_safe │ │ │ ├── CHECK.h │ │ │ └── log.h │ │ ├── bionic │ │ ├── system_property_api.cpp │ │ └── system_property_set.cpp │ │ ├── include │ │ └── sys │ │ │ └── _system_properties.h │ │ ├── private │ │ ├── ErrnoRestorer.h │ │ ├── bionic_defs.h │ │ ├── bionic_futex.h │ │ ├── bionic_lock.h │ │ └── bionic_macros.h │ │ └── system_properties │ │ ├── context_node.cpp │ │ ├── contexts_serialized.cpp │ │ ├── contexts_split.cpp │ │ ├── include │ │ └── system_properties │ │ │ ├── context_node.h │ │ │ ├── contexts.h │ │ │ ├── contexts_pre_split.h │ │ │ ├── contexts_serialized.h │ │ │ ├── contexts_split.h │ │ │ ├── prop_area.h │ │ │ ├── prop_info.h │ │ │ └── system_properties.h │ │ ├── prop_area.cpp │ │ ├── prop_info.cpp │ │ └── system_properties.cpp └── system │ └── core │ ├── base │ ├── include │ │ └── android-base │ │ │ └── strings.h │ └── strings.cpp │ └── property_service │ └── libpropertyinfoparser │ ├── include │ └── property_info_parser │ │ └── property_info_parser.h │ └── property_info_parser.cpp ├── main.cpp ├── push.ps1 ├── push.sh └── system ├── addon.d └── 60-ih8sn.sh └── etc ├── ih8sn.conf └── init └── ih8sn.rc /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/Android.bp -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /aosp/bionic/libc/async_safe/include/async_safe/CHECK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/async_safe/include/async_safe/CHECK.h -------------------------------------------------------------------------------- /aosp/bionic/libc/async_safe/include/async_safe/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/async_safe/include/async_safe/log.h -------------------------------------------------------------------------------- /aosp/bionic/libc/bionic/system_property_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/bionic/system_property_api.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/bionic/system_property_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/bionic/system_property_set.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/include/sys/_system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/include/sys/_system_properties.h -------------------------------------------------------------------------------- /aosp/bionic/libc/private/ErrnoRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/private/ErrnoRestorer.h -------------------------------------------------------------------------------- /aosp/bionic/libc/private/bionic_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/private/bionic_defs.h -------------------------------------------------------------------------------- /aosp/bionic/libc/private/bionic_futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/private/bionic_futex.h -------------------------------------------------------------------------------- /aosp/bionic/libc/private/bionic_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/private/bionic_lock.h -------------------------------------------------------------------------------- /aosp/bionic/libc/private/bionic_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/private/bionic_macros.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/context_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/context_node.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/contexts_serialized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/contexts_serialized.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/contexts_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/contexts_split.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/context_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/context_node.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/contexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/contexts.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/contexts_pre_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/contexts_pre_split.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/contexts_serialized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/contexts_serialized.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/contexts_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/contexts_split.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/prop_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/prop_area.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/prop_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/prop_info.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/include/system_properties/system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/include/system_properties/system_properties.h -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/prop_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/prop_area.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/prop_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/prop_info.cpp -------------------------------------------------------------------------------- /aosp/bionic/libc/system_properties/system_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/bionic/libc/system_properties/system_properties.cpp -------------------------------------------------------------------------------- /aosp/system/core/base/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/system/core/base/include/android-base/strings.h -------------------------------------------------------------------------------- /aosp/system/core/base/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/system/core/base/strings.cpp -------------------------------------------------------------------------------- /aosp/system/core/property_service/libpropertyinfoparser/include/property_info_parser/property_info_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/system/core/property_service/libpropertyinfoparser/include/property_info_parser/property_info_parser.h -------------------------------------------------------------------------------- /aosp/system/core/property_service/libpropertyinfoparser/property_info_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/aosp/system/core/property_service/libpropertyinfoparser/property_info_parser.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/main.cpp -------------------------------------------------------------------------------- /push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/push.ps1 -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/push.sh -------------------------------------------------------------------------------- /system/addon.d/60-ih8sn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/system/addon.d/60-ih8sn.sh -------------------------------------------------------------------------------- /system/etc/ih8sn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/system/etc/ih8sn.conf -------------------------------------------------------------------------------- /system/etc/init/ih8sn.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luk1337/ih8sn/HEAD/system/etc/init/ih8sn.rc --------------------------------------------------------------------------------