├── Android.mk ├── AndroidBoard.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── CleanSpec.mk ├── DefyParts ├── Android.mk ├── AndroidManifest.xml ├── res │ ├── layout │ │ ├── dialog_baseband_selection.xml │ │ └── preference_dialog_brightness.xml │ ├── values-de │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values │ │ ├── arrays.xml │ │ └── strings.xml │ └── xml │ │ └── settings.xml └── src │ └── com │ └── cyanogenmod │ └── defyparts │ ├── BasebandSelectionPreference.java │ ├── BrightnessPreference.java │ └── SettingsActivity.java ├── NOTICE.cm ├── README ├── UsbController.cpp ├── bluedroid.c ├── bootmenu ├── binary │ ├── 2nd-boot │ ├── 2nd-init.234 │ ├── adbd.root │ ├── logwrapper.bin │ ├── lsof.static │ └── su ├── bootmenu.mk ├── config │ ├── bootmenu_bypass │ ├── default.prop │ ├── default_bootmode.conf │ └── overclock.conf ├── images │ └── background.png ├── recovery │ ├── recovery.fstab │ ├── res │ │ ├── images │ │ │ ├── icon_cm.png │ │ │ ├── icon_decryption.png │ │ │ ├── icon_done.png │ │ │ ├── icon_encryption.png │ │ │ ├── icon_error.png │ │ │ ├── icon_firmware_error.png │ │ │ ├── icon_firmware_install.png │ │ │ ├── icon_installing.png │ │ │ ├── indeterminate1.png │ │ │ ├── indeterminate2.png │ │ │ ├── indeterminate3.png │ │ │ ├── indeterminate4.png │ │ │ ├── indeterminate5.png │ │ │ ├── indeterminate6.png │ │ │ ├── progress_bar_empty.png │ │ │ ├── progress_bar_empty_left_round.png │ │ │ ├── progress_bar_empty_right_round.png │ │ │ ├── progress_bar_fill.png │ │ │ ├── progress_bar_left_round.png │ │ │ ├── progress_bar_right_round.png │ │ │ ├── progress_empty.png │ │ │ └── progress_fill.png │ │ └── keys │ └── sbin │ │ ├── badblocks │ │ ├── dedupe │ │ ├── dump_image │ │ ├── e2fsck │ │ ├── fix_permissions │ │ ├── killrecovery.sh │ │ ├── mke2fs │ │ ├── mke2fs.bin │ │ ├── nandroid-md5.sh │ │ ├── parted │ │ ├── postrecoveryboot.sh │ │ ├── recovery │ │ ├── recoveryexit.sh │ │ ├── resize2fs │ │ ├── sdparted │ │ ├── tune2fs │ │ └── tune2fs.bin └── script │ ├── 2nd-boot.sh │ ├── 2nd-init.sh │ ├── _config.sh │ ├── adbd.sh │ ├── bootmode_clean.sh │ ├── cdrom.sh │ ├── data.sh │ ├── overclock.sh │ ├── pdsbackup.sh │ ├── post_bootmenu.sh │ ├── pre_bootmenu.sh │ ├── reboot_command.sh │ ├── recovery.sh │ ├── recovery_stable.sh │ ├── sdcard.sh │ ├── stock.sh │ └── system.sh ├── custom_backup_list.txt ├── custom_backup_release.txt ├── egl.cfg ├── extract-files.sh ├── jordan-blobs.mk ├── jordan.mk ├── kernel ├── kernel-ramfs.cpio.gz ├── libaudiopolicy ├── Android.mk ├── AudioPolicyManager.cpp ├── AudioPolicyManager.h └── MODULE_LICENSE_APACHE2 ├── libcamera ├── Android.mk ├── JordanCameraWrapper.cpp └── JordanCameraWrapper.h ├── libfnc ├── Android.mk └── libfnc.c ├── liblights ├── Android.mk └── lights.c ├── libsensors ├── Android.mk ├── InputEventReader.cpp ├── InputEventReader.h ├── MODULE_LICENSE_APACHE2 ├── SensorAK8973.cpp ├── SensorAK8973.h ├── SensorBase.cpp ├── SensorBase.h ├── SensorISL29030.cpp ├── SensorISL29030.h ├── SensorKXTF9.cpp ├── SensorKXTF9.h ├── kernel │ ├── akm8973_akmd.h │ ├── isl29030.h │ └── kxtf9.h ├── nusensors.cpp ├── nusensors.h └── sensors.c ├── logo-bunny.img ├── logo-google.raw ├── media_profiles.xml ├── modules ├── README ├── backlight.ko ├── backlight │ ├── Kconfig │ ├── Makefile │ ├── cpcap-bright.c │ ├── hook.c │ └── hook.h ├── cifs.ko ├── cpufreq_conservative.ko ├── cpufreq_interactive.ko ├── cpufreq_powersave.ko ├── cpufreq_smartass.ko ├── cpufreq_stats.ko ├── gpiofix.ko ├── gpiofix │ ├── Kconfig │ ├── Makefile │ ├── gpio-fix.c │ ├── hook.c │ └── hook.h ├── logcap.ko ├── logcap │ ├── Kconfig │ ├── Makefile │ ├── hook.c │ ├── hook.h │ ├── log-cpcap.c │ ├── regs-cpcap.c │ └── regs-cpcap.h ├── mapphone_defconfig ├── mmcfix.ko ├── mmcfix │ ├── Kconfig │ ├── Makefile │ ├── hook.c │ ├── hook.h │ └── mmc-fix.c ├── modules.alias ├── modules.dep ├── modules.dep.bb ├── multitouch.ko ├── multitouch │ ├── Kconfig │ ├── Makefile │ ├── defy-multitouch.c │ ├── hook.c │ └── hook.h ├── nls_utf8.ko ├── overclock │ ├── Kconfig │ ├── Makefile │ ├── cpufreq_conservative.c │ ├── cpufreq_interactive.c │ ├── cpufreq_powersave.c │ ├── cpufreq_smartass.c │ ├── cpufreq_stats.c │ └── overclock.c ├── overclock_defy.ko ├── proximity.ko ├── proximity │ ├── Kconfig │ ├── Makefile │ └── isl-proximity.c ├── slow-work.ko ├── strip.sh ├── symsearch.ko ├── symsearch │ ├── Kconfig │ ├── Makefile │ ├── symsearch.c │ └── symsearch.h ├── tiap_drv.ko ├── tiwlan_drv.ko ├── tun.ko ├── usbled.ko ├── usbled │ ├── Kconfig │ ├── Makefile │ └── usb-led.c └── xt_multiport.ko ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── default_wallpaper.jpg │ │ │ ├── values │ │ │ ├── arrays.xml │ │ │ └── config.xml │ │ │ └── xml │ │ │ ├── eri.xml │ │ │ └── power_profile.xml │ │ ├── packages │ │ └── SettingsProvider │ │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── tests │ │ └── ImfTest │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ ├── CMParts │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Camera │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Contacts │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── DSPManager │ │ └── res │ │ │ └── xml │ │ │ └── main_preferences.xml │ ├── Mms │ │ └── res │ │ │ └── xml │ │ │ └── mms_config.xml │ ├── Phone │ │ └── res │ │ │ └── values │ │ │ ├── array.xml │ │ │ └── config.xml │ ├── Settings │ │ └── res │ │ │ └── values │ │ │ └── bools.xml │ ├── Torch │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── Usb │ │ └── res │ │ └── values │ │ └── config.xml │ └── providers │ └── ContactsProvider │ └── res │ └── values │ └── unrestricted_packages.xml ├── prebuilt ├── app │ └── DroidSSHd.apk ├── etc │ ├── busybox.fstab │ ├── gpsconfig.xml │ ├── init.d │ │ ├── 00baseband │ │ ├── 01sysctl │ │ ├── 03adbd │ │ ├── 05mountsd │ │ ├── 08backlight │ │ ├── 09logcap │ │ ├── 80kineto │ │ └── 90multitouch │ ├── location.cfg │ ├── profile │ ├── sysctl.conf │ └── wifi │ │ ├── dnsmasq.conf │ │ ├── tiwlan.ini │ │ ├── tiwlan_ap.ini │ │ └── wpa_supplicant.conf ├── lib │ └── libNativeSSHd.so └── usr │ ├── cpcap.kl │ ├── keypad.kl │ ├── null.kl │ └── qwerty.kl ├── profiles ├── 2nd-init │ ├── init.mapphone_umts.rc │ └── ueventd.rc ├── backup │ ├── init │ ├── init.mapphone_umts.rc │ ├── init.rc │ ├── sbin │ │ └── ueventd │ └── ueventd.rc └── moto │ └── froyo │ ├── init.mapphone_umts.rc │ └── init.rc ├── proprietary-files.txt ├── recovery.fstab ├── recovery_kernel ├── recovery_ui.c ├── releasetools ├── squisher └── squisher.sh ├── setup-makefiles.sh ├── system.prop ├── updater-script ├── updater-script-rel ├── vendorsetup.sh └── vold.fstab /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidBoard.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/AndroidBoard.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /DefyParts/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/Android.mk -------------------------------------------------------------------------------- /DefyParts/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/AndroidManifest.xml -------------------------------------------------------------------------------- /DefyParts/res/layout/dialog_baseband_selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/layout/dialog_baseband_selection.xml -------------------------------------------------------------------------------- /DefyParts/res/layout/preference_dialog_brightness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/layout/preference_dialog_brightness.xml -------------------------------------------------------------------------------- /DefyParts/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-de/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-es/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-fr/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-it/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-ja/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-nl/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-pl/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-pt/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-ru/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values/arrays.xml -------------------------------------------------------------------------------- /DefyParts/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/values/strings.xml -------------------------------------------------------------------------------- /DefyParts/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/res/xml/settings.xml -------------------------------------------------------------------------------- /DefyParts/src/com/cyanogenmod/defyparts/BasebandSelectionPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/src/com/cyanogenmod/defyparts/BasebandSelectionPreference.java -------------------------------------------------------------------------------- /DefyParts/src/com/cyanogenmod/defyparts/BrightnessPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/src/com/cyanogenmod/defyparts/BrightnessPreference.java -------------------------------------------------------------------------------- /DefyParts/src/com/cyanogenmod/defyparts/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/DefyParts/src/com/cyanogenmod/defyparts/SettingsActivity.java -------------------------------------------------------------------------------- /NOTICE.cm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/NOTICE.cm -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/README -------------------------------------------------------------------------------- /UsbController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/UsbController.cpp -------------------------------------------------------------------------------- /bluedroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bluedroid.c -------------------------------------------------------------------------------- /bootmenu/binary/2nd-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/binary/2nd-boot -------------------------------------------------------------------------------- /bootmenu/binary/2nd-init.234: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/binary/2nd-init.234 -------------------------------------------------------------------------------- /bootmenu/binary/adbd.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/binary/adbd.root -------------------------------------------------------------------------------- /bootmenu/binary/logwrapper.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/binary/logwrapper.bin -------------------------------------------------------------------------------- /bootmenu/binary/lsof.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/binary/lsof.static -------------------------------------------------------------------------------- /bootmenu/binary/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/binary/su -------------------------------------------------------------------------------- /bootmenu/bootmenu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/bootmenu.mk -------------------------------------------------------------------------------- /bootmenu/config/bootmenu_bypass: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /bootmenu/config/default.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/config/default.prop -------------------------------------------------------------------------------- /bootmenu/config/default_bootmode.conf: -------------------------------------------------------------------------------- 1 | 2nd-init 2 | -------------------------------------------------------------------------------- /bootmenu/config/overclock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/config/overclock.conf -------------------------------------------------------------------------------- /bootmenu/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/images/background.png -------------------------------------------------------------------------------- /bootmenu/recovery/recovery.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/recovery.fstab -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_cm.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_decryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_decryption.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_done.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_encryption.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_error.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_firmware_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_firmware_error.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_firmware_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_firmware_install.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/icon_installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/icon_installing.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/indeterminate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/indeterminate1.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/indeterminate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/indeterminate2.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/indeterminate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/indeterminate3.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/indeterminate4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/indeterminate4.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/indeterminate5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/indeterminate5.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/indeterminate6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/indeterminate6.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_bar_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_bar_empty.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_bar_empty_left_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_bar_empty_left_round.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_bar_empty_right_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_bar_empty_right_round.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_bar_fill.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_bar_left_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_bar_left_round.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_bar_right_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_bar_right_round.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_empty.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/images/progress_fill.png -------------------------------------------------------------------------------- /bootmenu/recovery/res/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/res/keys -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/badblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/badblocks -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/dedupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/dedupe -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/dump_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/dump_image -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/e2fsck -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/fix_permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/fix_permissions -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/killrecovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/killrecovery.sh -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/mke2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/mke2fs -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/mke2fs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/mke2fs.bin -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/nandroid-md5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/nandroid-md5.sh -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/parted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/parted -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/postrecoveryboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/postrecoveryboot.sh -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/recovery -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/recoveryexit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/recoveryexit.sh -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/resize2fs -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/sdparted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/sdparted -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/tune2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/tune2fs -------------------------------------------------------------------------------- /bootmenu/recovery/sbin/tune2fs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/recovery/sbin/tune2fs.bin -------------------------------------------------------------------------------- /bootmenu/script/2nd-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/2nd-boot.sh -------------------------------------------------------------------------------- /bootmenu/script/2nd-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/2nd-init.sh -------------------------------------------------------------------------------- /bootmenu/script/_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/_config.sh -------------------------------------------------------------------------------- /bootmenu/script/adbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/adbd.sh -------------------------------------------------------------------------------- /bootmenu/script/bootmode_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/bootmode_clean.sh -------------------------------------------------------------------------------- /bootmenu/script/cdrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/cdrom.sh -------------------------------------------------------------------------------- /bootmenu/script/data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/data.sh -------------------------------------------------------------------------------- /bootmenu/script/overclock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/overclock.sh -------------------------------------------------------------------------------- /bootmenu/script/pdsbackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/pdsbackup.sh -------------------------------------------------------------------------------- /bootmenu/script/post_bootmenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/post_bootmenu.sh -------------------------------------------------------------------------------- /bootmenu/script/pre_bootmenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/pre_bootmenu.sh -------------------------------------------------------------------------------- /bootmenu/script/reboot_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/reboot_command.sh -------------------------------------------------------------------------------- /bootmenu/script/recovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/recovery.sh -------------------------------------------------------------------------------- /bootmenu/script/recovery_stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/recovery_stable.sh -------------------------------------------------------------------------------- /bootmenu/script/sdcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/sdcard.sh -------------------------------------------------------------------------------- /bootmenu/script/stock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/stock.sh -------------------------------------------------------------------------------- /bootmenu/script/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/bootmenu/script/system.sh -------------------------------------------------------------------------------- /custom_backup_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/custom_backup_list.txt -------------------------------------------------------------------------------- /custom_backup_release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/custom_backup_release.txt -------------------------------------------------------------------------------- /egl.cfg: -------------------------------------------------------------------------------- 1 | 0 1 POWERVR_SGX530_125 2 | -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/extract-files.sh -------------------------------------------------------------------------------- /jordan-blobs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/jordan-blobs.mk -------------------------------------------------------------------------------- /jordan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/jordan.mk -------------------------------------------------------------------------------- /kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/kernel -------------------------------------------------------------------------------- /kernel-ramfs.cpio.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/kernel-ramfs.cpio.gz -------------------------------------------------------------------------------- /libaudiopolicy/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libaudiopolicy/Android.mk -------------------------------------------------------------------------------- /libaudiopolicy/AudioPolicyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libaudiopolicy/AudioPolicyManager.cpp -------------------------------------------------------------------------------- /libaudiopolicy/AudioPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libaudiopolicy/AudioPolicyManager.h -------------------------------------------------------------------------------- /libaudiopolicy/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libcamera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libcamera/Android.mk -------------------------------------------------------------------------------- /libcamera/JordanCameraWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libcamera/JordanCameraWrapper.cpp -------------------------------------------------------------------------------- /libcamera/JordanCameraWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libcamera/JordanCameraWrapper.h -------------------------------------------------------------------------------- /libfnc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libfnc/Android.mk -------------------------------------------------------------------------------- /libfnc/libfnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libfnc/libfnc.c -------------------------------------------------------------------------------- /liblights/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/liblights/Android.mk -------------------------------------------------------------------------------- /liblights/lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/liblights/lights.c -------------------------------------------------------------------------------- /libsensors/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/Android.mk -------------------------------------------------------------------------------- /libsensors/InputEventReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/InputEventReader.cpp -------------------------------------------------------------------------------- /libsensors/InputEventReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/InputEventReader.h -------------------------------------------------------------------------------- /libsensors/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsensors/SensorAK8973.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorAK8973.cpp -------------------------------------------------------------------------------- /libsensors/SensorAK8973.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorAK8973.h -------------------------------------------------------------------------------- /libsensors/SensorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorBase.cpp -------------------------------------------------------------------------------- /libsensors/SensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorBase.h -------------------------------------------------------------------------------- /libsensors/SensorISL29030.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorISL29030.cpp -------------------------------------------------------------------------------- /libsensors/SensorISL29030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorISL29030.h -------------------------------------------------------------------------------- /libsensors/SensorKXTF9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorKXTF9.cpp -------------------------------------------------------------------------------- /libsensors/SensorKXTF9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/SensorKXTF9.h -------------------------------------------------------------------------------- /libsensors/kernel/akm8973_akmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/kernel/akm8973_akmd.h -------------------------------------------------------------------------------- /libsensors/kernel/isl29030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/kernel/isl29030.h -------------------------------------------------------------------------------- /libsensors/kernel/kxtf9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/kernel/kxtf9.h -------------------------------------------------------------------------------- /libsensors/nusensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/nusensors.cpp -------------------------------------------------------------------------------- /libsensors/nusensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/nusensors.h -------------------------------------------------------------------------------- /libsensors/sensors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/libsensors/sensors.c -------------------------------------------------------------------------------- /logo-bunny.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/logo-bunny.img -------------------------------------------------------------------------------- /logo-google.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/logo-google.raw -------------------------------------------------------------------------------- /media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/media_profiles.xml -------------------------------------------------------------------------------- /modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/README -------------------------------------------------------------------------------- /modules/backlight.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/backlight.ko -------------------------------------------------------------------------------- /modules/backlight/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/backlight/Kconfig -------------------------------------------------------------------------------- /modules/backlight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/backlight/Makefile -------------------------------------------------------------------------------- /modules/backlight/cpcap-bright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/backlight/cpcap-bright.c -------------------------------------------------------------------------------- /modules/backlight/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/backlight/hook.c -------------------------------------------------------------------------------- /modules/backlight/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/backlight/hook.h -------------------------------------------------------------------------------- /modules/cifs.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/cifs.ko -------------------------------------------------------------------------------- /modules/cpufreq_conservative.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/cpufreq_conservative.ko -------------------------------------------------------------------------------- /modules/cpufreq_interactive.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/cpufreq_interactive.ko -------------------------------------------------------------------------------- /modules/cpufreq_powersave.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/cpufreq_powersave.ko -------------------------------------------------------------------------------- /modules/cpufreq_smartass.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/cpufreq_smartass.ko -------------------------------------------------------------------------------- /modules/cpufreq_stats.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/cpufreq_stats.ko -------------------------------------------------------------------------------- /modules/gpiofix.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/gpiofix.ko -------------------------------------------------------------------------------- /modules/gpiofix/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/gpiofix/Kconfig -------------------------------------------------------------------------------- /modules/gpiofix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/gpiofix/Makefile -------------------------------------------------------------------------------- /modules/gpiofix/gpio-fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/gpiofix/gpio-fix.c -------------------------------------------------------------------------------- /modules/gpiofix/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/gpiofix/hook.c -------------------------------------------------------------------------------- /modules/gpiofix/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/gpiofix/hook.h -------------------------------------------------------------------------------- /modules/logcap.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap.ko -------------------------------------------------------------------------------- /modules/logcap/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/Kconfig -------------------------------------------------------------------------------- /modules/logcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/Makefile -------------------------------------------------------------------------------- /modules/logcap/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/hook.c -------------------------------------------------------------------------------- /modules/logcap/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/hook.h -------------------------------------------------------------------------------- /modules/logcap/log-cpcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/log-cpcap.c -------------------------------------------------------------------------------- /modules/logcap/regs-cpcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/regs-cpcap.c -------------------------------------------------------------------------------- /modules/logcap/regs-cpcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/logcap/regs-cpcap.h -------------------------------------------------------------------------------- /modules/mapphone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mapphone_defconfig -------------------------------------------------------------------------------- /modules/mmcfix.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mmcfix.ko -------------------------------------------------------------------------------- /modules/mmcfix/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mmcfix/Kconfig -------------------------------------------------------------------------------- /modules/mmcfix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mmcfix/Makefile -------------------------------------------------------------------------------- /modules/mmcfix/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mmcfix/hook.c -------------------------------------------------------------------------------- /modules/mmcfix/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mmcfix/hook.h -------------------------------------------------------------------------------- /modules/mmcfix/mmc-fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/mmcfix/mmc-fix.c -------------------------------------------------------------------------------- /modules/modules.alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/modules.alias -------------------------------------------------------------------------------- /modules/modules.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/modules.dep -------------------------------------------------------------------------------- /modules/modules.dep.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/modules.dep.bb -------------------------------------------------------------------------------- /modules/multitouch.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/multitouch.ko -------------------------------------------------------------------------------- /modules/multitouch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/multitouch/Kconfig -------------------------------------------------------------------------------- /modules/multitouch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/multitouch/Makefile -------------------------------------------------------------------------------- /modules/multitouch/defy-multitouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/multitouch/defy-multitouch.c -------------------------------------------------------------------------------- /modules/multitouch/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/multitouch/hook.c -------------------------------------------------------------------------------- /modules/multitouch/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/multitouch/hook.h -------------------------------------------------------------------------------- /modules/nls_utf8.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/nls_utf8.ko -------------------------------------------------------------------------------- /modules/overclock/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/Kconfig -------------------------------------------------------------------------------- /modules/overclock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/Makefile -------------------------------------------------------------------------------- /modules/overclock/cpufreq_conservative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/cpufreq_conservative.c -------------------------------------------------------------------------------- /modules/overclock/cpufreq_interactive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/cpufreq_interactive.c -------------------------------------------------------------------------------- /modules/overclock/cpufreq_powersave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/cpufreq_powersave.c -------------------------------------------------------------------------------- /modules/overclock/cpufreq_smartass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/cpufreq_smartass.c -------------------------------------------------------------------------------- /modules/overclock/cpufreq_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/cpufreq_stats.c -------------------------------------------------------------------------------- /modules/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock/overclock.c -------------------------------------------------------------------------------- /modules/overclock_defy.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/overclock_defy.ko -------------------------------------------------------------------------------- /modules/proximity.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/proximity.ko -------------------------------------------------------------------------------- /modules/proximity/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/proximity/Kconfig -------------------------------------------------------------------------------- /modules/proximity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/proximity/Makefile -------------------------------------------------------------------------------- /modules/proximity/isl-proximity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/proximity/isl-proximity.c -------------------------------------------------------------------------------- /modules/slow-work.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/slow-work.ko -------------------------------------------------------------------------------- /modules/strip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/strip.sh -------------------------------------------------------------------------------- /modules/symsearch.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/symsearch.ko -------------------------------------------------------------------------------- /modules/symsearch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/symsearch/Kconfig -------------------------------------------------------------------------------- /modules/symsearch/Makefile: -------------------------------------------------------------------------------- 1 | #Module 2 | 3 | obj-m += symsearch.o 4 | 5 | -------------------------------------------------------------------------------- /modules/symsearch/symsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/symsearch/symsearch.c -------------------------------------------------------------------------------- /modules/symsearch/symsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/symsearch/symsearch.h -------------------------------------------------------------------------------- /modules/tiap_drv.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/tiap_drv.ko -------------------------------------------------------------------------------- /modules/tiwlan_drv.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/tiwlan_drv.ko -------------------------------------------------------------------------------- /modules/tun.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/tun.ko -------------------------------------------------------------------------------- /modules/usbled.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/usbled.ko -------------------------------------------------------------------------------- /modules/usbled/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/usbled/Kconfig -------------------------------------------------------------------------------- /modules/usbled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/usbled/Makefile -------------------------------------------------------------------------------- /modules/usbled/usb-led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/usbled/usb-led.c -------------------------------------------------------------------------------- /modules/xt_multiport.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/modules/xt_multiport.ko -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/drawable-hdpi/default_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/core/res/res/drawable-hdpi/default_wallpaper.jpg -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/core/res/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/eri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/core/res/res/xml/eri.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/tests/ImfTest/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/frameworks/base/tests/ImfTest/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CMParts/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/CMParts/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Camera/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Camera/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Contacts/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Contacts/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/DSPManager/res/xml/main_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/DSPManager/res/xml/main_preferences.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Mms/res/xml/mms_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Mms/res/xml/mms_config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Phone/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Phone/res/values/array.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Phone/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Phone/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Settings/res/values/bools.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Torch/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Torch/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Usb/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/apps/Usb/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/providers/ContactsProvider/res/values/unrestricted_packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/overlay/packages/providers/ContactsProvider/res/values/unrestricted_packages.xml -------------------------------------------------------------------------------- /prebuilt/app/DroidSSHd.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/app/DroidSSHd.apk -------------------------------------------------------------------------------- /prebuilt/etc/busybox.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/busybox.fstab -------------------------------------------------------------------------------- /prebuilt/etc/gpsconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/gpsconfig.xml -------------------------------------------------------------------------------- /prebuilt/etc/init.d/00baseband: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/00baseband -------------------------------------------------------------------------------- /prebuilt/etc/init.d/01sysctl: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | 3 | sysctl -p 4 | -------------------------------------------------------------------------------- /prebuilt/etc/init.d/03adbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/03adbd -------------------------------------------------------------------------------- /prebuilt/etc/init.d/05mountsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/05mountsd -------------------------------------------------------------------------------- /prebuilt/etc/init.d/08backlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/08backlight -------------------------------------------------------------------------------- /prebuilt/etc/init.d/09logcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/09logcap -------------------------------------------------------------------------------- /prebuilt/etc/init.d/80kineto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/80kineto -------------------------------------------------------------------------------- /prebuilt/etc/init.d/90multitouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/init.d/90multitouch -------------------------------------------------------------------------------- /prebuilt/etc/location.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/location.cfg -------------------------------------------------------------------------------- /prebuilt/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/profile -------------------------------------------------------------------------------- /prebuilt/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/sysctl.conf -------------------------------------------------------------------------------- /prebuilt/etc/wifi/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/wifi/dnsmasq.conf -------------------------------------------------------------------------------- /prebuilt/etc/wifi/tiwlan.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/wifi/tiwlan.ini -------------------------------------------------------------------------------- /prebuilt/etc/wifi/tiwlan_ap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/wifi/tiwlan_ap.ini -------------------------------------------------------------------------------- /prebuilt/etc/wifi/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/etc/wifi/wpa_supplicant.conf -------------------------------------------------------------------------------- /prebuilt/lib/libNativeSSHd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/lib/libNativeSSHd.so -------------------------------------------------------------------------------- /prebuilt/usr/cpcap.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/usr/cpcap.kl -------------------------------------------------------------------------------- /prebuilt/usr/keypad.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/usr/keypad.kl -------------------------------------------------------------------------------- /prebuilt/usr/null.kl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prebuilt/usr/qwerty.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/prebuilt/usr/qwerty.kl -------------------------------------------------------------------------------- /profiles/2nd-init/init.mapphone_umts.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/2nd-init/init.mapphone_umts.rc -------------------------------------------------------------------------------- /profiles/2nd-init/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/2nd-init/ueventd.rc -------------------------------------------------------------------------------- /profiles/backup/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/backup/init -------------------------------------------------------------------------------- /profiles/backup/init.mapphone_umts.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/backup/init.mapphone_umts.rc -------------------------------------------------------------------------------- /profiles/backup/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/backup/init.rc -------------------------------------------------------------------------------- /profiles/backup/sbin/ueventd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/backup/sbin/ueventd -------------------------------------------------------------------------------- /profiles/backup/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/backup/ueventd.rc -------------------------------------------------------------------------------- /profiles/moto/froyo/init.mapphone_umts.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/moto/froyo/init.mapphone_umts.rc -------------------------------------------------------------------------------- /profiles/moto/froyo/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/profiles/moto/froyo/init.rc -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /recovery.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/recovery.fstab -------------------------------------------------------------------------------- /recovery_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/recovery_kernel -------------------------------------------------------------------------------- /recovery_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/recovery_ui.c -------------------------------------------------------------------------------- /releasetools/squisher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/releasetools/squisher -------------------------------------------------------------------------------- /releasetools/squisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/releasetools/squisher.sh -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/system.prop -------------------------------------------------------------------------------- /updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/updater-script -------------------------------------------------------------------------------- /updater-script-rel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/updater-script-rel -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/vendorsetup.sh -------------------------------------------------------------------------------- /vold.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_jordan/HEAD/vold.fstab --------------------------------------------------------------------------------