├── Android.mk ├── PlatformConfig.mk ├── README.md ├── bluetooth └── bdroid_buildcfg.h ├── overlay ├── frameworks │ └── base │ │ └── core │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ └── apps │ └── Settings │ └── res │ ├── drawable-nodpi │ └── fingerprint_sensor_location.png │ └── values │ ├── dimens.xml │ └── strings.xml ├── platform.mk ├── rootdir ├── Android.mk ├── recovery.wipe └── vendor │ ├── etc │ ├── aosp_common_primary_audio_policy_configuration.xml │ ├── audio_platform_info.xml │ ├── audio_policy_configuration.xml │ ├── audio_tuning_mixer_tavil.txt │ ├── caf_common_primary_audio_policy_configuration.xml │ ├── camera │ │ └── camxoverridesettings.txt │ ├── fstab.tama │ ├── init │ │ ├── init.tama.pwr.rc │ │ └── init.tama.rc │ ├── libnfc-nci.conf │ ├── media_codecs.xml │ ├── media_codecs_performance.xml │ ├── media_profiles_V1_0.xml │ ├── msm_irqbalance.conf │ ├── rqbalance_config.xml │ ├── sensors │ │ ├── hals.conf │ │ └── sns_reg_config │ ├── sound_trigger_mixer_paths_wcd9340.xml │ ├── sound_trigger_platform_info.xml │ ├── system_properties.xml │ └── wifi │ │ ├── p2p_supplicant_overlay.conf │ │ └── wpa_supplicant_overlay.conf │ ├── firmware │ └── wlan │ │ └── qca_cld │ │ └── WCNSS_qcom_cfg.ini │ ├── ueventd.rc │ └── usr │ ├── idc │ ├── clearpad.idc │ ├── synaptics_tcm_touch.idc │ └── uinput-fpc.idc │ └── keylayout │ └── gpio-keys.kl └── sepolicy_platform ├── file_contexts └── genfs_contexts /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/Android.mk -------------------------------------------------------------------------------- /PlatformConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/PlatformConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/drawable-nodpi/fingerprint_sensor_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/overlay/packages/apps/Settings/res/drawable-nodpi/fingerprint_sensor_location.png -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/overlay/packages/apps/Settings/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/overlay/packages/apps/Settings/res/values/strings.xml -------------------------------------------------------------------------------- /platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/platform.mk -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/recovery.wipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/recovery.wipe -------------------------------------------------------------------------------- /rootdir/vendor/etc/aosp_common_primary_audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/aosp_common_primary_audio_policy_configuration.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/audio_platform_info.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/audio_policy_configuration.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/audio_tuning_mixer_tavil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/audio_tuning_mixer_tavil.txt -------------------------------------------------------------------------------- /rootdir/vendor/etc/caf_common_primary_audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/caf_common_primary_audio_policy_configuration.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/camera/camxoverridesettings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/camera/camxoverridesettings.txt -------------------------------------------------------------------------------- /rootdir/vendor/etc/fstab.tama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/fstab.tama -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/init.tama.pwr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/init/init.tama.pwr.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/init.tama.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/init/init.tama.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/libnfc-nci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/libnfc-nci.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/media_codecs.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/media_codecs_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/media_codecs_performance.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/msm_irqbalance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/msm_irqbalance.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/rqbalance_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/rqbalance_config.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/sensors/hals.conf: -------------------------------------------------------------------------------- 1 | sensors.ssc.so 2 | -------------------------------------------------------------------------------- /rootdir/vendor/etc/sensors/sns_reg_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/sensors/sns_reg_config -------------------------------------------------------------------------------- /rootdir/vendor/etc/sound_trigger_mixer_paths_wcd9340.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/sound_trigger_mixer_paths_wcd9340.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/sound_trigger_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/sound_trigger_platform_info.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/system_properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/system_properties.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/etc/wifi/wpa_supplicant_overlay.conf -------------------------------------------------------------------------------- /rootdir/vendor/firmware/wlan/qca_cld/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/firmware/wlan/qca_cld/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /rootdir/vendor/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/ueventd.rc -------------------------------------------------------------------------------- /rootdir/vendor/usr/idc/clearpad.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/usr/idc/clearpad.idc -------------------------------------------------------------------------------- /rootdir/vendor/usr/idc/synaptics_tcm_touch.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/usr/idc/synaptics_tcm_touch.idc -------------------------------------------------------------------------------- /rootdir/vendor/usr/idc/uinput-fpc.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/usr/idc/uinput-fpc.idc -------------------------------------------------------------------------------- /rootdir/vendor/usr/keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/rootdir/vendor/usr/keylayout/gpio-keys.kl -------------------------------------------------------------------------------- /sepolicy_platform/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/sepolicy_platform/file_contexts -------------------------------------------------------------------------------- /sepolicy_platform/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-tama/HEAD/sepolicy_platform/genfs_contexts --------------------------------------------------------------------------------