├── Android.bp ├── Android.mk ├── CommonConfig.mk ├── README.md ├── common-binds.mk ├── common-gsi.mk ├── common-init.mk ├── common-odm-camx.mk ├── common-odm-mmcam.mk ├── common-odm.mk ├── common-packages.mk ├── common-perm.mk ├── common-prop.mk ├── common-sanitizer.mk ├── common-treble.mk ├── common.mk ├── config.fs ├── hardware ├── Android.mk ├── adreno │ └── Android.mk ├── adsp │ └── Android.mk ├── camera │ └── Android.mk ├── firmware │ └── Android.mk ├── health │ ├── .clang-format │ ├── Android.bp │ ├── CycleCountBackupRestore.cpp │ ├── CycleCountBackupRestore.h │ ├── LICENSE.txt │ ├── LearnedCapacityBackupRestore.cpp │ ├── LearnedCapacityBackupRestore.h │ ├── README.md │ ├── android.hardware.health-service.sony.rc │ ├── android.hardware.health-service.sony.xml │ ├── android.hardware.health-service.sony_recovery.rc │ └── main.cpp ├── liblights │ ├── Android.mk │ ├── Light.cpp │ ├── Light.h │ ├── android.hardware.light@2.0-service.sony.rc │ └── service.cpp ├── librqbalance │ ├── Android.mk │ └── rqbalance_ctl.c ├── odm │ └── Android.mk ├── power │ ├── Android.mk │ ├── Hints.cpp │ ├── Hints.h │ ├── Power.cpp │ ├── Power.h │ ├── README.md │ ├── RQBalanceHALExt.cpp │ ├── RQBalanceHALExt.h │ ├── android.hardware.power@1.3-service.sony.rc │ ├── common.h │ ├── expatparser.c │ ├── main.cpp │ ├── power-helper.c │ └── power-helper.h ├── qca_cld3 │ └── Android.mk ├── qcom │ ├── Android.mk │ └── utils.mk ├── ssc │ ├── common │ │ ├── Android.bp │ │ ├── ak991x_dri_0.json │ │ ├── bma2x2_0.json │ │ ├── bme680_0.json │ │ ├── bmg160_0.json │ │ ├── bmp285_0.json │ │ ├── bmp380_0.json │ │ ├── bu52053nvx_0.json │ │ ├── cm3526_0.json │ │ ├── default_sensors.json │ │ ├── dps368_0.json │ │ ├── lsm6dsm_0.json │ │ ├── lsm6dsm_0_16g.json │ │ ├── lsm6dso_0.json │ │ ├── lsm6dso_0_16g.json │ │ ├── qsh_ble.json │ │ ├── qsh_camera.json │ │ ├── shtw2_0.json │ │ ├── sns_amd.json │ │ ├── sns_amd_sw_disabled.json │ │ ├── sns_amd_sw_enabled.json │ │ ├── sns_aont.json │ │ ├── sns_basic_gestures.json │ │ ├── sns_bring_to_ear.json │ │ ├── sns_ccd.json │ │ ├── sns_ccd_v1_0_amd.json │ │ ├── sns_ccd_v1_0_ttw.json │ │ ├── sns_ccd_v2_0_walk.json │ │ ├── sns_ccd_v2_walk.json │ │ ├── sns_ccd_v3_0_walk.json │ │ ├── sns_ccd_v3_1_walk.json │ │ ├── sns_ccd_v3_walk.json │ │ ├── sns_ccd_v4_0_sensors.json │ │ ├── sns_ccd_v4_0_te_cd_regs.json │ │ ├── sns_ccd_v5.json │ │ ├── sns_ccd_v5_0_te_cd_regs.json │ │ ├── sns_cm.json │ │ ├── sns_dae.json │ │ ├── sns_device_orient.json │ │ ├── sns_diag_filter.json │ │ ├── sns_direct_channel.json │ │ ├── sns_distance_bound.json │ │ ├── sns_dpc.json │ │ ├── sns_facing.json │ │ ├── sns_fmv.json │ │ ├── sns_fmv_legacy.json │ │ ├── sns_geomag_rv.json │ │ ├── sns_gyro_cal.json │ │ ├── sns_heart_rate.json │ │ ├── sns_mag_cal.json │ │ ├── sns_mag_cal_legacy.json │ │ ├── sns_multishake.json │ │ ├── sns_offbody_detect_phone.json │ │ ├── sns_pedometer.json │ │ ├── sns_rmd.json │ │ ├── sns_rotv.json │ │ ├── sns_smd.json │ │ ├── sns_tilt.json │ │ ├── sns_tilt_sw_disabled.json │ │ ├── sns_tilt_sw_enabled.json │ │ ├── sns_tilt_to_wake.json │ │ ├── sns_transport_ppe.json │ │ ├── sns_wrist_pedo.json │ │ ├── stk3x3x_0.json │ │ ├── tmd2725.json │ │ ├── tmd3725.json │ │ ├── tmx4903.json │ │ └── wigig_sensing_0.json │ ├── kailua │ │ ├── Android.bp │ │ ├── kailua_ak991x_0.json │ │ ├── kailua_bu52053nvx_0.json │ │ ├── kailua_default_sensors.json │ │ ├── kailua_dynamic_sensors.json │ │ ├── kailua_dynamic_sensors_template.json │ │ ├── kailua_fcal_ak991x_0.json │ │ ├── kailua_hdk_ak991x_0.json │ │ ├── kailua_hdk_lsm6dsv_0.json │ │ ├── kailua_hdk_lsm6dsv_1.json │ │ ├── kailua_hhg_ak991x_0.json │ │ ├── kailua_hhg_lsm6dsv_0.json │ │ ├── kailua_irq.json │ │ ├── kailua_lps22df_0.json │ │ ├── kailua_lsm6dsv_0.json │ │ ├── kailua_lsm6dsv_1.json │ │ ├── kailua_mtp_ak991x_0.json │ │ ├── kailua_mtp_lsm6dsv_0.json │ │ ├── kailua_mtp_lsm6dsv_1.json │ │ ├── kailua_power_0.json │ │ ├── kailua_qrd_ak991x_0.json │ │ ├── kailua_qrd_lsm6dsv_0.json │ │ ├── kailua_qrd_tmd2755_0.json │ │ ├── kailua_qsh_ble_0.json │ │ ├── kailua_sht4x_0.json │ │ ├── kailua_sx932x_0.json │ │ ├── kailua_tmd2755_0.json │ │ ├── kailua_vertigo_ak991x_0.json │ │ ├── kailua_vertigo_lsm6dsv_0.json │ │ └── kailua_vertigo_lsm6dsv_1.json │ ├── kona │ │ ├── Android.bp │ │ ├── kona_ak991x_0.json │ │ ├── kona_amd_sw_disabled.json │ │ ├── kona_bmp380_0.json │ │ ├── kona_bu52053nvx_0.json │ │ ├── kona_default_sensors.json │ │ ├── kona_dynamic_sensors.json │ │ ├── kona_hdk_ak991x_0.json │ │ ├── kona_hdk_lsm6dst_0.json │ │ ├── kona_hdk_lsm6dst_1.json │ │ ├── kona_irq.json │ │ ├── kona_lps22hh_0.json │ │ ├── kona_lsm6dsm_0.json │ │ ├── kona_lsm6dst_0.json │ │ ├── kona_lsm6dst_1.json │ │ ├── kona_power_0.json │ │ ├── kona_qrd_ak991x_0.json │ │ ├── kona_qrd_lsm6dst_0.json │ │ ├── kona_qrd_sx932x_0.json │ │ ├── kona_qrd_tmd2725_0.json │ │ ├── kona_shtw2_0.json │ │ ├── kona_somc_default_sensors.json │ │ ├── kona_stk3x3x_0.json │ │ ├── kona_svr_bma4_0.json │ │ ├── kona_svr_bmg160_0.json │ │ ├── kona_svr_icm4x6xx_0.json │ │ ├── kona_svr_rpr0521rs_0.json │ │ ├── kona_sx932x_0.json │ │ └── kona_tmd2725_0.json │ ├── lahaina │ │ ├── Android.bp │ │ ├── lahaina_ak991x_0.json │ │ ├── lahaina_bmp380_0.json │ │ ├── lahaina_bu52053nvx_0.json │ │ ├── lahaina_default_sensors.json │ │ ├── lahaina_dynamic_sensors.json │ │ ├── lahaina_hdk_ak991x_0.json │ │ ├── lahaina_hdk_lsm6dst_0.json │ │ ├── lahaina_hdk_lsm6dst_1.json │ │ ├── lahaina_hdk_sx932x_0.json │ │ ├── lahaina_hdk_tmd2725_0.json │ │ ├── lahaina_irq.json │ │ ├── lahaina_lps22hh_0.json │ │ ├── lahaina_lsm6dso_0.json │ │ ├── lahaina_lsm6dst_0.json │ │ ├── lahaina_lsm6dst_1.json │ │ ├── lahaina_mtp_ak991x_0.json │ │ ├── lahaina_mtp_lsm6dst_0.json │ │ ├── lahaina_mtp_lsm6dst_1.json │ │ ├── lahaina_power_0.json │ │ ├── lahaina_qrd_ak991x_0.json │ │ ├── lahaina_qrd_lsm6dst_0.json │ │ ├── lahaina_qrd_sx932x_0.json │ │ ├── lahaina_qrd_tmd3702_0.json │ │ ├── lahaina_shtw2_0.json │ │ ├── lahaina_stk3x3x_0.json │ │ ├── lahaina_sx932x_0.json │ │ ├── lahaina_tmd3702_0.json │ │ ├── lahaina_v2_fcal_ak991x_0.json │ │ ├── lahaina_vertigo_ak991x_0.json │ │ ├── lahaina_vertigo_lsm6dst_0.json │ │ └── lahaina_vertigo_lsm6dst_1.json │ ├── nicobar │ │ ├── Android.bp │ │ ├── nicobar_ak991x_0.json │ │ ├── nicobar_bmp285_0.json │ │ ├── nicobar_bu52053nvx_0.json │ │ ├── nicobar_default_sensors.json │ │ ├── nicobar_lsm6dso_0.json │ │ ├── nicobar_qrd_ak991x_0.json │ │ ├── nicobar_qrd_lsm6dso_0.json │ │ ├── nicobar_qrd_tmd2725.json │ │ └── nicobar_tmd2725.json │ ├── sdm630 │ │ ├── Android.bp │ │ ├── sdm630_default_sensors.json │ │ └── sdm636_default_sensors.json │ └── waipio │ │ ├── Android.bp │ │ ├── waipio_ak991x_0.json │ │ ├── waipio_bmp380_0.json │ │ ├── waipio_bu52053nvx_0.json │ │ ├── waipio_default_sensors.json │ │ ├── waipio_dynamic_sensors.json │ │ ├── waipio_hdk_ak991x_0.json │ │ ├── waipio_hdk_lps22hh_0.json │ │ ├── waipio_hdk_lsm6dst_0.json │ │ ├── waipio_hdk_lsm6dst_1.json │ │ ├── waipio_hdk_tmd3702_0.json │ │ ├── waipio_irq.json │ │ ├── waipio_lps22hh_0.json │ │ ├── waipio_lsm6dso_0.json │ │ ├── waipio_lsm6dst_0.json │ │ ├── waipio_lsm6dst_1.json │ │ ├── waipio_mtp_ak991x_0.json │ │ ├── waipio_mtp_lsm6dst_0.json │ │ ├── waipio_mtp_lsm6dst_1.json │ │ ├── waipio_power_0.json │ │ ├── waipio_qrd_ak991x_0.json │ │ ├── waipio_qrd_lps22hh_0.json │ │ ├── waipio_qrd_lsm6dst_0.json │ │ ├── waipio_qrd_sx932x_0.json │ │ ├── waipio_qrd_tmd3702_0.json │ │ ├── waipio_shtw2_0.json │ │ ├── waipio_stk3x3x_0.json │ │ ├── waipio_sx932x_0.json │ │ ├── waipio_tmd3702_0.json │ │ ├── waipio_vertigo_ak991x_0.json │ │ ├── waipio_vertigo_lsm6dst_0.json │ │ └── waipio_vertigo_lsm6dst_1.json ├── tftp │ └── Android.mk └── time-services │ ├── Android.bp │ └── time-services │ └── time_genoff.h ├── hidl └── Android.bp ├── misc ├── emptyfile ├── emptyfile.zip └── libpolyreg │ ├── Android.bp │ ├── include │ └── libpolyreg │ │ └── polyreg.h │ └── polyreg.c ├── overlay ├── WifiResCommon │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── bools.xml │ │ ├── integers.xml │ │ └── strings.xml ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ ├── CarrierConfig │ │ └── res │ │ │ └── xml │ │ │ └── vendor.xml │ └── Settings │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ └── Telephony │ └── res │ └── values │ └── config.xml ├── rootdir ├── Android.bp ├── Android.mk ├── init.recovery.common.rc ├── system │ ├── etc │ │ └── nfcee_access.xml │ └── system_ext │ │ └── etc │ │ └── permissions │ │ ├── ims_permissions.xml │ │ ├── privapp-permissions-ims.xml │ │ └── qcrilhook.xml └── vendor │ ├── bin │ ├── init.qcom.adspstart.sh │ ├── init.qcom.cdspstart.sh │ ├── init.qcom.ipastart.sh │ ├── init.qcom.slpistart.sh │ └── rdclean.sh │ └── etc │ ├── apns-conf.xml │ ├── audio_effects.xml │ ├── data │ ├── dsi_config.xml │ ├── netmgr_config.xml │ └── qmi_config.xml │ ├── gpfspath_oem_config.xml │ ├── gps.conf │ ├── init │ ├── adb_tcp.rc │ ├── adpl.rc │ ├── adsp-sensorspdr.rc │ ├── adsprpcd.rc │ ├── adspstart.rc │ ├── android.hardware.keymaster@4.0-service-qti.rc │ ├── android.hardware.keymaster@4.1-service-qti.rc │ ├── android.hardware.security.keymint-service-qti.rc │ ├── atfwd.rc │ ├── audiopd.rc │ ├── authsecret.rc │ ├── bindmount-apps.rc │ ├── bindmount-misc.rc │ ├── cdsprpcd.rc │ ├── cdspstart.rc │ ├── cnd.rc │ ├── cnss-daemon.rc │ ├── dataqti.rc │ ├── dpmQmiMgr.rc │ ├── dpmd.rc │ ├── hvdcp_opti.rc │ ├── hw │ │ └── init.common.rc │ ├── ims_rtp_daemon.rc │ ├── imsdaemon.rc │ ├── imsdatadaemon.rc │ ├── imsqmidaemon.rc │ ├── imsrcsd.rc │ ├── init.sony-modem-switcher.rc │ ├── init.usb.rc │ ├── ipastart.rc │ ├── irsc_util.rc │ ├── mdm_helper.rc │ ├── mdmmgr.rc │ ├── mlog_qmi.rc │ ├── msm_irq.rc │ ├── mstatdaemon.rc │ ├── netmgrd.rc │ ├── pd_mapper.rc │ ├── per-proxy.rc │ ├── per-service.rc │ ├── port-bridge.rc │ ├── qcrild.rc │ ├── qcrild2.rc │ ├── qesdk-manager.rc │ ├── qmipriod.rc │ ├── qrtr.rc │ ├── qseecom.rc │ ├── rdclean.rc │ ├── rmt_storage.rc │ ├── sct_service.rc │ ├── sdsp-sensorspdr.rc │ ├── sensors.rc │ ├── shsusrd.rc │ ├── slpistart.rc │ ├── spu.rc │ ├── sscrpcd.rc │ ├── ta_qmi.rc │ ├── tad.rc │ ├── tad_legacy.rc │ ├── tftp_server.rc │ ├── vendor.qti.camera.provider-service_64.rc │ ├── vendor.qti.camera.provider@2.7-aon-service_64.rc │ ├── vendor.qti.camera.provider@2.7-service_64.rc │ ├── vendor.qti.diag.rc │ ├── vendor.qti.hardware.dsp@1.0-service.rc │ ├── vendor.qti.hardware.qseecom@1.0-service.rc │ ├── vendor.qti.media.c2@1.0-service.rc │ ├── vendor.sensors.qesdk.rc │ ├── vendor.somc.hardware.miscta@1.0-service.rc │ └── vendor.somc.hardware.modemswitcher@1.0-service.rc │ ├── modem-config │ ├── S11.3 │ │ └── modem.conf │ ├── S11.5 │ │ └── modem.conf │ ├── S12.1 │ │ └── modem.conf │ ├── S122.1 │ │ └── modem.conf │ ├── S125.1 │ │ └── modem.conf │ ├── S125.2 │ │ └── modem.conf │ ├── S132.1 │ │ └── modem.conf │ ├── S136.1 │ │ └── modem.conf │ ├── S137.1 │ │ └── modem.conf │ ├── S140.1 │ │ └── modem.conf │ ├── S140.2 │ │ └── modem.conf │ ├── S140.3 │ │ └── modem.conf │ ├── S174.1 │ │ └── modem.conf │ ├── S174.2 │ │ └── modem.conf │ ├── S175.1 │ │ └── modem.conf │ ├── S176.1 │ │ └── modem.conf │ ├── S180.1 │ │ └── modem.conf │ ├── S181.1 │ │ └── modem.conf │ ├── S187.1 │ │ └── modem.conf │ ├── S187.5 │ │ └── modem.conf │ ├── S187.7 │ │ └── modem.conf │ ├── S205.1 │ │ └── modem.conf │ ├── S206.1 │ │ └── modem.conf │ ├── S215.1 │ │ └── modem.conf │ ├── S218.1 │ │ └── modem.conf │ ├── S219.1 │ │ └── modem.conf │ ├── S22.1 │ │ └── modem.conf │ ├── S22.2 │ │ └── modem.conf │ ├── S22.3 │ │ └── modem.conf │ ├── S22.4 │ │ └── modem.conf │ ├── S22.5 │ │ └── modem.conf │ ├── S221.4 │ │ └── modem.conf │ ├── S221.5 │ │ └── modem.conf │ ├── S230.1 │ │ └── modem.conf │ ├── S236.1 │ │ └── modem.conf │ ├── S236.2 │ │ └── modem.conf │ ├── S237.3 │ │ └── modem.conf │ ├── S238.1 │ │ └── modem.conf │ ├── S238.2 │ │ └── modem.conf │ ├── S249.1 │ │ └── modem.conf │ ├── S255.1 │ │ └── modem.conf │ ├── S256.1 │ │ └── modem.conf │ ├── S256.2 │ │ └── modem.conf │ ├── S257.1 │ │ └── modem.conf │ ├── S257.2 │ │ └── modem.conf │ ├── S260.1 │ │ └── modem.conf │ ├── S261.1 │ │ └── modem.conf │ ├── S273.1 │ │ └── modem.conf │ ├── S284.1 │ │ └── modem.conf │ ├── S284.2 │ │ └── modem.conf │ ├── S284.3 │ │ └── modem.conf │ ├── S284.4 │ │ └── modem.conf │ ├── S284.5 │ │ └── modem.conf │ ├── S285.1 │ │ └── modem.conf │ ├── S285.2 │ │ └── modem.conf │ ├── S285.3 │ │ └── modem.conf │ ├── S31.1 │ │ └── modem.conf │ ├── S32.1 │ │ └── modem.conf │ ├── S33.1 │ │ └── modem.conf │ ├── S344.1 │ │ └── modem.conf │ ├── S346.1 │ │ └── modem.conf │ ├── S508.1 │ │ └── modem.conf │ ├── S508.2 │ │ └── modem.conf │ ├── S54.1 │ │ └── modem.conf │ ├── S57.1 │ │ └── modem.conf │ ├── S58.1 │ │ └── modem.conf │ ├── S622.2 │ │ └── modem.conf │ ├── S622.3 │ │ └── modem.conf │ ├── S622.4 │ │ └── modem.conf │ ├── S676.1 │ │ └── modem.conf │ ├── S7.2 │ │ └── modem.conf │ ├── S70.1 │ │ └── modem.conf │ ├── S75.1 │ │ └── modem.conf │ ├── S77.1 │ │ └── modem.conf │ ├── S77.2 │ │ └── modem.conf │ ├── S77.3 │ │ └── modem.conf │ ├── S8604.1 │ │ └── modem.conf │ ├── S8626.2 │ │ └── modem.conf │ ├── S8626.4 │ │ └── modem.conf │ ├── S8626.7 │ │ └── modem.conf │ ├── S8655.1 │ │ └── modem.conf │ ├── S8655.4 │ │ └── modem.conf │ ├── S8655.5 │ │ └── modem.conf │ ├── S8655.6 │ │ └── modem.conf │ ├── S8655.7 │ │ └── modem.conf │ ├── S8657.1 │ │ └── modem.conf │ ├── S8752.1 │ │ └── modem.conf │ ├── S8752.2 │ │ └── modem.conf │ ├── S8752.3 │ │ └── modem.conf │ ├── S8752.5 │ │ └── modem.conf │ ├── S8752.6 │ │ └── modem.conf │ ├── S8760.1 │ │ └── modem.conf │ ├── S8760.2 │ │ └── modem.conf │ ├── S8960.1 │ │ └── modem.conf │ ├── S8960.2 │ │ └── modem.conf │ ├── S9087.1 │ │ └── modem.conf │ ├── S9093.1 │ │ └── modem.conf │ ├── S9161.1 │ │ └── modem.conf │ ├── S9162.2 │ │ └── modem.conf │ ├── S9162.3 │ │ └── modem.conf │ ├── S9999.9 │ │ └── modem.conf │ └── anysim │ │ └── modem.conf │ ├── permissions │ ├── enable_deprecated_beam.xml │ └── privapp-permissions-extendedsettings.xml │ ├── public.libraries.txt │ ├── qmi_fw.conf │ ├── sec_config │ ├── seccomp_policy │ ├── codec2.vendor.base-arm64.policy │ ├── imsrtp.policy │ ├── mediacodec.policy │ ├── modemManager.policy │ ├── qcrilnr@2.0.policy │ ├── qesdk.policy │ ├── sensors-qesdk.policy │ └── vendor.qti.hardware.dsp.policy │ ├── sensors │ ├── hals.conf │ └── sns_reg_config │ └── sysconfig │ └── component-overrides.xml ├── sony_build_symlinks.mk ├── sony_clear_vars.mk └── vintf ├── 4.19 ├── android.hardware.radio.config.xml ├── android.hardware.secure_element_ds.xml ├── android.hardware.secure_element_ss.xml ├── android.hw.qcradio_ds.xml ├── android.hw.qcradio_ss.xml ├── framework_compatibility_matrix.xml ├── manifest.xml ├── vendor.hw.dataservices.xml ├── vendor.hw.imsservices.xml ├── vendor.hw.qtiradio_ds.xml ├── vendor.hw.qtiradio_ss.xml ├── vendor.hw.radio.ims.xml ├── vendor.hw.radio.internal.xml ├── vendor.hw.radio.uceservice.xml ├── vendor.hw.radio_ds.xml ├── vendor.hw.radio_ss.xml └── vendor.qti.qesdhal.xml ├── 5.10 ├── android.hardware.radio.config.xml ├── android.hardware.secure_element_ds.xml ├── android.hardware.secure_element_ss.xml ├── android.hw.qcradio_ds.xml ├── android.hw.qcradio_ss.xml ├── framework_compatibility_matrix.xml ├── manifest.xml ├── vendor.hw.dataservices.xml ├── vendor.hw.imsservices.xml ├── vendor.hw.qtiradio_ds.xml ├── vendor.hw.qtiradio_ss.xml ├── vendor.hw.radio.ims.xml ├── vendor.hw.radio.internal.xml ├── vendor.hw.radio.uceservice.xml ├── vendor.hw.radio_ds.xml ├── vendor.hw.radio_ss.xml └── vendor.qti.qesdhal.xml ├── 5.15 ├── android.hardware.radio.config.xml ├── android.hardware.secure_element_ds.xml ├── android.hardware.secure_element_ss.xml ├── android.hw.qcradio_ds.xml ├── android.hw.qcradio_ss.xml ├── framework_compatibility_matrix.xml ├── manifest.xml ├── vendor.hw.dataservices.xml ├── vendor.hw.imsservices.xml ├── vendor.hw.qtiradio_ds.xml ├── vendor.hw.qtiradio_ss.xml ├── vendor.hw.radio.ims.xml ├── vendor.hw.radio.internal.xml ├── vendor.hw.radio.uceservice.xml ├── vendor.hw.radio_ds.xml ├── vendor.hw.radio_ss.xml └── vendor.qti.qesdhal.xml ├── 5.4 ├── android.hardware.radio.config.xml ├── android.hardware.secure_element_ds.xml ├── android.hardware.secure_element_ss.xml ├── android.hw.qcradio_ds.xml ├── android.hw.qcradio_ss.xml ├── framework_compatibility_matrix.xml ├── manifest.xml ├── vendor.hw.dataservices.xml ├── vendor.hw.imsservices.xml ├── vendor.hw.qtiradio_ds.xml ├── vendor.hw.qtiradio_ss.xml ├── vendor.hw.radio.ims.xml ├── vendor.hw.radio.internal.xml ├── vendor.hw.radio.uceservice.xml ├── vendor.hw.radio_ds.xml ├── vendor.hw.radio_ss.xml └── vendor.qti.qesdhal.xml ├── android.hardware.camera.provider.xml ├── compatibility_matrix.xml ├── vendor.qti.camera.provider-aidl.xml ├── vendor.qti.camera.provider@2.7-aon.xml ├── vendor.qti.camera.provider@2.7.xml ├── vendor.qti.hardware.audio.xml ├── vendor.qti.hardware.dsp.xml ├── vendor.somc.modem.xml └── venodr.qti.media.c2.xml /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace {} 2 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/Android.mk -------------------------------------------------------------------------------- /CommonConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/CommonConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/README.md -------------------------------------------------------------------------------- /common-binds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-binds.mk -------------------------------------------------------------------------------- /common-gsi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-gsi.mk -------------------------------------------------------------------------------- /common-init.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-init.mk -------------------------------------------------------------------------------- /common-odm-camx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-odm-camx.mk -------------------------------------------------------------------------------- /common-odm-mmcam.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-odm-mmcam.mk -------------------------------------------------------------------------------- /common-odm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-odm.mk -------------------------------------------------------------------------------- /common-packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-packages.mk -------------------------------------------------------------------------------- /common-perm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-perm.mk -------------------------------------------------------------------------------- /common-prop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-prop.mk -------------------------------------------------------------------------------- /common-sanitizer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-sanitizer.mk -------------------------------------------------------------------------------- /common-treble.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common-treble.mk -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/common.mk -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/config.fs -------------------------------------------------------------------------------- /hardware/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/Android.mk -------------------------------------------------------------------------------- /hardware/adreno/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/adreno/Android.mk -------------------------------------------------------------------------------- /hardware/adsp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/adsp/Android.mk -------------------------------------------------------------------------------- /hardware/camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/camera/Android.mk -------------------------------------------------------------------------------- /hardware/firmware/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/firmware/Android.mk -------------------------------------------------------------------------------- /hardware/health/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/.clang-format -------------------------------------------------------------------------------- /hardware/health/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/Android.bp -------------------------------------------------------------------------------- /hardware/health/CycleCountBackupRestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/CycleCountBackupRestore.cpp -------------------------------------------------------------------------------- /hardware/health/CycleCountBackupRestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/CycleCountBackupRestore.h -------------------------------------------------------------------------------- /hardware/health/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/LICENSE.txt -------------------------------------------------------------------------------- /hardware/health/LearnedCapacityBackupRestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/LearnedCapacityBackupRestore.cpp -------------------------------------------------------------------------------- /hardware/health/LearnedCapacityBackupRestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/LearnedCapacityBackupRestore.h -------------------------------------------------------------------------------- /hardware/health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/README.md -------------------------------------------------------------------------------- /hardware/health/android.hardware.health-service.sony.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/android.hardware.health-service.sony.rc -------------------------------------------------------------------------------- /hardware/health/android.hardware.health-service.sony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/android.hardware.health-service.sony.xml -------------------------------------------------------------------------------- /hardware/health/android.hardware.health-service.sony_recovery.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/android.hardware.health-service.sony_recovery.rc -------------------------------------------------------------------------------- /hardware/health/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/health/main.cpp -------------------------------------------------------------------------------- /hardware/liblights/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/liblights/Android.mk -------------------------------------------------------------------------------- /hardware/liblights/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/liblights/Light.cpp -------------------------------------------------------------------------------- /hardware/liblights/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/liblights/Light.h -------------------------------------------------------------------------------- /hardware/liblights/android.hardware.light@2.0-service.sony.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/liblights/android.hardware.light@2.0-service.sony.rc -------------------------------------------------------------------------------- /hardware/liblights/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/liblights/service.cpp -------------------------------------------------------------------------------- /hardware/librqbalance/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/librqbalance/Android.mk -------------------------------------------------------------------------------- /hardware/librqbalance/rqbalance_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/librqbalance/rqbalance_ctl.c -------------------------------------------------------------------------------- /hardware/odm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/odm/Android.mk -------------------------------------------------------------------------------- /hardware/power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/Android.mk -------------------------------------------------------------------------------- /hardware/power/Hints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/Hints.cpp -------------------------------------------------------------------------------- /hardware/power/Hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/Hints.h -------------------------------------------------------------------------------- /hardware/power/Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/Power.cpp -------------------------------------------------------------------------------- /hardware/power/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/Power.h -------------------------------------------------------------------------------- /hardware/power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/README.md -------------------------------------------------------------------------------- /hardware/power/RQBalanceHALExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/RQBalanceHALExt.cpp -------------------------------------------------------------------------------- /hardware/power/RQBalanceHALExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/RQBalanceHALExt.h -------------------------------------------------------------------------------- /hardware/power/android.hardware.power@1.3-service.sony.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/android.hardware.power@1.3-service.sony.rc -------------------------------------------------------------------------------- /hardware/power/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/common.h -------------------------------------------------------------------------------- /hardware/power/expatparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/expatparser.c -------------------------------------------------------------------------------- /hardware/power/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/main.cpp -------------------------------------------------------------------------------- /hardware/power/power-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/power-helper.c -------------------------------------------------------------------------------- /hardware/power/power-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/power/power-helper.h -------------------------------------------------------------------------------- /hardware/qca_cld3/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/qca_cld3/Android.mk -------------------------------------------------------------------------------- /hardware/qcom/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/qcom/Android.mk -------------------------------------------------------------------------------- /hardware/qcom/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/qcom/utils.mk -------------------------------------------------------------------------------- /hardware/ssc/common/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/common/ak991x_dri_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/ak991x_dri_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/bma2x2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/bma2x2_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/bme680_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/bme680_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/bmg160_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/bmg160_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/bmp285_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/bmp285_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/bmp380_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/bmp380_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/bu52053nvx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/bu52053nvx_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/cm3526_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/cm3526_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/common/dps368_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/dps368_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/lsm6dsm_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/lsm6dsm_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/lsm6dsm_0_16g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/lsm6dsm_0_16g.json -------------------------------------------------------------------------------- /hardware/ssc/common/lsm6dso_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/lsm6dso_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/lsm6dso_0_16g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/lsm6dso_0_16g.json -------------------------------------------------------------------------------- /hardware/ssc/common/qsh_ble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/qsh_ble.json -------------------------------------------------------------------------------- /hardware/ssc/common/qsh_camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/qsh_camera.json -------------------------------------------------------------------------------- /hardware/ssc/common/shtw2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/shtw2_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_amd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_amd.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_amd_sw_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_amd_sw_disabled.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_amd_sw_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_amd_sw_enabled.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_aont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_aont.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_basic_gestures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_basic_gestures.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_bring_to_ear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_bring_to_ear.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v1_0_amd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v1_0_amd.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v1_0_ttw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v1_0_ttw.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v2_0_walk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v2_0_walk.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v2_walk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v2_walk.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v3_0_walk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v3_0_walk.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v3_1_walk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v3_1_walk.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v3_walk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v3_walk.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v4_0_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v4_0_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v4_0_te_cd_regs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v4_0_te_cd_regs.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v5.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_ccd_v5_0_te_cd_regs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_ccd_v5_0_te_cd_regs.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_cm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_cm.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_dae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_dae.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_device_orient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_device_orient.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_diag_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_diag_filter.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_direct_channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_direct_channel.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_distance_bound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_distance_bound.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_dpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_dpc.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_facing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_facing.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_fmv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_fmv.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_fmv_legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_fmv_legacy.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_geomag_rv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_geomag_rv.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_gyro_cal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_gyro_cal.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_heart_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_heart_rate.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_mag_cal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_mag_cal.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_mag_cal_legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_mag_cal_legacy.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_multishake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_multishake.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_offbody_detect_phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_offbody_detect_phone.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_pedometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_pedometer.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_rmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_rmd.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_rotv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_rotv.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_smd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_smd.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_tilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_tilt.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_tilt_sw_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_tilt_sw_disabled.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_tilt_sw_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_tilt_sw_enabled.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_tilt_to_wake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_tilt_to_wake.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_transport_ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_transport_ppe.json -------------------------------------------------------------------------------- /hardware/ssc/common/sns_wrist_pedo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/sns_wrist_pedo.json -------------------------------------------------------------------------------- /hardware/ssc/common/stk3x3x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/stk3x3x_0.json -------------------------------------------------------------------------------- /hardware/ssc/common/tmd2725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/tmd2725.json -------------------------------------------------------------------------------- /hardware/ssc/common/tmd3725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/tmd3725.json -------------------------------------------------------------------------------- /hardware/ssc/common/tmx4903.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/tmx4903.json -------------------------------------------------------------------------------- /hardware/ssc/common/wigig_sensing_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/common/wigig_sensing_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_bu52053nvx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_bu52053nvx_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_dynamic_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_dynamic_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_dynamic_sensors_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_dynamic_sensors_template.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_fcal_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_fcal_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_hdk_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_hdk_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_hdk_lsm6dsv_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_hdk_lsm6dsv_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_hdk_lsm6dsv_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_hdk_lsm6dsv_1.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_hhg_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_hhg_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_hhg_lsm6dsv_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_hhg_lsm6dsv_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_irq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_irq.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_lps22df_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_lps22df_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_lsm6dsv_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_lsm6dsv_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_lsm6dsv_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_lsm6dsv_1.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_mtp_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_mtp_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_mtp_lsm6dsv_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_mtp_lsm6dsv_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_mtp_lsm6dsv_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_mtp_lsm6dsv_1.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_power_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_power_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_qrd_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_qrd_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_qrd_lsm6dsv_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_qrd_lsm6dsv_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_qrd_tmd2755_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_qrd_tmd2755_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_qsh_ble_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_qsh_ble_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_sht4x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_sht4x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_tmd2755_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_tmd2755_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_vertigo_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_vertigo_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_vertigo_lsm6dsv_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_vertigo_lsm6dsv_0.json -------------------------------------------------------------------------------- /hardware/ssc/kailua/kailua_vertigo_lsm6dsv_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kailua/kailua_vertigo_lsm6dsv_1.json -------------------------------------------------------------------------------- /hardware/ssc/kona/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_amd_sw_disabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_amd_sw_disabled.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_bmp380_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_bmp380_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_bu52053nvx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_bu52053nvx_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_dynamic_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_dynamic_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_hdk_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_hdk_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_hdk_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_hdk_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_hdk_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_hdk_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_irq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_irq.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_lps22hh_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_lps22hh_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_lsm6dsm_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_lsm6dsm_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_power_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_power_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_qrd_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_qrd_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_qrd_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_qrd_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_qrd_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_qrd_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_qrd_tmd2725_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_qrd_tmd2725_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_shtw2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_shtw2_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_somc_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_somc_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_stk3x3x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_stk3x3x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_svr_bma4_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_svr_bma4_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_svr_bmg160_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_svr_bmg160_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_svr_icm4x6xx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_svr_icm4x6xx_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_svr_rpr0521rs_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_svr_rpr0521rs_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/kona/kona_tmd2725_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/kona/kona_tmd2725_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_bmp380_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_bmp380_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_bu52053nvx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_bu52053nvx_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_dynamic_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_dynamic_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_hdk_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_hdk_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_hdk_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_hdk_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_hdk_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_hdk_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_hdk_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_hdk_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_hdk_tmd2725_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_hdk_tmd2725_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_irq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_irq.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_lps22hh_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_lps22hh_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_lsm6dso_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_lsm6dso_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_mtp_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_mtp_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_mtp_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_mtp_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_mtp_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_mtp_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_power_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_power_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_qrd_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_qrd_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_qrd_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_qrd_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_qrd_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_qrd_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_qrd_tmd3702_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_qrd_tmd3702_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_shtw2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_shtw2_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_stk3x3x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_stk3x3x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_tmd3702_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_tmd3702_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_v2_fcal_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_v2_fcal_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_vertigo_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_vertigo_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_vertigo_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_vertigo_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/lahaina/lahaina_vertigo_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/lahaina/lahaina_vertigo_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_bmp285_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_bmp285_0.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_bu52053nvx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_bu52053nvx_0.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_lsm6dso_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_lsm6dso_0.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_qrd_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_qrd_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_qrd_lsm6dso_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_qrd_lsm6dso_0.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_qrd_tmd2725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_qrd_tmd2725.json -------------------------------------------------------------------------------- /hardware/ssc/nicobar/nicobar_tmd2725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/nicobar/nicobar_tmd2725.json -------------------------------------------------------------------------------- /hardware/ssc/sdm630/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/sdm630/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/sdm630/sdm630_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/sdm630/sdm630_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/sdm630/sdm636_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/sdm630/sdm636_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/Android.bp -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_bmp380_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_bmp380_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_bu52053nvx_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_bu52053nvx_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_default_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_default_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_dynamic_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_dynamic_sensors.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_hdk_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_hdk_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_hdk_lps22hh_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_hdk_lps22hh_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_hdk_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_hdk_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_hdk_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_hdk_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_hdk_tmd3702_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_hdk_tmd3702_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_irq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_irq.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_lps22hh_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_lps22hh_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_lsm6dso_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_lsm6dso_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_mtp_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_mtp_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_mtp_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_mtp_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_mtp_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_mtp_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_power_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_power_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_qrd_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_qrd_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_qrd_lps22hh_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_qrd_lps22hh_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_qrd_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_qrd_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_qrd_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_qrd_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_qrd_tmd3702_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_qrd_tmd3702_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_shtw2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_shtw2_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_stk3x3x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_stk3x3x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_sx932x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_sx932x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_tmd3702_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_tmd3702_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_vertigo_ak991x_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_vertigo_ak991x_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_vertigo_lsm6dst_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_vertigo_lsm6dst_0.json -------------------------------------------------------------------------------- /hardware/ssc/waipio/waipio_vertigo_lsm6dst_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/ssc/waipio/waipio_vertigo_lsm6dst_1.json -------------------------------------------------------------------------------- /hardware/tftp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/tftp/Android.mk -------------------------------------------------------------------------------- /hardware/time-services/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/time-services/Android.bp -------------------------------------------------------------------------------- /hardware/time-services/time-services/time_genoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hardware/time-services/time-services/time_genoff.h -------------------------------------------------------------------------------- /hidl/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/hidl/Android.bp -------------------------------------------------------------------------------- /misc/emptyfile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /misc/emptyfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/misc/emptyfile.zip -------------------------------------------------------------------------------- /misc/libpolyreg/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/misc/libpolyreg/Android.bp -------------------------------------------------------------------------------- /misc/libpolyreg/include/libpolyreg/polyreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/misc/libpolyreg/include/libpolyreg/polyreg.h -------------------------------------------------------------------------------- /misc/libpolyreg/polyreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/misc/libpolyreg/polyreg.c -------------------------------------------------------------------------------- /overlay/WifiResCommon/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/WifiResCommon/Android.bp -------------------------------------------------------------------------------- /overlay/WifiResCommon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/WifiResCommon/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/WifiResCommon/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/WifiResCommon/res/values/bools.xml -------------------------------------------------------------------------------- /overlay/WifiResCommon/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/WifiResCommon/res/values/integers.xml -------------------------------------------------------------------------------- /overlay/WifiResCommon/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/WifiResCommon/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /rootdir/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/Android.bp -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/init.recovery.common.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/init.recovery.common.rc -------------------------------------------------------------------------------- /rootdir/system/etc/nfcee_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/system/etc/nfcee_access.xml -------------------------------------------------------------------------------- /rootdir/system/system_ext/etc/permissions/ims_permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/system/system_ext/etc/permissions/ims_permissions.xml -------------------------------------------------------------------------------- /rootdir/system/system_ext/etc/permissions/privapp-permissions-ims.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/system/system_ext/etc/permissions/privapp-permissions-ims.xml -------------------------------------------------------------------------------- /rootdir/system/system_ext/etc/permissions/qcrilhook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/system/system_ext/etc/permissions/qcrilhook.xml -------------------------------------------------------------------------------- /rootdir/vendor/bin/init.qcom.adspstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/bin/init.qcom.adspstart.sh -------------------------------------------------------------------------------- /rootdir/vendor/bin/init.qcom.cdspstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/bin/init.qcom.cdspstart.sh -------------------------------------------------------------------------------- /rootdir/vendor/bin/init.qcom.ipastart.sh: -------------------------------------------------------------------------------- 1 | #!/vendor/bin/sh 2 | 3 | echo 1 > /dev/ipa 4 | -------------------------------------------------------------------------------- /rootdir/vendor/bin/init.qcom.slpistart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/bin/init.qcom.slpistart.sh -------------------------------------------------------------------------------- /rootdir/vendor/bin/rdclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/bin/rdclean.sh -------------------------------------------------------------------------------- /rootdir/vendor/etc/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/apns-conf.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/audio_effects.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/data/dsi_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/data/dsi_config.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/data/netmgr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/data/netmgr_config.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/data/qmi_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/data/qmi_config.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/gpfspath_oem_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/gpfspath_oem_config.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/gps.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/adb_tcp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/adb_tcp.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/adpl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/adpl.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/adsp-sensorspdr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/adsp-sensorspdr.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/adsprpcd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/adsprpcd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/adspstart.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/adspstart.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/android.hardware.keymaster@4.0-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/android.hardware.keymaster@4.0-service-qti.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/android.hardware.keymaster@4.1-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/android.hardware.keymaster@4.1-service-qti.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/android.hardware.security.keymint-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/android.hardware.security.keymint-service-qti.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/atfwd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/atfwd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/audiopd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/audiopd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/authsecret.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/authsecret.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/bindmount-apps.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/bindmount-apps.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/bindmount-misc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/bindmount-misc.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/cdsprpcd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/cdsprpcd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/cdspstart.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/cdspstart.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/cnd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/cnd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/cnss-daemon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/cnss-daemon.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/dataqti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/dataqti.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/dpmQmiMgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/dpmQmiMgr.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/dpmd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/dpmd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/hvdcp_opti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/hvdcp_opti.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/hw/init.common.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/hw/init.common.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/ims_rtp_daemon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/ims_rtp_daemon.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/imsdaemon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/imsdaemon.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/imsdatadaemon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/imsdatadaemon.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/imsqmidaemon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/imsqmidaemon.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/imsrcsd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/imsrcsd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/init.sony-modem-switcher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/init.sony-modem-switcher.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/init.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/init.usb.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/ipastart.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/ipastart.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/irsc_util.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/irsc_util.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/mdm_helper.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/mdm_helper.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/mdmmgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/mdmmgr.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/mlog_qmi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/mlog_qmi.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/msm_irq.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/msm_irq.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/mstatdaemon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/mstatdaemon.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/netmgrd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/netmgrd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/pd_mapper.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/pd_mapper.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/per-proxy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/per-proxy.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/per-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/per-service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/port-bridge.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/port-bridge.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/qcrild.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/qcrild.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/qcrild2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/qcrild2.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/qesdk-manager.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/qesdk-manager.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/qmipriod.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/qmipriod.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/qrtr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/qrtr.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/qseecom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/qseecom.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/rdclean.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/rdclean.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/rmt_storage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/rmt_storage.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/sct_service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/sct_service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/sdsp-sensorspdr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/sdsp-sensorspdr.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/sensors.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/sensors.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/shsusrd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/shsusrd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/slpistart.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/slpistart.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/spu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/spu.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/sscrpcd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/sscrpcd.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/ta_qmi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/ta_qmi.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/tad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/tad.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/tad_legacy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/tad_legacy.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/tftp_server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/tftp_server.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.camera.provider-service_64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.camera.provider-service_64.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.camera.provider@2.7-aon-service_64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.camera.provider@2.7-aon-service_64.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.camera.provider@2.7-service_64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.camera.provider@2.7-service_64.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.diag.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.diag.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.hardware.dsp@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.hardware.dsp@1.0-service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.hardware.qseecom@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.hardware.qseecom@1.0-service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.qti.media.c2@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.qti.media.c2@1.0-service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.sensors.qesdk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.sensors.qesdk.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.somc.hardware.miscta@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.somc.hardware.miscta@1.0-service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/init/vendor.somc.hardware.modemswitcher@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/init/vendor.somc.hardware.modemswitcher@1.0-service.rc -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S11.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S11.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S11.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S11.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S12.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S12.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S122.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S122.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S125.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S125.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S125.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S125.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S132.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S132.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S136.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S136.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S137.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S137.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S140.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S140.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S140.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S140.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S140.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S140.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S174.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S174.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S174.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S174.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S175.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S175.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S176.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S176.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S180.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S180.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S181.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S181.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S187.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S187.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S187.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S187.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S187.7/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S187.7/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S205.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S205.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S206.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S206.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S215.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S215.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S218.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S218.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S219.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S219.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S22.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S22.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S22.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S22.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S22.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S22.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S22.4/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S22.4/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S22.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S22.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S221.4/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S221.4/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S221.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S221.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S230.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S230.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S236.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S236.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S236.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S236.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S237.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S237.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S238.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S238.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S238.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S238.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S249.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S249.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S255.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S255.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S256.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S256.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S256.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S256.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S257.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S257.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S257.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S257.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S260.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S260.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S261.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S261.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S273.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S273.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S284.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S284.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S284.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S284.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S284.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S284.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S284.4/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S284.4/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S284.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S284.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S285.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S285.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S285.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S285.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S285.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S285.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S31.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S31.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S32.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S32.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S33.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S33.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S344.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S344.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S346.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S346.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S508.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S508.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S508.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S508.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S54.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S54.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S57.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S57.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S58.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S58.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S622.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S622.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S622.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S622.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S622.4/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S622.4/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S676.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S676.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S7.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S7.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S70.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S70.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S75.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S75.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S77.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S77.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S77.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S77.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S77.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S77.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8604.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8604.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8626.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8626.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8626.4/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8626.4/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8626.7/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8626.7/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8655.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8655.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8655.4/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8655.4/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8655.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8655.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8655.6/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8655.6/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8655.7/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8655.7/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8657.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8657.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8752.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8752.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8752.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8752.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8752.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8752.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8752.5/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8752.5/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8752.6/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8752.6/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8760.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8760.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8760.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8760.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8960.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8960.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S8960.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S8960.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S9087.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S9087.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S9093.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S9093.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S9161.1/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S9161.1/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S9162.2/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S9162.2/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S9162.3/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S9162.3/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/S9999.9/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/S9999.9/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/modem-config/anysim/modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/modem-config/anysim/modem.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/permissions/enable_deprecated_beam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/permissions/enable_deprecated_beam.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/permissions/privapp-permissions-extendedsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/permissions/privapp-permissions-extendedsettings.xml -------------------------------------------------------------------------------- /rootdir/vendor/etc/public.libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/public.libraries.txt -------------------------------------------------------------------------------- /rootdir/vendor/etc/qmi_fw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/qmi_fw.conf -------------------------------------------------------------------------------- /rootdir/vendor/etc/sec_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/sec_config -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/codec2.vendor.base-arm64.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/codec2.vendor.base-arm64.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/imsrtp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/imsrtp.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/mediacodec.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/mediacodec.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/modemManager.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/modemManager.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/qcrilnr@2.0.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/qcrilnr@2.0.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/qesdk.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/qesdk.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/sensors-qesdk.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/sensors-qesdk.policy -------------------------------------------------------------------------------- /rootdir/vendor/etc/seccomp_policy/vendor.qti.hardware.dsp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/seccomp_policy/vendor.qti.hardware.dsp.policy -------------------------------------------------------------------------------- /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-common/HEAD/rootdir/vendor/etc/sensors/sns_reg_config -------------------------------------------------------------------------------- /rootdir/vendor/etc/sysconfig/component-overrides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/rootdir/vendor/etc/sysconfig/component-overrides.xml -------------------------------------------------------------------------------- /sony_build_symlinks.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/sony_build_symlinks.mk -------------------------------------------------------------------------------- /sony_clear_vars.mk: -------------------------------------------------------------------------------- 1 | SONY_SYMLINKS := 2 | 3 | include $(CLEAR_VARS) 4 | -------------------------------------------------------------------------------- /vintf/4.19/android.hardware.radio.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/android.hardware.radio.config.xml -------------------------------------------------------------------------------- /vintf/4.19/android.hardware.secure_element_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/android.hardware.secure_element_ds.xml -------------------------------------------------------------------------------- /vintf/4.19/android.hardware.secure_element_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/android.hardware.secure_element_ss.xml -------------------------------------------------------------------------------- /vintf/4.19/android.hw.qcradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/android.hw.qcradio_ds.xml -------------------------------------------------------------------------------- /vintf/4.19/android.hw.qcradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/android.hw.qcradio_ss.xml -------------------------------------------------------------------------------- /vintf/4.19/framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /vintf/4.19/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/manifest.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.dataservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.dataservices.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.imsservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.imsservices.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.qtiradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.qtiradio_ds.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.qtiradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.qtiradio_ss.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.radio.ims.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.radio.ims.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.radio.internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.radio.internal.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.radio.uceservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.radio.uceservice.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.radio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.radio_ds.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.hw.radio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.hw.radio_ss.xml -------------------------------------------------------------------------------- /vintf/4.19/vendor.qti.qesdhal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/4.19/vendor.qti.qesdhal.xml -------------------------------------------------------------------------------- /vintf/5.10/android.hardware.radio.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/android.hardware.radio.config.xml -------------------------------------------------------------------------------- /vintf/5.10/android.hardware.secure_element_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/android.hardware.secure_element_ds.xml -------------------------------------------------------------------------------- /vintf/5.10/android.hardware.secure_element_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/android.hardware.secure_element_ss.xml -------------------------------------------------------------------------------- /vintf/5.10/android.hw.qcradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/android.hw.qcradio_ds.xml -------------------------------------------------------------------------------- /vintf/5.10/android.hw.qcradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/android.hw.qcradio_ss.xml -------------------------------------------------------------------------------- /vintf/5.10/framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /vintf/5.10/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/manifest.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.dataservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.dataservices.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.imsservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.imsservices.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.qtiradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.qtiradio_ds.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.qtiradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.qtiradio_ss.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.radio.ims.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.radio.ims.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.radio.internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.radio.internal.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.radio.uceservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.radio.uceservice.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.radio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.radio_ds.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.hw.radio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.hw.radio_ss.xml -------------------------------------------------------------------------------- /vintf/5.10/vendor.qti.qesdhal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.10/vendor.qti.qesdhal.xml -------------------------------------------------------------------------------- /vintf/5.15/android.hardware.radio.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/android.hardware.radio.config.xml -------------------------------------------------------------------------------- /vintf/5.15/android.hardware.secure_element_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/android.hardware.secure_element_ds.xml -------------------------------------------------------------------------------- /vintf/5.15/android.hardware.secure_element_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/android.hardware.secure_element_ss.xml -------------------------------------------------------------------------------- /vintf/5.15/android.hw.qcradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/android.hw.qcradio_ds.xml -------------------------------------------------------------------------------- /vintf/5.15/android.hw.qcradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/android.hw.qcradio_ss.xml -------------------------------------------------------------------------------- /vintf/5.15/framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /vintf/5.15/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/manifest.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.dataservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.dataservices.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.imsservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.imsservices.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.qtiradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.qtiradio_ds.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.qtiradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.qtiradio_ss.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.radio.ims.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.radio.ims.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.radio.internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.radio.internal.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.radio.uceservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.radio.uceservice.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.radio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.radio_ds.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.hw.radio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.hw.radio_ss.xml -------------------------------------------------------------------------------- /vintf/5.15/vendor.qti.qesdhal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.15/vendor.qti.qesdhal.xml -------------------------------------------------------------------------------- /vintf/5.4/android.hardware.radio.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/android.hardware.radio.config.xml -------------------------------------------------------------------------------- /vintf/5.4/android.hardware.secure_element_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/android.hardware.secure_element_ds.xml -------------------------------------------------------------------------------- /vintf/5.4/android.hardware.secure_element_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/android.hardware.secure_element_ss.xml -------------------------------------------------------------------------------- /vintf/5.4/android.hw.qcradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/android.hw.qcradio_ds.xml -------------------------------------------------------------------------------- /vintf/5.4/android.hw.qcradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/android.hw.qcradio_ss.xml -------------------------------------------------------------------------------- /vintf/5.4/framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /vintf/5.4/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/manifest.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.dataservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.dataservices.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.imsservices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.imsservices.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.qtiradio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.qtiradio_ds.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.qtiradio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.qtiradio_ss.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.radio.ims.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.radio.ims.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.radio.internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.radio.internal.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.radio.uceservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.radio.uceservice.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.radio_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.radio_ds.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.hw.radio_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.hw.radio_ss.xml -------------------------------------------------------------------------------- /vintf/5.4/vendor.qti.qesdhal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/5.4/vendor.qti.qesdhal.xml -------------------------------------------------------------------------------- /vintf/android.hardware.camera.provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/android.hardware.camera.provider.xml -------------------------------------------------------------------------------- /vintf/compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/compatibility_matrix.xml -------------------------------------------------------------------------------- /vintf/vendor.qti.camera.provider-aidl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/vendor.qti.camera.provider-aidl.xml -------------------------------------------------------------------------------- /vintf/vendor.qti.camera.provider@2.7-aon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/vendor.qti.camera.provider@2.7-aon.xml -------------------------------------------------------------------------------- /vintf/vendor.qti.camera.provider@2.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/vendor.qti.camera.provider@2.7.xml -------------------------------------------------------------------------------- /vintf/vendor.qti.hardware.audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/vendor.qti.hardware.audio.xml -------------------------------------------------------------------------------- /vintf/vendor.qti.hardware.dsp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/vendor.qti.hardware.dsp.xml -------------------------------------------------------------------------------- /vintf/vendor.somc.modem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/vendor.somc.modem.xml -------------------------------------------------------------------------------- /vintf/venodr.qti.media.c2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/device-sony-common/HEAD/vintf/venodr.qti.media.c2.xml --------------------------------------------------------------------------------