├── Android.mk ├── AndroidBoard.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── NOTICE.cm ├── bbversion ├── Android.mk ├── NOTICE └── cpversion.c ├── bluetooth └── bdroid_buildcfg.h ├── cm.dependencies ├── cm.mk ├── configs ├── Hookkey.kl ├── asound.conf ├── dhcpcd.conf ├── egl.cfg ├── gps_brcm_conf.xml ├── hub_synaptics_touch.idc ├── hub_synaptics_touch.kl ├── ipc_channels.config ├── media_codecs.xml ├── media_profiles.xml ├── nvram.txt ├── vold.fstab └── wpa_supplicant.conf ├── dummy-rm ├── extract-files.sh ├── hwc ├── Android.mk ├── hal_public.h └── hwc.c ├── include ├── device_perms.h └── linux │ ├── ion.h │ ├── omap_ion.h │ └── omapfb.h ├── init.p970.rc ├── init.p970.usb.rc ├── init.vsnet ├── init.vsnet-down ├── liblights ├── Android.mk ├── NOTICE └── lights.c ├── overlay ├── frameworks │ └── base │ │ └── core │ │ └── res │ │ └── res │ │ ├── values │ │ └── config.xml │ │ └── xml │ │ ├── power_profile.xml │ │ └── storage_list.xml └── packages │ └── apps │ └── Camera │ └── res │ └── values │ └── config.xml ├── p970.mk ├── power ├── Android.mk └── power_bprj.c ├── prb ├── Android.mk └── prb.c ├── proprietary-files.txt ├── recovery.fstab ├── recovery ├── graphics.c └── postrecoveryboot.sh ├── ril └── telephony │ └── java │ └── com │ └── android │ └── internal │ └── telephony │ └── LGEInfineon.java ├── setup-makefiles.sh ├── system.prop ├── ueventd.p970.rc ├── vendorsetup.sh ├── vibrator.c └── wifimac ├── Android.mk ├── getmac.c └── wlan-precheck /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidBoard.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/AndroidBoard.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- 1 | PRODUCT_MAKEFILES := \ 2 | $(LOCAL_DIR)/p970.mk 3 | -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /NOTICE.cm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/NOTICE.cm -------------------------------------------------------------------------------- /bbversion/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/bbversion/Android.mk -------------------------------------------------------------------------------- /bbversion/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/bbversion/NOTICE -------------------------------------------------------------------------------- /bbversion/cpversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/bbversion/cpversion.c -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /cm.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/cm.dependencies -------------------------------------------------------------------------------- /cm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/cm.mk -------------------------------------------------------------------------------- /configs/Hookkey.kl: -------------------------------------------------------------------------------- 1 | key 248 HEADSETHOOK WAKE_DROPPED -------------------------------------------------------------------------------- /configs/asound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/asound.conf -------------------------------------------------------------------------------- /configs/dhcpcd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/dhcpcd.conf -------------------------------------------------------------------------------- /configs/egl.cfg: -------------------------------------------------------------------------------- 1 | 0 0 android 2 | 0 1 POWERVR_SGX530_125 3 | -------------------------------------------------------------------------------- /configs/gps_brcm_conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/gps_brcm_conf.xml -------------------------------------------------------------------------------- /configs/hub_synaptics_touch.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/hub_synaptics_touch.idc -------------------------------------------------------------------------------- /configs/hub_synaptics_touch.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/hub_synaptics_touch.kl -------------------------------------------------------------------------------- /configs/ipc_channels.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/ipc_channels.config -------------------------------------------------------------------------------- /configs/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/media_codecs.xml -------------------------------------------------------------------------------- /configs/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/media_profiles.xml -------------------------------------------------------------------------------- /configs/nvram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/nvram.txt -------------------------------------------------------------------------------- /configs/vold.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/vold.fstab -------------------------------------------------------------------------------- /configs/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/configs/wpa_supplicant.conf -------------------------------------------------------------------------------- /dummy-rm: -------------------------------------------------------------------------------- 1 | # CyanogenMod dummy file for RomManager 2 | -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/extract-files.sh -------------------------------------------------------------------------------- /hwc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/hwc/Android.mk -------------------------------------------------------------------------------- /hwc/hal_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/hwc/hal_public.h -------------------------------------------------------------------------------- /hwc/hwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/hwc/hwc.c -------------------------------------------------------------------------------- /include/device_perms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/include/device_perms.h -------------------------------------------------------------------------------- /include/linux/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/include/linux/ion.h -------------------------------------------------------------------------------- /include/linux/omap_ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/include/linux/omap_ion.h -------------------------------------------------------------------------------- /include/linux/omapfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/include/linux/omapfb.h -------------------------------------------------------------------------------- /init.p970.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/init.p970.rc -------------------------------------------------------------------------------- /init.p970.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/init.p970.usb.rc -------------------------------------------------------------------------------- /init.vsnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/init.vsnet -------------------------------------------------------------------------------- /init.vsnet-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/init.vsnet-down -------------------------------------------------------------------------------- /liblights/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/liblights/Android.mk -------------------------------------------------------------------------------- /liblights/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/liblights/NOTICE -------------------------------------------------------------------------------- /liblights/lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/liblights/lights.c -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/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/CyanogenMod/android_device_lge_p970/HEAD/overlay/frameworks/base/core/res/res/xml/storage_list.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Camera/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/overlay/packages/apps/Camera/res/values/config.xml -------------------------------------------------------------------------------- /p970.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/p970.mk -------------------------------------------------------------------------------- /power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/power/Android.mk -------------------------------------------------------------------------------- /power/power_bprj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/power/power_bprj.c -------------------------------------------------------------------------------- /prb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/prb/Android.mk -------------------------------------------------------------------------------- /prb/prb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/prb/prb.c -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /recovery.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/recovery.fstab -------------------------------------------------------------------------------- /recovery/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/recovery/graphics.c -------------------------------------------------------------------------------- /recovery/postrecoveryboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/recovery/postrecoveryboot.sh -------------------------------------------------------------------------------- /ril/telephony/java/com/android/internal/telephony/LGEInfineon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/ril/telephony/java/com/android/internal/telephony/LGEInfineon.java -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/system.prop -------------------------------------------------------------------------------- /ueventd.p970.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/ueventd.p970.rc -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/vendorsetup.sh -------------------------------------------------------------------------------- /vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/vibrator.c -------------------------------------------------------------------------------- /wifimac/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/wifimac/Android.mk -------------------------------------------------------------------------------- /wifimac/getmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/wifimac/getmac.c -------------------------------------------------------------------------------- /wifimac/wlan-precheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_lge_p970/HEAD/wifimac/wlan-precheck --------------------------------------------------------------------------------