├── Android.mk ├── AndroidBoard.mk ├── AndroidProducts.mk ├── Apps ├── Android.mk ├── CleanSpec.mk └── EngineerMode │ └── EngineerMode.apk ├── BoardConfig.mk ├── README.md ├── android_filesystem_config.h ├── bluetooth └── bdroid_buildcfg.h ├── board ├── audio.mk ├── bluetooth.mk ├── bootanimation.mk ├── camera.mk ├── device.mk ├── display.mk ├── filesystem.mk ├── gps.mk ├── hardware.mk ├── kernel.mk ├── media.mk ├── platform.mk ├── power.mk ├── recovery.mk ├── sensors.mk ├── telephony.mk └── wifi.mk ├── camera ├── Android.mk ├── MtkCameraParameters.cpp ├── MtkCameraParameters.h └── camerasize.xml ├── cmhw └── org │ └── cyanogenmod │ └── hardware │ ├── DisplayColorCalibration.java │ ├── KeyDisabler.java │ └── VibratorHW.java ├── configs ├── ACCDET.kl ├── AVRCP.kl ├── MTKNfclicense.lic ├── agps_profiles_conf2.xml ├── apns-conf.xml ├── audio │ ├── a2dp_audio_policy_configuration.xml │ ├── audio_device.xml │ └── audio_policy_configuration.xml ├── ecc_list.xml ├── egl.cfg ├── media_codecs.xml ├── media_profiles.xml ├── mtk-kpd.kl ├── nfc │ ├── libnfc-brcm.conf │ ├── nfc.cfg │ ├── nfcee_access.xml │ └── nfcse.cfg ├── spn-conf.xml ├── thermal │ ├── .ht120.mtc │ ├── .thermal_policy_00 │ ├── thermal.conf │ └── thermal.off.conf └── wifi │ ├── p2p_supplicant_overlay.conf │ ├── wpa_supplicant.conf │ └── wpa_supplicant_overlay.conf ├── copy-files.sh ├── device_k5fpr.mk ├── dot.dependencies ├── extract-files.sh ├── include └── fd_utils-inl-extra.h ├── lineage.mk ├── manual ├── mtk ├── Android.mk ├── gps │ ├── Android.mk │ ├── YGPS │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── NOTICE │ │ ├── README │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── icon.png │ │ │ │ ├── satgreen.png │ │ │ │ ├── satred.png │ │ │ │ └── satyellow.png │ │ │ ├── layout │ │ │ │ ├── layout_auto_test.xml │ │ │ │ ├── layout_copyright_info.xml │ │ │ │ ├── layout_info.xml │ │ │ │ ├── layout_nmea.xml │ │ │ │ ├── layout_satellites.xml │ │ │ │ └── layout_tabs.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── src │ │ │ └── com │ │ │ │ └── mediatek │ │ │ │ └── ygps │ │ │ │ ├── ClientSocket.java │ │ │ │ ├── CopyrightInfo.java │ │ │ │ ├── GpsMnlSetting.java │ │ │ │ ├── NmeaParser.java │ │ │ │ ├── NmeaSatelliteAdapter.java │ │ │ │ ├── SatelLocationView.java │ │ │ │ ├── SatelSignalChartView.java │ │ │ │ ├── SatelliteBaseView.java │ │ │ │ ├── SatelliteInfo.java │ │ │ │ ├── SatelliteInfoManager.java │ │ │ │ ├── YgpsActivity.java │ │ │ │ └── YgpsService.java │ │ └── tests │ │ │ ├── Android.mk │ │ │ ├── AndroidManifest.xml │ │ │ ├── README │ │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ └── com │ │ │ └── mediatek │ │ │ └── ygps │ │ │ └── tests │ │ │ ├── YgpsAutoTest.java │ │ │ ├── YgpsAutoTestRunner.java │ │ │ └── YgpsLaunchPerformance.java │ ├── hal │ │ ├── Android.mk │ │ ├── NOTICE │ │ ├── README │ │ ├── gps_mtk_aosp.c │ │ └── include │ │ │ ├── hardware │ │ │ └── gps_mtk.h │ │ │ └── linux │ │ │ └── mtk_agps_common.h │ └── libepos │ │ ├── Android.mk │ │ ├── README │ │ ├── arm │ │ ├── libepos.a │ │ └── libepos.abk │ │ └── libepos.a ├── liblog_mtk │ ├── Android.mk │ └── mtk_xlog.c ├── libshims │ ├── Android.mk │ ├── audio │ │ └── mtk_audio.cpp │ ├── gui │ │ ├── SensorManager.cpp │ │ ├── SensorManager.h │ │ └── mtk_gui.cpp │ ├── mtk_asc.cpp │ ├── ui │ │ ├── mtk_gbc1.cpp │ │ └── mtk_ui.cpp │ └── xlog.c └── ril │ └── ccci_lib │ ├── Android.mk │ ├── NOTICE │ ├── PROPRIETARY_LICENSE │ ├── README │ └── ccci_lib.c ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── values │ │ │ └── config.xml │ │ │ └── xml │ │ │ ├── power_profile.xml │ │ │ └── storage_list.xml │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ ├── Bluetooth │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Dialer │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── FMRadio │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Settings │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── Snap │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ └── Telephony │ └── res │ └── values │ └── config.xml ├── patches ├── README ├── bionic │ └── bionic_libc.patch ├── frameworks │ ├── av │ │ ├── frameworks_av.patch │ │ ├── frameworks_av_camera.patch │ │ ├── frameworks_av_libmedia.patch │ │ └── frameworks_av_mediaprofile.patch │ ├── base │ │ └── frameworks_base.patch │ └── native │ │ └── frameworks_native.patch ├── install.sh ├── packages │ └── apps │ │ └── Settings │ │ └── settings.patch ├── system │ ├── core │ │ └── system_core.patch │ └── netd │ │ └── 0010-wifi-tethering-fix.patch └── uninstall.sh ├── power ├── Android.mk └── power.c ├── product ├── EngineeringMode.mk ├── Tethering.mk ├── audio.mk ├── browser.mk ├── camera.mk ├── dalvik.mk ├── display.mk ├── fingerprint.mk ├── fm.mk ├── fs_manag.mk ├── gps.mk ├── hardware.mk ├── input.mk ├── media.mk ├── nfc.mk ├── power.mk ├── prop.mk ├── ramdisk.mk ├── ril.mk ├── selinux.mk ├── sensors.mk ├── telecomm.mk ├── thermal.mk ├── usb.mk ├── wallpaper.mk └── wifi.mk ├── proprietary-blobs.txt ├── ril └── telephony │ └── java │ └── com │ └── android │ └── internal │ └── telephony │ ├── MT6753.java │ └── MtkEccList.java ├── rootdir ├── enableswap.sh ├── factory_init.project.rc ├── factory_init.rc ├── fstab.charger ├── fstab.mt6735 ├── init.microtrust.rc ├── init.modem.rc ├── init.mt6735.rc ├── init.mt6735.usb.rc ├── init.project.rc ├── init.rc ├── init.recovery.mt6735.rc ├── init.ssd.rc ├── meta_init.modem.rc ├── meta_init.project.rc ├── meta_init.rc ├── recovery.fstab └── ueventd.mt6735.rc ├── seccomp └── mediacodec-seccomp.policy ├── sepolicy ├── BGW.te ├── GoogleOtaBinder.te ├── MtkCodecService.te ├── aal.te ├── adbd.te ├── aee_core_forwarder.te ├── akmd09911.te ├── akmd09912.te ├── akmd8963.te ├── akmd8975.te ├── ami304d.te ├── app.te ├── atci_service.te ├── atcid.te ├── audiocmdservice_atci.te ├── audioserver.te ├── autokd.te ├── batterymanager.te ├── batterywarning.te ├── bluetooth.te ├── bmm050d.te ├── bmm056d.te ├── boot_logo_updater.te ├── bootanim.te ├── br_app_data_service.te ├── cameraserver.te ├── ccci_fsd.te ├── ccci_mdinit.te ├── ccci_rpcd.te ├── clatd.te ├── cmddumper.te ├── debuggerd.te ├── device.te ├── dex2oat.te ├── dhcp.te ├── dhcp6c.te ├── disableswap.te ├── dm_agent_binder.te ├── dmlog.te ├── dnsmasq.te ├── domain.te ├── drmserver.te ├── dumpstate.te ├── eemcs_fsd.te ├── eemcs_mdinit.te ├── em_svr.te ├── emdlogger.te ├── emmc_rw_debug.te ├── enableswap.te ├── epdg_wod.te ├── etsd.te ├── factory.te ├── file.te ├── file_contexts ├── fingerprintd.te ├── flashlessd.te ├── fota1.te ├── fs_use ├── fsck.te ├── fuelgauged.te ├── gas_srv.te ├── gatekeeperd.te ├── ged_srv.te ├── genfs_contexts ├── geomagneticd.te ├── gpsd.te ├── gsm0710muxd.te ├── gsm0710muxdmd2.te ├── guiext-server.te ├── hci_attach.te ├── healthd.te ├── hostapd.te ├── hotknot_native.te ├── icusbd.te ├── init.te ├── init_thh.te ├── inputflinger.te ├── install_recovery.te ├── installd.te ├── ipo_swap.te ├── ipod.te ├── ipsec.te ├── isolated_app.te ├── ist8303.te ├── kernel.te ├── keystore.te ├── kpoc_charger.te ├── launchpppoe.te ├── lmkd.te ├── logd.te ├── matv.te ├── mc6420d.te ├── md_ctrl.te ├── md_monitor.te ├── mdlogger.te ├── mdnsd.te ├── mediascodec.te ├── mediaserver.te ├── memsicd.te ├── memsicd3416x.te ├── meta_tst.te ├── mmc_ffu.te ├── mmp.te ├── mnld.te ├── mobicore.te ├── mobile_log_d.te ├── mpud6050.te ├── msensord.te ├── mtk_6620_launcher.te ├── mtk_agpsd.te ├── mtkmal.te ├── mtkrild.te ├── mtkrildmd2.te ├── mtp.te ├── muxreport.te ├── mvg_app.te ├── mxg2320d.te ├── net.te ├── netd.te ├── netdiag.te ├── nfc.te ├── nvram_agent_binder.te ├── nvram_daemon.te ├── orientationd.te ├── osi.te ├── permission_check.te ├── platform_app.te ├── poad.te ├── ppl_agent.te ├── ppp.te ├── pppd_dt.te ├── pppd_via.te ├── pq.te ├── program_binary.te ├── property.te ├── property_contexts ├── pvrsrvctl.te ├── racoon.te ├── radio.te ├── recovery.te ├── resize.te ├── resmon.te ├── ril-3gddaemon.te ├── rild.te ├── runas.te ├── s62xd.te ├── sbchk.te ├── sdcardd.te ├── server.te ├── service.te ├── service_contexts ├── servicemanager.te ├── shared_relro.te ├── shell.te ├── slpd.te ├── smart_audio.te ├── sn.te ├── spm_loader.te ├── st480.te ├── statusd.te ├── stp_dump3.te ├── surfaceflinger.te ├── system_app.te ├── system_server.te ├── te_macros ├── tee.te ├── teei_daemon.te ├── terservice.te ├── thermal.te ├── thermal_manager.te ├── thermald.te ├── thermalloadalgod.te ├── tiny_mkswap.te ├── tiny_swapon.te ├── toolbox.te ├── tune2fs.te ├── tunman.te ├── ueventd.te ├── uncrypt.te ├── untrusted_app.te ├── usbdongled.te ├── vdc.te ├── viarild.te ├── vold.te ├── volte_imcb.te ├── volte_stack.te ├── volte_ua.te ├── vtservice.te ├── watchdogd.te ├── wfca.te ├── wifi2agps.te ├── wmt_loader.te ├── wpa.te ├── wpa_supplicant.te ├── xlog.te ├── zpppd_gprs.te └── zygote.te ├── setup-makefiles.sh ├── system.prop ├── twrp.fstab ├── vendorsetup.sh ├── wlan └── wifi_hal │ ├── Android.mk │ ├── common.cpp │ ├── common.h │ ├── cpp_bindings.cpp │ ├── cpp_bindings.h │ ├── gscan.cpp │ ├── rtt.cpp │ ├── sync.h │ └── wifi_hal.cpp └── wpa_supplicant_8_lib ├── Android.mk └── mediatek_driver_cmd_nl80211.c /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidBoard.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/AndroidBoard.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- 1 | PRODUCT_MAKEFILES := \ 2 | $(LOCAL_DIR)/lineage.mk 3 | -------------------------------------------------------------------------------- /Apps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/Apps/Android.mk -------------------------------------------------------------------------------- /Apps/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/Apps/CleanSpec.mk -------------------------------------------------------------------------------- /Apps/EngineerMode/EngineerMode.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/Apps/EngineerMode/EngineerMode.apk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/README.md -------------------------------------------------------------------------------- /android_filesystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/android_filesystem_config.h -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /board/audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/audio.mk -------------------------------------------------------------------------------- /board/bluetooth.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/bluetooth.mk -------------------------------------------------------------------------------- /board/bootanimation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/bootanimation.mk -------------------------------------------------------------------------------- /board/camera.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/camera.mk -------------------------------------------------------------------------------- /board/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/device.mk -------------------------------------------------------------------------------- /board/display.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/display.mk -------------------------------------------------------------------------------- /board/filesystem.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/filesystem.mk -------------------------------------------------------------------------------- /board/gps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/gps.mk -------------------------------------------------------------------------------- /board/hardware.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/hardware.mk -------------------------------------------------------------------------------- /board/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/kernel.mk -------------------------------------------------------------------------------- /board/media.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/media.mk -------------------------------------------------------------------------------- /board/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/platform.mk -------------------------------------------------------------------------------- /board/power.mk: -------------------------------------------------------------------------------- 1 | # Charger 2 | BOARD_CHARGER_SHOW_PERCENTAGE := true 3 | -------------------------------------------------------------------------------- /board/recovery.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/recovery.mk -------------------------------------------------------------------------------- /board/sensors.mk: -------------------------------------------------------------------------------- 1 | BOARD_GLOBAL_CFLAGS += -DCOMPAT_SENSORS_M 2 | -------------------------------------------------------------------------------- /board/telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/telephony.mk -------------------------------------------------------------------------------- /board/wifi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/board/wifi.mk -------------------------------------------------------------------------------- /camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/camera/Android.mk -------------------------------------------------------------------------------- /camera/MtkCameraParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/camera/MtkCameraParameters.cpp -------------------------------------------------------------------------------- /camera/MtkCameraParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/camera/MtkCameraParameters.h -------------------------------------------------------------------------------- /camera/camerasize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/camera/camerasize.xml -------------------------------------------------------------------------------- /cmhw/org/cyanogenmod/hardware/DisplayColorCalibration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/cmhw/org/cyanogenmod/hardware/DisplayColorCalibration.java -------------------------------------------------------------------------------- /cmhw/org/cyanogenmod/hardware/KeyDisabler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/cmhw/org/cyanogenmod/hardware/KeyDisabler.java -------------------------------------------------------------------------------- /cmhw/org/cyanogenmod/hardware/VibratorHW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/cmhw/org/cyanogenmod/hardware/VibratorHW.java -------------------------------------------------------------------------------- /configs/ACCDET.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/ACCDET.kl -------------------------------------------------------------------------------- /configs/AVRCP.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/AVRCP.kl -------------------------------------------------------------------------------- /configs/MTKNfclicense.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/MTKNfclicense.lic -------------------------------------------------------------------------------- /configs/agps_profiles_conf2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/agps_profiles_conf2.xml -------------------------------------------------------------------------------- /configs/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/apns-conf.xml -------------------------------------------------------------------------------- /configs/audio/a2dp_audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/audio/a2dp_audio_policy_configuration.xml -------------------------------------------------------------------------------- /configs/audio/audio_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/audio/audio_device.xml -------------------------------------------------------------------------------- /configs/audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /configs/ecc_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/ecc_list.xml -------------------------------------------------------------------------------- /configs/egl.cfg: -------------------------------------------------------------------------------- 1 | 0 0 android 2 | 0 1 mali 3 | -------------------------------------------------------------------------------- /configs/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/media_codecs.xml -------------------------------------------------------------------------------- /configs/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/media_profiles.xml -------------------------------------------------------------------------------- /configs/mtk-kpd.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/mtk-kpd.kl -------------------------------------------------------------------------------- /configs/nfc/libnfc-brcm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/nfc/libnfc-brcm.conf -------------------------------------------------------------------------------- /configs/nfc/nfc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/nfc/nfc.cfg -------------------------------------------------------------------------------- /configs/nfc/nfcee_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/nfc/nfcee_access.xml -------------------------------------------------------------------------------- /configs/nfc/nfcse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/nfc/nfcse.cfg -------------------------------------------------------------------------------- /configs/spn-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/spn-conf.xml -------------------------------------------------------------------------------- /configs/thermal/.ht120.mtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/thermal/.ht120.mtc -------------------------------------------------------------------------------- /configs/thermal/.thermal_policy_00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/thermal/.thermal_policy_00 -------------------------------------------------------------------------------- /configs/thermal/thermal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/thermal/thermal.conf -------------------------------------------------------------------------------- /configs/thermal/thermal.off.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/thermal/thermal.off.conf -------------------------------------------------------------------------------- /configs/wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/wifi/wpa_supplicant.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/configs/wifi/wpa_supplicant_overlay.conf -------------------------------------------------------------------------------- /copy-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/copy-files.sh -------------------------------------------------------------------------------- /device_k5fpr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/device_k5fpr.mk -------------------------------------------------------------------------------- /dot.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/dot.dependencies -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/extract-files.sh -------------------------------------------------------------------------------- /include/fd_utils-inl-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/include/fd_utils-inl-extra.h -------------------------------------------------------------------------------- /lineage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/lineage.mk -------------------------------------------------------------------------------- /manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/manual -------------------------------------------------------------------------------- /mtk/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /mtk/gps/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /mtk/gps/YGPS/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/Android.mk -------------------------------------------------------------------------------- /mtk/gps/YGPS/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/AndroidManifest.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mtk/gps/YGPS/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/NOTICE -------------------------------------------------------------------------------- /mtk/gps/YGPS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/README -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/drawable/icon.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/drawable/satgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/drawable/satgreen.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/drawable/satred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/drawable/satred.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/drawable/satyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/drawable/satyellow.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/layout/layout_auto_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/layout/layout_auto_test.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/layout/layout_copyright_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/layout/layout_copyright_info.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/layout/layout_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/layout/layout_info.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/layout/layout_nmea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/layout/layout_nmea.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/layout/layout_satellites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/layout/layout_satellites.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/layout/layout_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/layout/layout_tabs.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/values/colors.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/values/strings.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/res/values/styles.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/ClientSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/ClientSocket.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/CopyrightInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/CopyrightInfo.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/GpsMnlSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/GpsMnlSetting.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/NmeaParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/NmeaParser.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/NmeaSatelliteAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/NmeaSatelliteAdapter.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/SatelLocationView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/SatelLocationView.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/SatelSignalChartView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/SatelSignalChartView.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/SatelliteBaseView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/SatelliteBaseView.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/SatelliteInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/SatelliteInfo.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/SatelliteInfoManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/SatelliteInfoManager.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/YgpsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/YgpsActivity.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/src/com/mediatek/ygps/YgpsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/src/com/mediatek/ygps/YgpsService.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/Android.mk -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/README -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/res/values/strings.xml -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/src/com/mediatek/ygps/tests/YgpsAutoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/src/com/mediatek/ygps/tests/YgpsAutoTest.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/src/com/mediatek/ygps/tests/YgpsAutoTestRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/src/com/mediatek/ygps/tests/YgpsAutoTestRunner.java -------------------------------------------------------------------------------- /mtk/gps/YGPS/tests/src/com/mediatek/ygps/tests/YgpsLaunchPerformance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/YGPS/tests/src/com/mediatek/ygps/tests/YgpsLaunchPerformance.java -------------------------------------------------------------------------------- /mtk/gps/hal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/hal/Android.mk -------------------------------------------------------------------------------- /mtk/gps/hal/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/hal/NOTICE -------------------------------------------------------------------------------- /mtk/gps/hal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/hal/README -------------------------------------------------------------------------------- /mtk/gps/hal/gps_mtk_aosp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/hal/gps_mtk_aosp.c -------------------------------------------------------------------------------- /mtk/gps/hal/include/hardware/gps_mtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/hal/include/hardware/gps_mtk.h -------------------------------------------------------------------------------- /mtk/gps/hal/include/linux/mtk_agps_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/hal/include/linux/mtk_agps_common.h -------------------------------------------------------------------------------- /mtk/gps/libepos/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/libepos/Android.mk -------------------------------------------------------------------------------- /mtk/gps/libepos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/libepos/README -------------------------------------------------------------------------------- /mtk/gps/libepos/arm/libepos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/libepos/arm/libepos.a -------------------------------------------------------------------------------- /mtk/gps/libepos/arm/libepos.abk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/libepos/arm/libepos.abk -------------------------------------------------------------------------------- /mtk/gps/libepos/libepos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/gps/libepos/libepos.a -------------------------------------------------------------------------------- /mtk/liblog_mtk/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/liblog_mtk/Android.mk -------------------------------------------------------------------------------- /mtk/liblog_mtk/mtk_xlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/liblog_mtk/mtk_xlog.c -------------------------------------------------------------------------------- /mtk/libshims/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/Android.mk -------------------------------------------------------------------------------- /mtk/libshims/audio/mtk_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/audio/mtk_audio.cpp -------------------------------------------------------------------------------- /mtk/libshims/gui/SensorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/gui/SensorManager.cpp -------------------------------------------------------------------------------- /mtk/libshims/gui/SensorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/gui/SensorManager.h -------------------------------------------------------------------------------- /mtk/libshims/gui/mtk_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/gui/mtk_gui.cpp -------------------------------------------------------------------------------- /mtk/libshims/mtk_asc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/mtk_asc.cpp -------------------------------------------------------------------------------- /mtk/libshims/ui/mtk_gbc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/ui/mtk_gbc1.cpp -------------------------------------------------------------------------------- /mtk/libshims/ui/mtk_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/ui/mtk_ui.cpp -------------------------------------------------------------------------------- /mtk/libshims/xlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/libshims/xlog.c -------------------------------------------------------------------------------- /mtk/ril/ccci_lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/ril/ccci_lib/Android.mk -------------------------------------------------------------------------------- /mtk/ril/ccci_lib/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/ril/ccci_lib/NOTICE -------------------------------------------------------------------------------- /mtk/ril/ccci_lib/PROPRIETARY_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/ril/ccci_lib/PROPRIETARY_LICENSE -------------------------------------------------------------------------------- /mtk/ril/ccci_lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/ril/ccci_lib/README -------------------------------------------------------------------------------- /mtk/ril/ccci_lib/ccci_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/mtk/ril/ccci_lib/ccci_lib.c -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/storage_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/frameworks/base/core/res/res/xml/storage_list.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Bluetooth/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/packages/apps/Bluetooth/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Dialer/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/packages/apps/Dialer/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/FMRadio/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/packages/apps/FMRadio/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Snap/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/packages/apps/Snap/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/README -------------------------------------------------------------------------------- /patches/bionic/bionic_libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/bionic/bionic_libc.patch -------------------------------------------------------------------------------- /patches/frameworks/av/frameworks_av.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/frameworks/av/frameworks_av.patch -------------------------------------------------------------------------------- /patches/frameworks/av/frameworks_av_camera.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/frameworks/av/frameworks_av_camera.patch -------------------------------------------------------------------------------- /patches/frameworks/av/frameworks_av_libmedia.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/frameworks/av/frameworks_av_libmedia.patch -------------------------------------------------------------------------------- /patches/frameworks/av/frameworks_av_mediaprofile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/frameworks/av/frameworks_av_mediaprofile.patch -------------------------------------------------------------------------------- /patches/frameworks/base/frameworks_base.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/frameworks/base/frameworks_base.patch -------------------------------------------------------------------------------- /patches/frameworks/native/frameworks_native.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/frameworks/native/frameworks_native.patch -------------------------------------------------------------------------------- /patches/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/install.sh -------------------------------------------------------------------------------- /patches/packages/apps/Settings/settings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/packages/apps/Settings/settings.patch -------------------------------------------------------------------------------- /patches/system/core/system_core.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/system/core/system_core.patch -------------------------------------------------------------------------------- /patches/system/netd/0010-wifi-tethering-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/system/netd/0010-wifi-tethering-fix.patch -------------------------------------------------------------------------------- /patches/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/patches/uninstall.sh -------------------------------------------------------------------------------- /power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/power/Android.mk -------------------------------------------------------------------------------- /power/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/power/power.c -------------------------------------------------------------------------------- /product/EngineeringMode.mk: -------------------------------------------------------------------------------- 1 | PRODUCT_PACKAGES += \ 2 | EngineerMode -------------------------------------------------------------------------------- /product/Tethering.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/Tethering.mk -------------------------------------------------------------------------------- /product/audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/audio.mk -------------------------------------------------------------------------------- /product/browser.mk: -------------------------------------------------------------------------------- 1 | # Browser 2 | PRODUCT_PACKAGES += \ 3 | Jelly 4 | -------------------------------------------------------------------------------- /product/camera.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/camera.mk -------------------------------------------------------------------------------- /product/dalvik.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/dalvik.mk -------------------------------------------------------------------------------- /product/display.mk: -------------------------------------------------------------------------------- 1 | # Display 2 | PRODUCT_PACKAGES += \ 3 | libion 4 | -------------------------------------------------------------------------------- /product/fingerprint.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/fingerprint.mk -------------------------------------------------------------------------------- /product/fm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/fm.mk -------------------------------------------------------------------------------- /product/fs_manag.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/fs_manag.mk -------------------------------------------------------------------------------- /product/gps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/gps.mk -------------------------------------------------------------------------------- /product/hardware.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/hardware.mk -------------------------------------------------------------------------------- /product/input.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/input.mk -------------------------------------------------------------------------------- /product/media.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/media.mk -------------------------------------------------------------------------------- /product/nfc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/nfc.mk -------------------------------------------------------------------------------- /product/power.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/power.mk -------------------------------------------------------------------------------- /product/prop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/prop.mk -------------------------------------------------------------------------------- /product/ramdisk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/ramdisk.mk -------------------------------------------------------------------------------- /product/ril.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/ril.mk -------------------------------------------------------------------------------- /product/selinux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/selinux.mk -------------------------------------------------------------------------------- /product/sensors.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/sensors.mk -------------------------------------------------------------------------------- /product/telecomm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/telecomm.mk -------------------------------------------------------------------------------- /product/thermal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/thermal.mk -------------------------------------------------------------------------------- /product/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/usb.mk -------------------------------------------------------------------------------- /product/wallpaper.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/wallpaper.mk -------------------------------------------------------------------------------- /product/wifi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/product/wifi.mk -------------------------------------------------------------------------------- /proprietary-blobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/proprietary-blobs.txt -------------------------------------------------------------------------------- /ril/telephony/java/com/android/internal/telephony/MT6753.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/ril/telephony/java/com/android/internal/telephony/MT6753.java -------------------------------------------------------------------------------- /ril/telephony/java/com/android/internal/telephony/MtkEccList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/ril/telephony/java/com/android/internal/telephony/MtkEccList.java -------------------------------------------------------------------------------- /rootdir/enableswap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/enableswap.sh -------------------------------------------------------------------------------- /rootdir/factory_init.project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/factory_init.project.rc -------------------------------------------------------------------------------- /rootdir/factory_init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/factory_init.rc -------------------------------------------------------------------------------- /rootdir/fstab.charger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/fstab.charger -------------------------------------------------------------------------------- /rootdir/fstab.mt6735: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/fstab.mt6735 -------------------------------------------------------------------------------- /rootdir/init.microtrust.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.microtrust.rc -------------------------------------------------------------------------------- /rootdir/init.modem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.modem.rc -------------------------------------------------------------------------------- /rootdir/init.mt6735.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.mt6735.rc -------------------------------------------------------------------------------- /rootdir/init.mt6735.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.mt6735.usb.rc -------------------------------------------------------------------------------- /rootdir/init.project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.project.rc -------------------------------------------------------------------------------- /rootdir/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.rc -------------------------------------------------------------------------------- /rootdir/init.recovery.mt6735.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.recovery.mt6735.rc -------------------------------------------------------------------------------- /rootdir/init.ssd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/init.ssd.rc -------------------------------------------------------------------------------- /rootdir/meta_init.modem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/meta_init.modem.rc -------------------------------------------------------------------------------- /rootdir/meta_init.project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/meta_init.project.rc -------------------------------------------------------------------------------- /rootdir/meta_init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/meta_init.rc -------------------------------------------------------------------------------- /rootdir/recovery.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/recovery.fstab -------------------------------------------------------------------------------- /rootdir/ueventd.mt6735.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/rootdir/ueventd.mt6735.rc -------------------------------------------------------------------------------- /seccomp/mediacodec-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/seccomp/mediacodec-seccomp.policy -------------------------------------------------------------------------------- /sepolicy/BGW.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/BGW.te -------------------------------------------------------------------------------- /sepolicy/GoogleOtaBinder.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/GoogleOtaBinder.te -------------------------------------------------------------------------------- /sepolicy/MtkCodecService.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/MtkCodecService.te -------------------------------------------------------------------------------- /sepolicy/aal.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/aal.te -------------------------------------------------------------------------------- /sepolicy/adbd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/adbd.te -------------------------------------------------------------------------------- /sepolicy/aee_core_forwarder.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/aee_core_forwarder.te -------------------------------------------------------------------------------- /sepolicy/akmd09911.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/akmd09911.te -------------------------------------------------------------------------------- /sepolicy/akmd09912.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/akmd09912.te -------------------------------------------------------------------------------- /sepolicy/akmd8963.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/akmd8963.te -------------------------------------------------------------------------------- /sepolicy/akmd8975.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/akmd8975.te -------------------------------------------------------------------------------- /sepolicy/ami304d.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ami304d.te -------------------------------------------------------------------------------- /sepolicy/app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/app.te -------------------------------------------------------------------------------- /sepolicy/atci_service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/atci_service.te -------------------------------------------------------------------------------- /sepolicy/atcid.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/atcid.te -------------------------------------------------------------------------------- /sepolicy/audiocmdservice_atci.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/audiocmdservice_atci.te -------------------------------------------------------------------------------- /sepolicy/audioserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/audioserver.te -------------------------------------------------------------------------------- /sepolicy/autokd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/autokd.te -------------------------------------------------------------------------------- /sepolicy/batterymanager.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/batterymanager.te -------------------------------------------------------------------------------- /sepolicy/batterywarning.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/batterywarning.te -------------------------------------------------------------------------------- /sepolicy/bluetooth.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/bluetooth.te -------------------------------------------------------------------------------- /sepolicy/bmm050d.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/bmm050d.te -------------------------------------------------------------------------------- /sepolicy/bmm056d.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/bmm056d.te -------------------------------------------------------------------------------- /sepolicy/boot_logo_updater.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/boot_logo_updater.te -------------------------------------------------------------------------------- /sepolicy/bootanim.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/bootanim.te -------------------------------------------------------------------------------- /sepolicy/br_app_data_service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/br_app_data_service.te -------------------------------------------------------------------------------- /sepolicy/cameraserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/cameraserver.te -------------------------------------------------------------------------------- /sepolicy/ccci_fsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ccci_fsd.te -------------------------------------------------------------------------------- /sepolicy/ccci_mdinit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ccci_mdinit.te -------------------------------------------------------------------------------- /sepolicy/ccci_rpcd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ccci_rpcd.te -------------------------------------------------------------------------------- /sepolicy/clatd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/clatd.te -------------------------------------------------------------------------------- /sepolicy/cmddumper.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/cmddumper.te -------------------------------------------------------------------------------- /sepolicy/debuggerd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/debuggerd.te -------------------------------------------------------------------------------- /sepolicy/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/device.te -------------------------------------------------------------------------------- /sepolicy/dex2oat.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dex2oat.te -------------------------------------------------------------------------------- /sepolicy/dhcp.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dhcp.te -------------------------------------------------------------------------------- /sepolicy/dhcp6c.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dhcp6c.te -------------------------------------------------------------------------------- /sepolicy/disableswap.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/disableswap.te -------------------------------------------------------------------------------- /sepolicy/dm_agent_binder.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dm_agent_binder.te -------------------------------------------------------------------------------- /sepolicy/dmlog.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dmlog.te -------------------------------------------------------------------------------- /sepolicy/dnsmasq.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dnsmasq.te -------------------------------------------------------------------------------- /sepolicy/domain.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/domain.te -------------------------------------------------------------------------------- /sepolicy/drmserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/drmserver.te -------------------------------------------------------------------------------- /sepolicy/dumpstate.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/dumpstate.te -------------------------------------------------------------------------------- /sepolicy/eemcs_fsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/eemcs_fsd.te -------------------------------------------------------------------------------- /sepolicy/eemcs_mdinit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/eemcs_mdinit.te -------------------------------------------------------------------------------- /sepolicy/em_svr.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/em_svr.te -------------------------------------------------------------------------------- /sepolicy/emdlogger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/emdlogger.te -------------------------------------------------------------------------------- /sepolicy/emmc_rw_debug.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/emmc_rw_debug.te -------------------------------------------------------------------------------- /sepolicy/enableswap.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/enableswap.te -------------------------------------------------------------------------------- /sepolicy/epdg_wod.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/epdg_wod.te -------------------------------------------------------------------------------- /sepolicy/etsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/etsd.te -------------------------------------------------------------------------------- /sepolicy/factory.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/factory.te -------------------------------------------------------------------------------- /sepolicy/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/file.te -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/file_contexts -------------------------------------------------------------------------------- /sepolicy/fingerprintd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/fingerprintd.te -------------------------------------------------------------------------------- /sepolicy/flashlessd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/flashlessd.te -------------------------------------------------------------------------------- /sepolicy/fota1.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/fota1.te -------------------------------------------------------------------------------- /sepolicy/fs_use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/fs_use -------------------------------------------------------------------------------- /sepolicy/fsck.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/fsck.te -------------------------------------------------------------------------------- /sepolicy/fuelgauged.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/fuelgauged.te -------------------------------------------------------------------------------- /sepolicy/gas_srv.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/gas_srv.te -------------------------------------------------------------------------------- /sepolicy/gatekeeperd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/gatekeeperd.te -------------------------------------------------------------------------------- /sepolicy/ged_srv.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ged_srv.te -------------------------------------------------------------------------------- /sepolicy/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/geomagneticd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/geomagneticd.te -------------------------------------------------------------------------------- /sepolicy/gpsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/gpsd.te -------------------------------------------------------------------------------- /sepolicy/gsm0710muxd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/gsm0710muxd.te -------------------------------------------------------------------------------- /sepolicy/gsm0710muxdmd2.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/gsm0710muxdmd2.te -------------------------------------------------------------------------------- /sepolicy/guiext-server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/guiext-server.te -------------------------------------------------------------------------------- /sepolicy/hci_attach.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/hci_attach.te -------------------------------------------------------------------------------- /sepolicy/healthd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/healthd.te -------------------------------------------------------------------------------- /sepolicy/hostapd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/hostapd.te -------------------------------------------------------------------------------- /sepolicy/hotknot_native.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/hotknot_native.te -------------------------------------------------------------------------------- /sepolicy/icusbd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/icusbd.te -------------------------------------------------------------------------------- /sepolicy/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/init.te -------------------------------------------------------------------------------- /sepolicy/init_thh.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/init_thh.te -------------------------------------------------------------------------------- /sepolicy/inputflinger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/inputflinger.te -------------------------------------------------------------------------------- /sepolicy/install_recovery.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/install_recovery.te -------------------------------------------------------------------------------- /sepolicy/installd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/installd.te -------------------------------------------------------------------------------- /sepolicy/ipo_swap.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ipo_swap.te -------------------------------------------------------------------------------- /sepolicy/ipod.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ipod.te -------------------------------------------------------------------------------- /sepolicy/ipsec.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ipsec.te -------------------------------------------------------------------------------- /sepolicy/isolated_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/isolated_app.te -------------------------------------------------------------------------------- /sepolicy/ist8303.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ist8303.te -------------------------------------------------------------------------------- /sepolicy/kernel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/kernel.te -------------------------------------------------------------------------------- /sepolicy/keystore.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/keystore.te -------------------------------------------------------------------------------- /sepolicy/kpoc_charger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/kpoc_charger.te -------------------------------------------------------------------------------- /sepolicy/launchpppoe.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/launchpppoe.te -------------------------------------------------------------------------------- /sepolicy/lmkd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/lmkd.te -------------------------------------------------------------------------------- /sepolicy/logd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/logd.te -------------------------------------------------------------------------------- /sepolicy/matv.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/matv.te -------------------------------------------------------------------------------- /sepolicy/mc6420d.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mc6420d.te -------------------------------------------------------------------------------- /sepolicy/md_ctrl.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/md_ctrl.te -------------------------------------------------------------------------------- /sepolicy/md_monitor.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/md_monitor.te -------------------------------------------------------------------------------- /sepolicy/mdlogger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mdlogger.te -------------------------------------------------------------------------------- /sepolicy/mdnsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mdnsd.te -------------------------------------------------------------------------------- /sepolicy/mediascodec.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mediascodec.te -------------------------------------------------------------------------------- /sepolicy/mediaserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mediaserver.te -------------------------------------------------------------------------------- /sepolicy/memsicd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/memsicd.te -------------------------------------------------------------------------------- /sepolicy/memsicd3416x.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/memsicd3416x.te -------------------------------------------------------------------------------- /sepolicy/meta_tst.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/meta_tst.te -------------------------------------------------------------------------------- /sepolicy/mmc_ffu.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mmc_ffu.te -------------------------------------------------------------------------------- /sepolicy/mmp.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mmp.te -------------------------------------------------------------------------------- /sepolicy/mnld.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mnld.te -------------------------------------------------------------------------------- /sepolicy/mobicore.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mobicore.te -------------------------------------------------------------------------------- /sepolicy/mobile_log_d.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mobile_log_d.te -------------------------------------------------------------------------------- /sepolicy/mpud6050.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mpud6050.te -------------------------------------------------------------------------------- /sepolicy/msensord.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/msensord.te -------------------------------------------------------------------------------- /sepolicy/mtk_6620_launcher.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mtk_6620_launcher.te -------------------------------------------------------------------------------- /sepolicy/mtk_agpsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mtk_agpsd.te -------------------------------------------------------------------------------- /sepolicy/mtkmal.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mtkmal.te -------------------------------------------------------------------------------- /sepolicy/mtkrild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mtkrild.te -------------------------------------------------------------------------------- /sepolicy/mtkrildmd2.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mtkrildmd2.te -------------------------------------------------------------------------------- /sepolicy/mtp.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mtp.te -------------------------------------------------------------------------------- /sepolicy/muxreport.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/muxreport.te -------------------------------------------------------------------------------- /sepolicy/mvg_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mvg_app.te -------------------------------------------------------------------------------- /sepolicy/mxg2320d.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/mxg2320d.te -------------------------------------------------------------------------------- /sepolicy/net.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/net.te -------------------------------------------------------------------------------- /sepolicy/netd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/netd.te -------------------------------------------------------------------------------- /sepolicy/netdiag.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/netdiag.te -------------------------------------------------------------------------------- /sepolicy/nfc.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/nfc.te -------------------------------------------------------------------------------- /sepolicy/nvram_agent_binder.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/nvram_agent_binder.te -------------------------------------------------------------------------------- /sepolicy/nvram_daemon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/nvram_daemon.te -------------------------------------------------------------------------------- /sepolicy/orientationd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/orientationd.te -------------------------------------------------------------------------------- /sepolicy/osi.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/osi.te -------------------------------------------------------------------------------- /sepolicy/permission_check.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/permission_check.te -------------------------------------------------------------------------------- /sepolicy/platform_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/platform_app.te -------------------------------------------------------------------------------- /sepolicy/poad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/poad.te -------------------------------------------------------------------------------- /sepolicy/ppl_agent.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ppl_agent.te -------------------------------------------------------------------------------- /sepolicy/ppp.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ppp.te -------------------------------------------------------------------------------- /sepolicy/pppd_dt.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/pppd_dt.te -------------------------------------------------------------------------------- /sepolicy/pppd_via.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/pppd_via.te -------------------------------------------------------------------------------- /sepolicy/pq.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/pq.te -------------------------------------------------------------------------------- /sepolicy/program_binary.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/program_binary.te -------------------------------------------------------------------------------- /sepolicy/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/property.te -------------------------------------------------------------------------------- /sepolicy/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/property_contexts -------------------------------------------------------------------------------- /sepolicy/pvrsrvctl.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/pvrsrvctl.te -------------------------------------------------------------------------------- /sepolicy/racoon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/racoon.te -------------------------------------------------------------------------------- /sepolicy/radio.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/radio.te -------------------------------------------------------------------------------- /sepolicy/recovery.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/recovery.te -------------------------------------------------------------------------------- /sepolicy/resize.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/resize.te -------------------------------------------------------------------------------- /sepolicy/resmon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/resmon.te -------------------------------------------------------------------------------- /sepolicy/ril-3gddaemon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ril-3gddaemon.te -------------------------------------------------------------------------------- /sepolicy/rild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/rild.te -------------------------------------------------------------------------------- /sepolicy/runas.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/runas.te -------------------------------------------------------------------------------- /sepolicy/s62xd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/s62xd.te -------------------------------------------------------------------------------- /sepolicy/sbchk.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/sbchk.te -------------------------------------------------------------------------------- /sepolicy/sdcardd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/sdcardd.te -------------------------------------------------------------------------------- /sepolicy/server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/server.te -------------------------------------------------------------------------------- /sepolicy/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/service.te -------------------------------------------------------------------------------- /sepolicy/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/service_contexts -------------------------------------------------------------------------------- /sepolicy/servicemanager.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/servicemanager.te -------------------------------------------------------------------------------- /sepolicy/shared_relro.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/shared_relro.te -------------------------------------------------------------------------------- /sepolicy/shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/shell.te -------------------------------------------------------------------------------- /sepolicy/slpd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/slpd.te -------------------------------------------------------------------------------- /sepolicy/smart_audio.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/smart_audio.te -------------------------------------------------------------------------------- /sepolicy/sn.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/sn.te -------------------------------------------------------------------------------- /sepolicy/spm_loader.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/spm_loader.te -------------------------------------------------------------------------------- /sepolicy/st480.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/st480.te -------------------------------------------------------------------------------- /sepolicy/statusd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/statusd.te -------------------------------------------------------------------------------- /sepolicy/stp_dump3.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/stp_dump3.te -------------------------------------------------------------------------------- /sepolicy/surfaceflinger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/surfaceflinger.te -------------------------------------------------------------------------------- /sepolicy/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/system_app.te -------------------------------------------------------------------------------- /sepolicy/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/system_server.te -------------------------------------------------------------------------------- /sepolicy/te_macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/te_macros -------------------------------------------------------------------------------- /sepolicy/tee.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/tee.te -------------------------------------------------------------------------------- /sepolicy/teei_daemon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/teei_daemon.te -------------------------------------------------------------------------------- /sepolicy/terservice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/terservice.te -------------------------------------------------------------------------------- /sepolicy/thermal.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/thermal.te -------------------------------------------------------------------------------- /sepolicy/thermal_manager.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/thermal_manager.te -------------------------------------------------------------------------------- /sepolicy/thermald.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/thermald.te -------------------------------------------------------------------------------- /sepolicy/thermalloadalgod.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/thermalloadalgod.te -------------------------------------------------------------------------------- /sepolicy/tiny_mkswap.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/tiny_mkswap.te -------------------------------------------------------------------------------- /sepolicy/tiny_swapon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/tiny_swapon.te -------------------------------------------------------------------------------- /sepolicy/toolbox.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/toolbox.te -------------------------------------------------------------------------------- /sepolicy/tune2fs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/tune2fs.te -------------------------------------------------------------------------------- /sepolicy/tunman.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/tunman.te -------------------------------------------------------------------------------- /sepolicy/ueventd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/ueventd.te -------------------------------------------------------------------------------- /sepolicy/uncrypt.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/uncrypt.te -------------------------------------------------------------------------------- /sepolicy/untrusted_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/untrusted_app.te -------------------------------------------------------------------------------- /sepolicy/usbdongled.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/usbdongled.te -------------------------------------------------------------------------------- /sepolicy/vdc.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/vdc.te -------------------------------------------------------------------------------- /sepolicy/viarild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/viarild.te -------------------------------------------------------------------------------- /sepolicy/vold.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/vold.te -------------------------------------------------------------------------------- /sepolicy/volte_imcb.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/volte_imcb.te -------------------------------------------------------------------------------- /sepolicy/volte_stack.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/volte_stack.te -------------------------------------------------------------------------------- /sepolicy/volte_ua.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/volte_ua.te -------------------------------------------------------------------------------- /sepolicy/vtservice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/vtservice.te -------------------------------------------------------------------------------- /sepolicy/watchdogd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/watchdogd.te -------------------------------------------------------------------------------- /sepolicy/wfca.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/wfca.te -------------------------------------------------------------------------------- /sepolicy/wifi2agps.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/wifi2agps.te -------------------------------------------------------------------------------- /sepolicy/wmt_loader.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/wmt_loader.te -------------------------------------------------------------------------------- /sepolicy/wpa.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/wpa.te -------------------------------------------------------------------------------- /sepolicy/wpa_supplicant.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/wpa_supplicant.te -------------------------------------------------------------------------------- /sepolicy/xlog.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/xlog.te -------------------------------------------------------------------------------- /sepolicy/zpppd_gprs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/zpppd_gprs.te -------------------------------------------------------------------------------- /sepolicy/zygote.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/sepolicy/zygote.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/system.prop -------------------------------------------------------------------------------- /twrp.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/twrp.fstab -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/vendorsetup.sh -------------------------------------------------------------------------------- /wlan/wifi_hal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/Android.mk -------------------------------------------------------------------------------- /wlan/wifi_hal/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/common.cpp -------------------------------------------------------------------------------- /wlan/wifi_hal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/common.h -------------------------------------------------------------------------------- /wlan/wifi_hal/cpp_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/cpp_bindings.cpp -------------------------------------------------------------------------------- /wlan/wifi_hal/cpp_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/cpp_bindings.h -------------------------------------------------------------------------------- /wlan/wifi_hal/gscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/gscan.cpp -------------------------------------------------------------------------------- /wlan/wifi_hal/rtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/rtt.cpp -------------------------------------------------------------------------------- /wlan/wifi_hal/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/sync.h -------------------------------------------------------------------------------- /wlan/wifi_hal/wifi_hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wlan/wifi_hal/wifi_hal.cpp -------------------------------------------------------------------------------- /wpa_supplicant_8_lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wpa_supplicant_8_lib/Android.mk -------------------------------------------------------------------------------- /wpa_supplicant_8_lib/mediatek_driver_cmd_nl80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohancm/android_device_lenovo_A7010a48/HEAD/wpa_supplicant_8_lib/mediatek_driver_cmd_nl80211.c --------------------------------------------------------------------------------