├── system.prop ├── extract-files.sh ├── lineage.dependencies ├── setup-makefiles.sh ├── Android.mk ├── lineage_d802.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── proprietary-files.txt ├── device.mk ├── overlay └── frameworks │ └── base │ └── core │ └── res │ └── res │ └── values │ └── config.xml ├── d802.mk ├── configs └── sensor_def_d802.conf └── proprietary-blobs.txt /system.prop: -------------------------------------------------------------------------------- 1 | # 2 | # System.prop for D802 (LG G2) 3 | # 4 | 5 | # RIL 6 | telephony.lteOnGsmDevice=1 7 | ro.telephony.default_network=9 8 | -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | export VENDOR=lge 6 | export DEVICE=d802 7 | ./../../$VENDOR/g2-common/extract-files.sh $@ 8 | -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "repository": "android_device_lge_g2-common", 4 | "target_path": "device/lge/g2-common" 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | export VENDOR=lge 6 | export DEVICE=d802 7 | ./../../$VENDOR/g2-common/setup-makefiles.sh $@ 8 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | ifneq ($(filter d802,$(TARGET_DEVICE)),) 2 | 3 | LOCAL_PATH := $(call my-dir) 4 | 5 | include $(call all-makefiles-under,$(LOCAL_PATH)) 6 | endif 7 | -------------------------------------------------------------------------------- /lineage_d802.mk: -------------------------------------------------------------------------------- 1 | # Inherit some common Lineage stuff. 2 | $(call inherit-product, vendor/lineage/config/common_full_phone.mk) 3 | 4 | # Inherit device configuration 5 | $(call inherit-product, device/lge/d802/d802.mk) 6 | 7 | ## Device identifier. This must come after all inclusions 8 | PRODUCT_DEVICE := d802 9 | PRODUCT_NAME := lineage_d802 10 | PRODUCT_BRAND := LGE 11 | PRODUCT_MODEL := LG-D802 12 | PRODUCT_MANUFACTURER := lge 13 | 14 | PRODUCT_BUILD_PROP_OVERRIDES += \ 15 | PRIVATE_BUILD_DESC="g2_open_com-user 5.0.2 LRX22G 151061918340a release-keys" 16 | 17 | BUILD_FINGERPRINT := lge/g2_open_com/g2:5.0.2/LRX22G/151061918340a:user/release-keys 18 | -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2018-2019 The LineageOS Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | PRODUCT_MAKEFILES := \ 17 | $(LOCAL_DIR)/lineage_d802.mk 18 | 19 | COMMON_LUNCH_CHOICES := \ 20 | lineage_d802-user \ 21 | lineage_d802-userdebug \ 22 | lineage_d802-eng 23 | -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2013 The CyanogenMod Project 3 | # Copyright (C) 2017 The LineageOS Project 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | include device/lge/g2-common/BoardConfigCommon.mk 19 | 20 | TARGET_KERNEL_CONFIG := lineageos_d802_defconfig 21 | 22 | TARGET_OTA_ASSERT_DEVICE := d802,g2,galbi,d800 23 | 24 | G2_DTS_TARGET := msm8974-g2-open_com 25 | 26 | -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- 1 | # ADSP 2 | etc/firmware/adsp.b00:vendor/firmware/adsp.b00 3 | etc/firmware/adsp.b01:vendor/firmware/adsp.b01 4 | etc/firmware/adsp.b02:vendor/firmware/adsp.b02 5 | etc/firmware/adsp.b03:vendor/firmware/adsp.b03 6 | etc/firmware/adsp.b04:vendor/firmware/adsp.b04 7 | etc/firmware/adsp.b05:vendor/firmware/adsp.b05 8 | etc/firmware/adsp.b06:vendor/firmware/adsp.b06 9 | etc/firmware/adsp.b07:vendor/firmware/adsp.b07 10 | etc/firmware/adsp.b08:vendor/firmware/adsp.b08 11 | etc/firmware/adsp.b09:vendor/firmware/adsp.b09 12 | etc/firmware/adsp.b10:vendor/firmware/adsp.b10 13 | etc/firmware/adsp.b11:vendor/firmware/adsp.b11 14 | etc/firmware/adsp.b12:vendor/firmware/adsp.b12 15 | etc/firmware/adsp.mdt:vendor/firmware/adsp.mdt 16 | 17 | # NFC 18 | vendor/firmware/BCM20791B5_002.006.013.0011.0098_Generic_I2C_NCD_Signed_configdata.ncd 19 | vendor/firmware/BCM20791B5_002.006.013.0011.0098_Generic_PreI2C_NCD_Signed_configdata.ncd 20 | -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2011 The Android Open-Source Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | $(call inherit-product-if-exists, vendor/lge/d802/d802-vendor.mk) 18 | $(call inherit-product, device/lge/g2-common/g2.mk) 19 | 20 | ## overlays 21 | DEVICE_PACKAGE_OVERLAYS += $(LOCAL_PATH)/overlay 22 | 23 | # NFC 24 | $(call inherit-product, device/lge/g2-common/nfc.mk) 25 | 26 | # Sensors 27 | PRODUCT_COPY_FILES += \ 28 | $(LOCAL_PATH)/configs/sensor_def_d802.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensor_def_variable.conf 29 | -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 26 | LTE|WCDMA|GSM 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /d802.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2012 The Android Open Source Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | # Sample: This is where we'd set a backup provider if we had one 18 | # $(call inherit-product, device/sample/products/backup_overlay.mk) 19 | 20 | # Inherit from the common Open Source product configuration 21 | $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) 22 | 23 | PRODUCT_DEVICE := d802 24 | PRODUCT_NAME := full_d802 25 | PRODUCT_BRAND := LGE 26 | PRODUCT_MODEL := LG-D802 27 | PRODUCT_MANUFACTURER := lge 28 | PRODUCT_RESTRICT_VENDOR_FILES := false 29 | 30 | # Inherit from hardware-specific part of the product configuration 31 | $(call inherit-product, device/lge/d802/device.mk) 32 | -------------------------------------------------------------------------------- /configs/sensor_def_d802.conf: -------------------------------------------------------------------------------- 1 | # 2 | # File: sensor_def_g2_open_com.conf 3 | # 4 | # Tihs file contains default sensor registry values for LGE development 5 | # Model platforms. 6 | # 7 | # Copyright (c) 2012-2013 by LGE, Incorporated. 8 | # LGE Proprietary 9 | 10 | 11 | # File format: 12 | # 13 | # Lines starting with "#" are comments and ignored. 14 | # 15 | # File metadata uses this format: 16 | # :key value1 value2 17 | # 18 | # The following keys are defined: 19 | # - "version" : value1 is non-zero positive version number of the file. This 20 | # number will be stored in the sensors registry. It should be equal to the 21 | # largest version of any item. It will be saved in the sensors registry for 22 | # later use when initializing values. See the item format below. 23 | # This value should only be specified once in the file. 24 | # 25 | # - "hardware" : The value1 will be compared to the "Hardware" string from 26 | # /proc/cpuinfo. 27 | # Items will only be used as default values in the registry if the hardware 28 | # string value is a substring of the /proc/cpuinfo string. 29 | # This metadata key can be used more than once, so that one file can support 30 | # more than one type of hardware. 31 | # The value may be NULL, indicating common item values for all hardware. 32 | # 33 | # - "platform" : Similar to the "hardware" key, but this string will need to 34 | # match the text of either /sys/devices/soc0/hw_platform or 35 | # /sys/devices/soc0/platform_subtype. 36 | # 37 | # - "property" : value1 is the Android system property key, and value2 is 38 | # the desired property value. If the system property value matches the 39 | # desired property value, then the following items will be applied. 40 | # This metadata key can be used more than once, in which case the new 41 | # property value overrides the old. 42 | # value1 and 2 may be NULL, indicating common item values for all properties. 43 | # ex) 44 | # H/W Board's revision - property ro.revision 45 | # Target product - property ro.product.name 46 | # 47 | # Registry items are in lines with the following format: 48 | # 49 | # Where: 50 | # itemID is the numeric item ID defined in sns_reg_api_v02.h 51 | # 52 | # "value" is the numeric value of the item. 53 | # 54 | # "version" is a non-zero version of the item value. 55 | # The version field will be compared against the previous saved 56 | # value in the sensors registry. If this value is greater than the 57 | # saved value, the default will be applied. Otherwise, the default 58 | # will be skipped. 59 | # 60 | # Registry item values will only be applied if the hardware, platform, and 61 | # property values match for the current hardware configuration. 62 | # 63 | # The numeric fields are parsed with the strtoull function, base 0. 64 | # 65 | 66 | :version 0x00000002 67 | 68 | ######################################################################## 69 | ### g2_open_com 70 | ######################################################################## 71 | :property 72 | 73 | ## Orientation of sensors 74 | #---------------------------------- 75 | # accelerometer x/y/z of AXIS 76 | #---------------------------------- 77 | # ID VALUE VERSION 78 | 700 -1 0x00000003 79 | 701 2 0x00000003 80 | 702 -3 0x00000003 81 | # gyroscope x/y/z of AXIS 82 | 800 -1 0x00000003 83 | 801 2 0x00000003 84 | 802 -3 0x00000003 85 | # magnetic x/y/z of AXIS 86 | 900 2 0x00000003 87 | 901 -1 0x00000003 88 | 902 3 0x00000003 89 | 90 | ## Proximity & ambient sensor 91 | #---------------------------------- 92 | # ID VALUE VERSION 93 | 109 7 0x00000003 # als_change_pcnt 94 | 110 173 0x00000003 # als_ga 95 | 111 200 0x00000003 # als_coe_b 96 | 112 43 0x00000003 # als_coe_c 97 | 113 78 0x00000003 # als_coe_d 98 | 114 8 0x00000003 # prx_ppcount 99 | 115 0x40 0x00000003 # prx_control 100 | 116 100 0x00000003 # prx_cal_hysteresis 101 | 117 720 0x00000003 # prx_cal_threshold 102 | 118 300 0x00000003 # prx_cal_threshold_offset 103 | 119 800 0x00000003 # threshold_near 104 | 120 700 0x00000003 # threshold_far 105 | 121 0x04 0x00000003 # prx_gain 106 | 122 0x22 0x00000003 # prx_als_pers 107 | 123 0 0x00000003 # reserved param 108 | 124 0 0x00000003 # reserved param 109 | 125 0 0x00000003 # reserved param 110 | 126 0 0x00000003 # reserved param 111 | 127 0 0x00000003 # reserved param 112 | 128 0 0x00000003 # reserved param 113 | 129 0 0x00000003 # reserved param 114 | 130 0 0x00000003 # reserved param 115 | 131 0 0x00000003 # reserved param 116 | 132 0 0x00000003 # reserved param 117 | 133 0 0x00000003 # reserved param 118 | 134 0 0x00000003 # reserved param 119 | 135 0 0x00000003 # reserved param 120 | -------------------------------------------------------------------------------- /proprietary-blobs.txt: -------------------------------------------------------------------------------- 1 | etc/Bluetooth_cal.acdb 2 | etc/General_cal.acdb 3 | etc/Global_cal.acdb 4 | etc/Handset_cal.acdb 5 | etc/Hdmi_cal.acdb 6 | etc/Headset_cal.acdb 7 | etc/Speaker_cal.acdb 8 | etc/firmware/fw_bcmdhd_apsta.bin 9 | etc/firmware/fw_bcmdhd.bin 10 | etc/firmware/cpp_firmware_v1_1_1.fw 11 | etc/firmware/cpp_firmware_v1_1_6.fw 12 | etc/firmware/cpp_firmware_v1_2_0.fw 13 | etc/firmware/venus.mbn 14 | etc/firmware/venus.mdt 15 | etc/firmware/venus.b00 16 | etc/firmware/venus.b01 17 | etc/firmware/venus.b02 18 | etc/firmware/venus.b03 19 | etc/firmware/venus.b04 20 | lib/libvss_dmi_qcci.so 21 | lib/libvss_common_iface.so 22 | lib/libvss_common_idl.so 23 | lib/libvss_nv_iface.so 24 | lib/libvss_nv_core.so 25 | lib/libvss_nv_idl.so 26 | lib/libvss_ims_qcci.so 27 | lib/libvss_common_core.so 28 | lib/libcnefeatureconfig.so 29 | lib/libloc_api_v02.so 30 | lib/libWVphoneAPI.so 31 | #lib/liblgftmitem.so 32 | #lib/liblgdrm.so 33 | #lib/liblgsecclk.so 34 | #lib/libwvoemprov.so 35 | #lib/libDxHdcp.so 36 | #lib/liblgehdcpek.so 37 | #lib/libdiagd_client.so 38 | lib/libacdbloader.so 39 | #bin/atd 40 | #bin/gsiff_daemon 41 | bin/rmt_storage 42 | bin/qmuxd 43 | lib/libril.so 44 | bin/rild 45 | lib/liblgderp.so 46 | bin/netmgrd 47 | bin/sensors.qcom 48 | bin/thermald 49 | bin/thermal-engine 50 | bin/mpdecision 51 | bin/cnd 52 | bin/qseecomd 53 | bin/mm-qcamera-daemon 54 | bin/bridgemgrd 55 | bin/irsc_util 56 | bin/time_daemon 57 | lib/libmmcamera_interface.so 58 | lib/hw/camera.vendor.msm8974.so 59 | lib/libHDR.so 60 | lib/libmorpho_noise_reduction.so 61 | lib/libmorpho_image_stab31.so 62 | lib/libmmjpeg_interface.so 63 | lib/libqomx_core.so 64 | ## Vendor 65 | vendor/lib/drm/libdrmwvmplugin.so 66 | vendor/lib/egl/eglsubAndroid.so 67 | vendor/lib/egl/libEGL_adreno.so 68 | vendor/lib/egl/libGLESv1_CM_adreno.so 69 | vendor/lib/egl/libGLESv2_adreno.so 70 | vendor/lib/egl/libq3dtools_adreno.so 71 | vendor/lib/egl/libplayback_adreno.so 72 | vendor/lib/hw/power.msm8974.so 73 | vendor/lib/hw/sensors.msm8974.so 74 | vendor/lib/libacdbmapper.so 75 | vendor/lib/libacdbrtac.so 76 | vendor/lib/libadiertac.so 77 | vendor/lib/libadreno_utils.so 78 | vendor/lib/librs_adreno.so 79 | vendor/lib/librs_adreno_sha1.so 80 | vendor/lib/libRSDriver_adreno.so 81 | vendor/lib/libadsprpc.so 82 | vendor/lib/libAKM8963.so 83 | vendor/lib/libaudcal.so 84 | vendor/lib/libaudioalsa.so 85 | vendor/lib/libC2D2.so 86 | vendor/lib/libCB.so 87 | vendor/lib/libc2d30.so 88 | vendor/lib/libc2d30-a3xx.so 89 | vendor/lib/libchromatix_imx132_common.so 90 | vendor/lib/libchromatix_imx132_default_video.so 91 | vendor/lib/libchromatix_imx132_mms_video.so 92 | vendor/lib/libchromatix_imx132_preview.so 93 | vendor/lib/libchromatix_imx132_vt.so 94 | vendor/lib/libchromatix_imx135_common.so 95 | vendor/lib/libchromatix_imx135_default_video.so 96 | vendor/lib/libchromatix_imx135_fuji_common.so 97 | vendor/lib/libchromatix_imx135_fuji_default_video.so 98 | vendor/lib/libchromatix_imx135_fuji_hfr_120.so 99 | vendor/lib/libchromatix_imx135_fuji_hfr_60.so 100 | vendor/lib/libchromatix_imx135_fuji_mms_video.so 101 | vendor/lib/libchromatix_imx135_fuji_preview.so 102 | vendor/lib/libchromatix_imx135_fuji_snapshot.so 103 | vendor/lib/libchromatix_imx135_fuji_video_dualrec.so 104 | vendor/lib/libchromatix_imx135_hfr_60.so 105 | vendor/lib/libchromatix_imx135_mms_video.so 106 | vendor/lib/libchromatix_imx135_preview.so 107 | vendor/lib/libchromatix_imx135_snapshot.so 108 | vendor/lib/libchromatix_imx135_video_dualrec.so 109 | vendor/lib/libcneapiclient.so 110 | vendor/lib/libcneqmiutils.so 111 | vendor/lib/libcneutils.so 112 | vendor/lib/libCommandSvc.so 113 | vendor/lib/libconfigdb.so 114 | vendor/lib/libcsd-client.so 115 | vendor/lib/libdiag.so 116 | vendor/lib/libDivxDrm.so 117 | vendor/lib/libdrmdecrypt.so 118 | vendor/lib/libdrmdiag.so 119 | vendor/lib/libdrmfs.so 120 | vendor/lib/libdrmtime.so 121 | vendor/lib/libdsi_netctrl.so 122 | vendor/lib/libdsnetutils.so 123 | vendor/lib/libdsutils.so 124 | vendor/lib/libepdsp.so 125 | vendor/lib/libExtendedExtractor.so 126 | vendor/lib/libfastcvopt.so 127 | vendor/lib/libFileMux.so 128 | vendor/lib/libgeofence.so 129 | vendor/lib/libgsl.so 130 | vendor/lib/libI420colorconvert.so 131 | vendor/lib/libidl.so 132 | vendor/lib/libjpegdhw.so 133 | vendor/lib/libjpegehw.so 134 | vendor/lib/liblistenhardware.so 135 | vendor/lib/liblistenjni.so 136 | vendor/lib/liblisten.so 137 | vendor/lib/liblistensoundmodel.so 138 | vendor/lib/libllvm-qcom.so 139 | vendor/lib/libmm-abl-oem.so 140 | vendor/lib/libmm-abl.so 141 | vendor/lib/libmmcamera2_c2d_module.so 142 | vendor/lib/libmmcamera2_cpp_module.so 143 | vendor/lib/libmmcamera2_iface_modules.so 144 | vendor/lib/libmmcamera2_imglib_modules.so 145 | vendor/lib/libmmcamera2_isp_modules.so 146 | vendor/lib/libmmcamera2_pproc_modules.so 147 | vendor/lib/libmmcamera2_sensor_modules.so 148 | vendor/lib/libmmcamera2_stats_algorithm.so 149 | vendor/lib/libmmcamera2_stats_modules.so 150 | vendor/lib/libmmcamera2_vpe_module.so 151 | vendor/lib/libmmcamera2_wnr_module.so 152 | vendor/lib/libmmcamera_cac_lib.so 153 | vendor/lib/libmmcamera_faceproc.so 154 | vendor/lib/libmmcamera_hdr_lib.so 155 | vendor/lib/libmmcamera_image_stab.so 156 | vendor/lib/libmmcamera_imglib.so 157 | vendor/lib/libmmcamera_imx132.so 158 | vendor/lib/libmmcamera_imx135_eeprom.so 159 | vendor/lib/libmmcamera_imx135.so 160 | vendor/lib/libmmcamera_wavelet_lib.so 161 | vendor/lib/libmm-color-convertor.so 162 | vendor/lib/libmmhttpstack.so 163 | vendor/lib/libmmiipstreammmihttp.so 164 | vendor/lib/libmmipl.so 165 | vendor/lib/libmmipstreamaal.so 166 | vendor/lib/libmmipstreamnetwork.so 167 | vendor/lib/libmmipstreamsourcehttp.so 168 | vendor/lib/libmmipstreamutils.so 169 | vendor/lib/libmmjpeg.so 170 | vendor/lib/libmmosal.so 171 | vendor/lib/libmmparser.so 172 | vendor/lib/libmmqjpeg_codec.so 173 | vendor/lib/libmmQSM.so 174 | vendor/lib/libmmrtpdecoder.so 175 | vendor/lib/libmmrtpencoder.so 176 | vendor/lib/libmmwfdinterface.so 177 | vendor/lib/libmmwfdsinkinterface.so 178 | vendor/lib/libmmwfdsrcinterface.so 179 | vendor/lib/libmsapm_jni.so 180 | vendor/lib/libmsapu_jni.so 181 | vendor/lib/libnetmgr.so 182 | vendor/lib/libNimsWrap.so 183 | vendor/lib/liboemcamera.so 184 | vendor/lib/libOmxAacDec.so 185 | vendor/lib/libOmxAmrwbplusDec.so 186 | vendor/lib/libOmxEvrcDec.so 187 | vendor/lib/libOmxMux.so 188 | vendor/lib/libOmxQcelp13Dec.so 189 | vendor/lib/libOmxWmaDec.so 190 | vendor/lib/libOpenCL.so 191 | vendor/lib/libOpenVG.so 192 | vendor/lib/libprdrmdecrypt.so 193 | vendor/lib/libprofiler_msmadc.so 194 | vendor/lib/libqcci_legacy.so 195 | vendor/lib/libqcgesture.so 196 | vendor/lib/libqc-opt.so 197 | vendor/lib/libqdi.so 198 | vendor/lib/libqdp.so 199 | vendor/lib/libqmi_cci.so 200 | vendor/lib/libqmi_client_qmux.so 201 | vendor/lib/libqmi_common_so.so 202 | vendor/lib/libqmi_csi.so 203 | vendor/lib/libqmi_csvt_srvc.so 204 | vendor/lib/libqmi_encdec.so 205 | vendor/lib/libqmiservices.so 206 | vendor/lib/libqmi.so 207 | vendor/lib/libqomx_jpegenc.so 208 | vendor/lib/libQSEEComAPI.so 209 | vendor/lib/libquipc_os_api.so 210 | vendor/lib/libquipc_ulp_adapter.so 211 | vendor/lib/libril-qc-qmi-1.so 212 | vendor/lib/libril-qcril-hook-oem.so 213 | vendor/lib/librpmb.so 214 | vendor/lib/libsc-a3xx.so 215 | vendor/lib/libSecureTouchPerfApp.so 216 | vendor/lib/libsensor1.so 217 | vendor/lib/libsensor_reg.so 218 | vendor/lib/libsensor_user_cal.so 219 | vendor/lib/libSHIMDivxDrm.so 220 | vendor/lib/libssd.so 221 | vendor/lib/libSSEPKCS11.so 222 | vendor/lib/libsubsystem_control.so 223 | vendor/lib/libsurround_proc.so 224 | vendor/lib/libthermalclient.so 225 | vendor/lib/libtime_genoff.so 226 | vendor/lib/libtzdrmgenprov.so 227 | vendor/lib/libtzplayready.so 228 | vendor/lib/libualutil.so 229 | vendor/lib/libulp2.so 230 | vendor/lib/libv8.so 231 | vendor/lib/libvideo_cor.so 232 | vendor/lib/libwfdcommonutils.so 233 | vendor/lib/libwfdhdcpcp.so 234 | vendor/lib/libwfdmmsink.so 235 | vendor/lib/libwfdmmsrc.so 236 | vendor/lib/libwfdmmutils.so 237 | vendor/lib/libwfdnative.so 238 | vendor/lib/libwfdrtsp.so 239 | vendor/lib/libwfdsm.so 240 | vendor/lib/libwfduibcinterface.so 241 | vendor/lib/libwfduibcsinkinterface.so 242 | vendor/lib/libwfduibcsink.so 243 | vendor/lib/libwfduibcsrcinterface.so 244 | vendor/lib/libwfduibcsrc.so 245 | vendor/lib/libwvdrm_L1.so 246 | vendor/lib/libwvm.so 247 | vendor/lib/libWVStreamControlAPI_L1.so 248 | vendor/lib/libxml.so 249 | vendor/lib/pp_proc_plugin.so 250 | vendor/lib/mediadrm/libwvdrmengine.so 251 | vendor/firmware/BCM20791B5_002.006.013.0011.0027_LGE_A1_I2C_NCD_Signed_ORC.ncd 252 | vendor/firmware/BCM20791B5_002.006.013.0011.0027_LGE_A1_PreI2C_NCD_Signed_ORC.ncd 253 | vendor/firmware/BCM4335B0_002.001.006.0191.0201_ORC.hcd 254 | vendor/firmware/a330_pfp.fw 255 | vendor/firmware/a330_pm4.fw 256 | --------------------------------------------------------------------------------