├── .gitignore ├── CHANGELOG.mkdn ├── CONTRIBUTORS.mkdn ├── LICENSE ├── README.mkdn ├── bash_completion ├── git.bash └── repo.bash ├── charger ├── Android.mk ├── fonts │ ├── 560dpi │ ├── 640dpi │ ├── hdpi │ │ └── font_log.png │ ├── ldpi │ │ └── font_log.png │ ├── mdpi │ │ └── font_log.png │ ├── xhdpi │ │ └── font_log.png │ ├── xxhdpi │ │ └── font_log.png │ └── xxxhdpi │ │ └── font_log.png ├── healthd_board_cm.cpp └── images │ ├── 560dpi │ ├── 640dpi │ ├── hdpi │ ├── battery_fail.png │ └── cm_battery_scale.png │ ├── ldpi │ ├── battery_fail.png │ └── cm_battery_scale.png │ ├── mdpi │ ├── battery_fail.png │ └── cm_battery_scale.png │ ├── xhdpi │ ├── battery_fail.png │ └── cm_battery_scale.png │ ├── xxhdpi │ ├── battery_fail.png │ └── cm_battery_scale.png │ └── xxxhdpi │ ├── battery_fail.png │ └── cm_battery_scale.png ├── config ├── BoardConfigCM.mk ├── cm_audio.mk ├── cmsdk_common.mk ├── common.mk ├── common_full.mk ├── common_full_phone.mk ├── common_full_tablet_wifionly.mk ├── common_full_tv.mk ├── common_mini.mk ├── common_mini_phone.mk ├── common_mini_tablet_wifionly.mk ├── common_mini_tv.mk ├── partner_gms.mk ├── permissions │ ├── backup.xml │ ├── com.cyanogenmod.android.xml │ ├── org.cyanogenmod.appsuggest.xml │ ├── org.cyanogenmod.audio.xml │ ├── org.cyanogenmod.livedisplay.xml │ ├── org.cyanogenmod.livelockscreen.xml │ ├── org.cyanogenmod.partner.xml │ ├── org.cyanogenmod.performance.xml │ ├── org.cyanogenmod.profiles.xml │ ├── org.cyanogenmod.statusbar.xml │ ├── org.cyanogenmod.telephony.xml │ ├── org.cyanogenmod.theme.xml │ └── org.cyanogenmod.weather.xml ├── telephony.mk └── themes_common.mk ├── gello └── Android.mk ├── overlay ├── common │ ├── frameworks │ │ └── base │ │ │ ├── core │ │ │ └── res │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── drawable-sw600dp-nodpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── drawable-sw720dp-nodpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── default_wallpaper.png │ │ │ │ ├── values-mcc234-mnc02 │ │ │ │ └── config.xml │ │ │ │ ├── values-mcc234-mnc10 │ │ │ │ └── config.xml │ │ │ │ ├── values-mcc234-mnc11 │ │ │ │ └── config.xml │ │ │ │ ├── values-mcc268-mnc06 │ │ │ │ └── config.xml │ │ │ │ ├── values-mcc440-mnc20 │ │ │ │ └── config.xml │ │ │ │ ├── values │ │ │ │ └── config.xml │ │ │ │ └── xml │ │ │ │ └── config_webview_packages.xml │ │ │ └── packages │ │ │ ├── Keyguard │ │ │ └── res │ │ │ │ ├── values-sw600dp │ │ │ │ └── bools.xml │ │ │ │ └── values │ │ │ │ └── config.xml │ │ │ ├── SettingsProvider │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── defaults.xml │ │ │ └── SystemUI │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── packages │ │ ├── apps │ │ │ ├── Mms │ │ │ │ └── res │ │ │ │ │ └── xml-mcc440-mnc20 │ │ │ │ │ └── mms_config.xml │ │ │ ├── Settings │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ ├── config.xml │ │ │ │ │ └── strings.xml │ │ │ └── Trebuchet │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── inputmethods │ │ │ └── LatinIME │ │ │ │ └── java │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── gesture-input.xml │ │ ├── providers │ │ │ └── TelephonyProvider │ │ │ │ └── res │ │ │ │ ├── values-mcc310-mnc260 │ │ │ │ └── config.xml │ │ │ │ ├── values-mcc310-mnc410 │ │ │ │ └── config.xml │ │ │ │ └── values-mcc450-mnc08 │ │ │ │ └── config.xml │ │ └── services │ │ │ ├── Telecomm │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── cm_config.xml │ │ │ └── Telephony │ │ │ └── res │ │ │ └── values │ │ │ └── cm_config.xml │ └── vendor │ │ └── cmsdk │ │ ├── cm │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── packages │ │ └── CMSettingsProvider │ │ └── res │ │ └── values │ │ └── defaults.xml └── dictionaries │ └── packages │ └── inputmethods │ └── LatinIME │ └── java │ └── res │ └── raw │ ├── main_bg.dict │ ├── main_cs.dict │ ├── main_da.dict │ ├── main_el.dict │ ├── main_en_au.dict │ ├── main_fi.dict │ ├── main_hr.dict │ ├── main_iw.dict │ ├── main_ka.dict │ ├── main_lb.dict │ ├── main_nb.dict │ ├── main_nl.dict │ ├── main_pt_pt.dict │ ├── main_sv.dict │ └── main_uk.dict ├── prebuilt └── common │ ├── Android.mk │ ├── bin │ ├── 50-cm.sh │ ├── backuptool.functions │ ├── backuptool.sh │ ├── blacklist │ ├── otasigcheck.sh │ ├── sysinit │ ├── wget │ └── whitelist │ ├── bootanimation │ ├── 1080.zip │ ├── 1200.zip │ ├── 1440.zip │ ├── 1536.zip │ ├── 1600.zip │ ├── 240.zip │ ├── 320.zip │ ├── 360.zip │ ├── 480.zip │ ├── 540.zip │ ├── 600.zip │ ├── 720.zip │ ├── 768.zip │ ├── 800.zip │ └── halfres │ │ ├── 1080.zip │ │ ├── 1200.zip │ │ ├── 1440.zip │ │ ├── 1536.zip │ │ ├── 1600.zip │ │ ├── 240.zip │ │ ├── 320.zip │ │ ├── 360.zip │ │ ├── 480.zip │ │ ├── 540.zip │ │ ├── 600.zip │ │ ├── 720.zip │ │ ├── 768.zip │ │ ├── 800.zip │ │ └── generate-half-res-anims.sh │ ├── etc │ ├── apns-conf-cdma.xml │ ├── apns-conf.xml │ ├── init.d │ │ ├── 00banner │ │ └── 90userinit │ └── init.local.rc │ ├── lib │ └── content-types.properties │ └── media │ └── audio │ ├── alarms │ ├── CyanAlarm.ogg │ └── NuclearLaunch.ogg │ ├── notifications │ ├── CyanDoink.ogg │ ├── CyanMail.ogg │ ├── CyanMessage.ogg │ ├── Laser.ogg │ ├── Naughty.ogg │ ├── Pong.ogg │ ├── Rang.ogg │ └── Stone.ogg │ └── ringtones │ ├── Boxbeat.ogg │ ├── CyanTone.ogg │ ├── Highscore.ogg │ ├── Lyon.ogg │ ├── Rockin.ogg │ ├── Sheep.mp3 │ ├── Yukaay.ogg │ └── boosted │ ├── Boxbeat.ogg │ ├── CyanTone.ogg │ ├── Highscore.ogg │ ├── Lyon.ogg │ └── Rockin.ogg ├── sepolicy ├── adbd.te ├── app.te ├── bluetooth.te ├── bootanim.te ├── domain.te ├── drmserver.te ├── file.te ├── file_contexts ├── fsck_untrusted.te ├── genfs_contexts ├── healthd.te ├── hostapd.te ├── init.te ├── installd.te ├── kernel.te ├── livedisplay.te ├── mac_permissions.xml ├── mediaserver.te ├── mkfs.te ├── netd.te ├── property.te ├── property_contexts ├── qcom │ ├── adbd.te │ ├── bootanim.te │ ├── device.te │ ├── domain.te │ ├── dumpstate.te │ ├── livedisplay.te │ ├── mpdecision.te │ ├── perfd.te │ ├── perfprofd.te │ ├── property_contexts │ ├── sepolicy.mk │ ├── system_server.te │ ├── thermal-engine.te │ └── vold.te ├── recovery.te ├── seapp_contexts ├── sepolicy.mk ├── service.te ├── service_contexts ├── su.te ├── sysinit.te ├── system.te ├── system_app.te ├── system_server.te ├── themeservice_app.te ├── ueventd.te ├── uncrypt.te ├── untrusted_app.te ├── userinit.te ├── vold.te └── zygote.te └── vendorsetup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | proprietary/* 2 | -------------------------------------------------------------------------------- /CHANGELOG.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/CHANGELOG.mkdn -------------------------------------------------------------------------------- /CONTRIBUTORS.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/CONTRIBUTORS.mkdn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/README.mkdn -------------------------------------------------------------------------------- /bash_completion/git.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/bash_completion/git.bash -------------------------------------------------------------------------------- /bash_completion/repo.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/bash_completion/repo.bash -------------------------------------------------------------------------------- /charger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/Android.mk -------------------------------------------------------------------------------- /charger/fonts/560dpi: -------------------------------------------------------------------------------- 1 | xxhdpi -------------------------------------------------------------------------------- /charger/fonts/640dpi: -------------------------------------------------------------------------------- 1 | xxxhdpi -------------------------------------------------------------------------------- /charger/fonts/hdpi/font_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/fonts/hdpi/font_log.png -------------------------------------------------------------------------------- /charger/fonts/ldpi/font_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/fonts/ldpi/font_log.png -------------------------------------------------------------------------------- /charger/fonts/mdpi/font_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/fonts/mdpi/font_log.png -------------------------------------------------------------------------------- /charger/fonts/xhdpi/font_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/fonts/xhdpi/font_log.png -------------------------------------------------------------------------------- /charger/fonts/xxhdpi/font_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/fonts/xxhdpi/font_log.png -------------------------------------------------------------------------------- /charger/fonts/xxxhdpi/font_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/fonts/xxxhdpi/font_log.png -------------------------------------------------------------------------------- /charger/healthd_board_cm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/healthd_board_cm.cpp -------------------------------------------------------------------------------- /charger/images/560dpi: -------------------------------------------------------------------------------- 1 | xxxhdpi -------------------------------------------------------------------------------- /charger/images/640dpi: -------------------------------------------------------------------------------- 1 | xxxhdpi -------------------------------------------------------------------------------- /charger/images/hdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/hdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/hdpi/cm_battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/hdpi/cm_battery_scale.png -------------------------------------------------------------------------------- /charger/images/ldpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/ldpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/ldpi/cm_battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/ldpi/cm_battery_scale.png -------------------------------------------------------------------------------- /charger/images/mdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/mdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/mdpi/cm_battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/mdpi/cm_battery_scale.png -------------------------------------------------------------------------------- /charger/images/xhdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/xhdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/xhdpi/cm_battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/xhdpi/cm_battery_scale.png -------------------------------------------------------------------------------- /charger/images/xxhdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/xxhdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/xxhdpi/cm_battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/xxhdpi/cm_battery_scale.png -------------------------------------------------------------------------------- /charger/images/xxxhdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/xxxhdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/xxxhdpi/cm_battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/charger/images/xxxhdpi/cm_battery_scale.png -------------------------------------------------------------------------------- /config/BoardConfigCM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/BoardConfigCM.mk -------------------------------------------------------------------------------- /config/cm_audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/cm_audio.mk -------------------------------------------------------------------------------- /config/cmsdk_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/cmsdk_common.mk -------------------------------------------------------------------------------- /config/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common.mk -------------------------------------------------------------------------------- /config/common_full.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_full.mk -------------------------------------------------------------------------------- /config/common_full_phone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_full_phone.mk -------------------------------------------------------------------------------- /config/common_full_tablet_wifionly.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_full_tablet_wifionly.mk -------------------------------------------------------------------------------- /config/common_full_tv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_full_tv.mk -------------------------------------------------------------------------------- /config/common_mini.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_mini.mk -------------------------------------------------------------------------------- /config/common_mini_phone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_mini_phone.mk -------------------------------------------------------------------------------- /config/common_mini_tablet_wifionly.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_mini_tablet_wifionly.mk -------------------------------------------------------------------------------- /config/common_mini_tv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/common_mini_tv.mk -------------------------------------------------------------------------------- /config/partner_gms.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/partner_gms.mk -------------------------------------------------------------------------------- /config/permissions/backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/backup.xml -------------------------------------------------------------------------------- /config/permissions/com.cyanogenmod.android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/com.cyanogenmod.android.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.appsuggest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.appsuggest.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.audio.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.livedisplay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.livedisplay.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.livelockscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.livelockscreen.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.partner.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.performance.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.profiles.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.statusbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.statusbar.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.telephony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.telephony.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.theme.xml -------------------------------------------------------------------------------- /config/permissions/org.cyanogenmod.weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/permissions/org.cyanogenmod.weather.xml -------------------------------------------------------------------------------- /config/telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/config/telephony.mk -------------------------------------------------------------------------------- /config/themes_common.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gello/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/gello/Android.mk -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-hdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-hdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-sw600dp-nodpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-sw600dp-nodpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-sw720dp-nodpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-sw720dp-nodpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-xhdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-xhdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-xxhdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-xxhdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-xxxhdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/drawable-xxxhdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc234-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc234-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc234-mnc10/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc234-mnc10/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc234-mnc11/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc234-mnc11/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc268-mnc06/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc268-mnc06/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc440-mnc20/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc440-mnc20/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/xml/config_webview_packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/core/res/res/xml/config_webview_packages.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/Keyguard/res/values-sw600dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/packages/Keyguard/res/values-sw600dp/bools.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/Keyguard/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/packages/Keyguard/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Mms/res/xml-mcc440-mnc20/mms_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/apps/Mms/res/xml-mcc440-mnc20/mms_config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/apps/Settings/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Trebuchet/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/apps/Trebuchet/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/inputmethods/LatinIME/java/res/values/gesture-input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/inputmethods/LatinIME/java/res/values/gesture-input.xml -------------------------------------------------------------------------------- /overlay/common/packages/providers/TelephonyProvider/res/values-mcc310-mnc260/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/providers/TelephonyProvider/res/values-mcc310-mnc260/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/providers/TelephonyProvider/res/values-mcc310-mnc410/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/providers/TelephonyProvider/res/values-mcc310-mnc410/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/providers/TelephonyProvider/res/values-mcc450-mnc08/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/providers/TelephonyProvider/res/values-mcc450-mnc08/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telecomm/res/values/cm_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/services/Telecomm/res/values/cm_config.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values/cm_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/packages/services/Telephony/res/values/cm_config.xml -------------------------------------------------------------------------------- /overlay/common/vendor/cmsdk/cm/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/vendor/cmsdk/cm/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/vendor/cmsdk/packages/CMSettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/common/vendor/cmsdk/packages/CMSettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_bg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_bg.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_cs.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_cs.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_da.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_da.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_el.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_el.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_en_au.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_en_au.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_fi.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_fi.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_hr.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_hr.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_iw.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_iw.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_ka.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_ka.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_lb.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_lb.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_nb.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_nb.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_nl.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_nl.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_pt_pt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_pt_pt.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_sv.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_sv.dict -------------------------------------------------------------------------------- /overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_uk.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/overlay/dictionaries/packages/inputmethods/LatinIME/java/res/raw/main_uk.dict -------------------------------------------------------------------------------- /prebuilt/common/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/Android.mk -------------------------------------------------------------------------------- /prebuilt/common/bin/50-cm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/50-cm.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/backuptool.functions -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/backuptool.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/blacklist -------------------------------------------------------------------------------- /prebuilt/common/bin/otasigcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/otasigcheck.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/sysinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/sysinit -------------------------------------------------------------------------------- /prebuilt/common/bin/wget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bin/wget -------------------------------------------------------------------------------- /prebuilt/common/bin/whitelist: -------------------------------------------------------------------------------- 1 | b0a27bcb5c7504a81e1450a8313e37cb 2 | -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1080.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/1080.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1200.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/1200.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1440.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/1440.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1536.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/1536.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1600.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/1600.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/240.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/240.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/320.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/320.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/360.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/360.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/480.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/480.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/540.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/540.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/600.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/600.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/720.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/720.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/768.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/768.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/800.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/800.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/1080.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/1080.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/1200.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/1200.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/1440.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/1440.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/1536.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/1536.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/1600.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/1600.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/240.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/240.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/320.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/320.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/360.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/360.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/480.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/480.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/540.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/540.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/600.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/600.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/720.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/720.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/768.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/768.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/800.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/800.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/halfres/generate-half-res-anims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/bootanimation/halfres/generate-half-res-anims.sh -------------------------------------------------------------------------------- /prebuilt/common/etc/apns-conf-cdma.xml: -------------------------------------------------------------------------------- 1 | apns-conf.xml -------------------------------------------------------------------------------- /prebuilt/common/etc/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/etc/apns-conf.xml -------------------------------------------------------------------------------- /prebuilt/common/etc/init.d/00banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/etc/init.d/00banner -------------------------------------------------------------------------------- /prebuilt/common/etc/init.d/90userinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/etc/init.d/90userinit -------------------------------------------------------------------------------- /prebuilt/common/etc/init.local.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/etc/init.local.rc -------------------------------------------------------------------------------- /prebuilt/common/lib/content-types.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/lib/content-types.properties -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/CyanAlarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/alarms/CyanAlarm.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/NuclearLaunch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/alarms/NuclearLaunch.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/CyanDoink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/CyanDoink.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/CyanMail.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/CyanMail.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/CyanMessage.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/CyanMessage.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Laser.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/Laser.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Naughty.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/Naughty.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Pong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/Pong.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Rang.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/Rang.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Stone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/notifications/Stone.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Boxbeat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/Boxbeat.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/CyanTone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/CyanTone.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Highscore.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/Highscore.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Lyon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/Lyon.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Rockin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/Rockin.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Sheep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/Sheep.mp3 -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Yukaay.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/Yukaay.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/boosted/Boxbeat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/boosted/Boxbeat.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/boosted/CyanTone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/boosted/CyanTone.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/boosted/Highscore.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/boosted/Highscore.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/boosted/Lyon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/boosted/Lyon.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/boosted/Rockin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/prebuilt/common/media/audio/ringtones/boosted/Rockin.ogg -------------------------------------------------------------------------------- /sepolicy/adbd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/adbd.te -------------------------------------------------------------------------------- /sepolicy/app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/app.te -------------------------------------------------------------------------------- /sepolicy/bluetooth.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/bluetooth.te -------------------------------------------------------------------------------- /sepolicy/bootanim.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/bootanim.te -------------------------------------------------------------------------------- /sepolicy/domain.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/domain.te -------------------------------------------------------------------------------- /sepolicy/drmserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/drmserver.te -------------------------------------------------------------------------------- /sepolicy/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/file.te -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/file_contexts -------------------------------------------------------------------------------- /sepolicy/fsck_untrusted.te: -------------------------------------------------------------------------------- 1 | # External storage 2 | allow fsck_untrusted self:capability sys_admin; 3 | -------------------------------------------------------------------------------- /sepolicy/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/healthd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/healthd.te -------------------------------------------------------------------------------- /sepolicy/hostapd.te: -------------------------------------------------------------------------------- 1 | allow hostapd netd:unix_dgram_socket sendto; 2 | -------------------------------------------------------------------------------- /sepolicy/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/init.te -------------------------------------------------------------------------------- /sepolicy/installd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/installd.te -------------------------------------------------------------------------------- /sepolicy/kernel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/kernel.te -------------------------------------------------------------------------------- /sepolicy/livedisplay.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/livedisplay.te -------------------------------------------------------------------------------- /sepolicy/mac_permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/mac_permissions.xml -------------------------------------------------------------------------------- /sepolicy/mediaserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/mediaserver.te -------------------------------------------------------------------------------- /sepolicy/mkfs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/mkfs.te -------------------------------------------------------------------------------- /sepolicy/netd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/netd.te -------------------------------------------------------------------------------- /sepolicy/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/property.te -------------------------------------------------------------------------------- /sepolicy/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/property_contexts -------------------------------------------------------------------------------- /sepolicy/qcom/adbd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/adbd.te -------------------------------------------------------------------------------- /sepolicy/qcom/bootanim.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/bootanim.te -------------------------------------------------------------------------------- /sepolicy/qcom/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/device.te -------------------------------------------------------------------------------- /sepolicy/qcom/domain.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/domain.te -------------------------------------------------------------------------------- /sepolicy/qcom/dumpstate.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/dumpstate.te -------------------------------------------------------------------------------- /sepolicy/qcom/livedisplay.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/livedisplay.te -------------------------------------------------------------------------------- /sepolicy/qcom/mpdecision.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/mpdecision.te -------------------------------------------------------------------------------- /sepolicy/qcom/perfd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/perfd.te -------------------------------------------------------------------------------- /sepolicy/qcom/perfprofd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/perfprofd.te -------------------------------------------------------------------------------- /sepolicy/qcom/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/property_contexts -------------------------------------------------------------------------------- /sepolicy/qcom/sepolicy.mk: -------------------------------------------------------------------------------- 1 | BOARD_SEPOLICY_DIRS += \ 2 | vendor/cm/sepolicy/qcom 3 | -------------------------------------------------------------------------------- /sepolicy/qcom/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/system_server.te -------------------------------------------------------------------------------- /sepolicy/qcom/thermal-engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/qcom/thermal-engine.te -------------------------------------------------------------------------------- /sepolicy/qcom/vold.te: -------------------------------------------------------------------------------- 1 | allow vold persist_file:dir { getattr read open ioctl }; 2 | -------------------------------------------------------------------------------- /sepolicy/recovery.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/recovery.te -------------------------------------------------------------------------------- /sepolicy/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/sepolicy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/sepolicy.mk -------------------------------------------------------------------------------- /sepolicy/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/service.te -------------------------------------------------------------------------------- /sepolicy/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/service_contexts -------------------------------------------------------------------------------- /sepolicy/su.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/su.te -------------------------------------------------------------------------------- /sepolicy/sysinit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/sysinit.te -------------------------------------------------------------------------------- /sepolicy/system.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/system.te -------------------------------------------------------------------------------- /sepolicy/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/system_app.te -------------------------------------------------------------------------------- /sepolicy/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/system_server.te -------------------------------------------------------------------------------- /sepolicy/themeservice_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/themeservice_app.te -------------------------------------------------------------------------------- /sepolicy/ueventd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/ueventd.te -------------------------------------------------------------------------------- /sepolicy/uncrypt.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/uncrypt.te -------------------------------------------------------------------------------- /sepolicy/untrusted_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/untrusted_app.te -------------------------------------------------------------------------------- /sepolicy/userinit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/userinit.te -------------------------------------------------------------------------------- /sepolicy/vold.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/vold.te -------------------------------------------------------------------------------- /sepolicy/zygote.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/sepolicy/zygote.te -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_vendor_cm/HEAD/vendorsetup.sh --------------------------------------------------------------------------------