I managed to edit the file /system/url/keychars/omap-keypad.kcm.bin, which is the hardware keyboard layout file with HxD (hex editor).
This post helped me a lot to do this:
http://forum.xda-developers.com/showthread.php?t=945921
I mapped the keys to type the following:
Normal | Shift | Alt | Shift+Alt
a | A | ä | €
o | O | ö | )
u | U | ü | *
8 | 8 | Ä | 8
9 | 9 | Ö | 9
0 | 0 | Ü | 0
You can download the bin file, replace it in /system/url/keychars/ an set the same permissions like the old file had.
Good luck, have fun.
Note that on the screenshot, a "." is missing after the "ä", I added this in the file but didn't update the screenshot.
I have told the OP that this topic may stay in Development.
how did you manage to edit it? I would like to do the same in order to be able to write czech characters...
http://www.pcguide.com/res/tablesASCII-c.html might come in handy, along with a hex editor like HxD.
Thanks Jewremy, forgot to mention that I used HxD ))
1.) do I need to have root to do this?
2.) What are the first two positions for in the bin file? For examle:
You say it works like this:
Normal | Shift | Alt | Shift+Alt
a | A | ä | €
...in the bin file the corresponding row looks like this (I added one more dot after the first ¬):
A.¬.a.A.ä.¬
...so there is six positions instead of four - what is the use of the first two?
This helped me a lot to do it. Added it to my first post.
http://forum.xda-developers.com/showthread.php?t=945921
Rotkaeqpchen said:
This helped me a lot to do it. Added it to my first post.
http://forum.xda-developers.com/showthread.php?t=945921
Click to expand...
Click to collapse
Could you do a stock one, but edit the ok button to be a smiley key???
I don't know if that works, first I don't see the OK key, second I don't think that you can bind 2 characters to one key. Please anyone help him!
Related
Im going to get to the point.
Hey Miroslav or anyone with experience with filesystems please take a look!
=========================================================
Code:
+----------+-----------------------------+--------+----------+----------+---+---+
| Mount | Block Device | fst | Size(KB) | Used(KB) | M | B |
+----------+-----------------------------+--------+----------+----------+---+---+
| | | mtd | 0 | 0 | 0 | u |
| system | /dev/block/mtdblock4 |[COLOR="Red"][B] yaffs2 [/B][/COLOR]| 153600 | 137928 | 1 | f |
| data | /dev/block/mtdblock6 | [COLOR="Red"][B]yaffs2 [/B][/COLOR]| 239104 | 105300 | 1 | f |
| boot | /dev/block/mtdblock0 | mtd | 5120 | 5120 | 0 | i |
| recovery | /dev/block/mtdblock2 | mtd | 5120 | 5120 | 0 | i |
| cache | /dev/block/mtdblock1 | yaffs2 | 65536 | 31184 | 1 | f |
| sdcard | /dev/block/mmcblk0p1 | vfat | 0 | 0 | 1 | n |
| | | | 0 | 0 | 0 | n |
| andsec | /sdcard | vfat | 0 | 0 | 0 | f |
| sd-ext | /dev/block/mmcblk0p2 | ext4 | 0 | 0 | 1 | f |
| | /dev/block/mtdblock10 | mtd | 474880 | 474880 | 0 | n |
| | | | 0 | 0 | 0 | n |
| | | | 0 | 0 | 0 | n |
+----------+-----------------------------+--------+----------+----------+---+---+
As the above shows our phones system and data partitions uses the yaffs2 filesystem but is there a way to convert this to ext4? Many phones has done this "conversion" and there is said to be noticeable improvements. Eg. Galaxy Ace
Here is a short explanation of it
Most Android devices currently use YAFFS, a lightweight filesystem that is optimized for flash storage . The problem with YAFFS is that it is single-threaded and according to Google developer Ted Tso, it would likely “have been a bottleneck on dual-core systems.” EXT4 a much superior file system was used in the latest Google Nexus S. Tim Bray of Android Developers Blog has said starting with Nexus S and Gingerbread O/S , this change has bring a big boost in input and output file operations, and explains some of the amazing speed improvements seen on the Nexus S.
Click to expand...
Click to collapse
Quoted from http://leemn.wordpress.com/2011/01/...stem-to-ext4-and-upgrade-to-modaco-rom-beta1/
=========================================================
Ok here is a example!
(These file are from http://forum.xda-developers.com/showthread.php?t=1593925) A Galaxy Ace Rom
✔ Filesystem Are In EXT4 Format [ Best System Performance ]
In the update.zip of the Rom there is this file
mkfs.ext4
According to to the updater-script which controls what the recovery does when it flashes a rom, it does this to the above file
Code:
package_extract_file("mkfs.ext4", "/tmp/mkfs.ext4");
and later
Code:
set_perm(0, 0, 0755, "/tmp/mkfs.ext4");
=========================================================
If any of this makes sense to you please comment down below. Maybe we can port this to our phones
Is this do sth else with file or its just set perms?
Also can u provide links to roms with ext4 converted from yaffs as u say?
Sent from my LG-GT540 using xda premium
All phone with 512ROM chip have Yaffs filesystem. Phones with more than 512mb have EXT2/4
I can make little script for recovery and it format Yaffs to EXT4, but in real testing its no differences in performance. But I am not sure will be it stable or no. For me its not good idea.
Script will be look like that:
unmount("/system");
unmount("/data");
unmount("/cache");
format("ext4", ""MTD", "/dev/block/mtdblock4");
format("ext4", ""MTD", "/dev/block/mtdblock6");
format("ext4", ""MTD", "/dev/block/mtdblock1");
Its up to you the ace got 256 mb ram if im not wrong
With EXT4, there is no real performance increase.
The only thing you're notice is;
faster boot times
shorter launcher redraw time
No lag what so ever when internal storage runs low
Disadvantages;
File system needs to be converted back to yaffs2 before flashing a rom via recovery. If not, phone will get stuck on LG splash screen.
Hmm ok and what phone are you using now? The
"Both Galaxies are protected by CORNING® GORILLA® GLASS "
got me interested
bs828 said:
Hmm ok and what phone are you using now? The
"Both Galaxies are protected by CORNING® GORILLA® GLASS "
got me interested
Click to expand...
Click to collapse
What phone I use doesn't matter
Just popping back randomly coz I am bored.
bs828 said:
Its up to you the ace got 256 mb ram if im not wrong
Click to expand...
Click to collapse
I am talking about ROM-memory-chip, not RAM. We have 256mb RAM and 512mb internal memory.
P.S. ACE have 392mb - RAM
oops miss read
miroslav_mm said:
I am talking about ROM-memory-chip, not RAM. We have 256mb RAM and 512mb internal memory.
P.S. ACE have 392mb - RAM
Click to expand...
Click to collapse
*Ace has 278MB of RAM
Yaffs is there for a reason. I don't know much about performance, single- or multithreaded, but yaffs takes care of flash wear while ext will happily write to the same blocks over and over again, shortening whole flash's life.
MrAndroid12 said:
*Ace has 278MB of RAM
Click to expand...
Click to collapse
No! 278 its available RAM. Like 180mb on IceCreamSwift. Memory chip on ACE - 392mb!
I am not sure but this looks promising.
My friend have galaxy ace with that Rom and benchmark is high. and I have optimus one
anyway,
I believe we need to just edit and write
/system ext4 system
/cache ext4 cache
/data ext4 userdata
instead of
/system yaffs2 system
/cache yaffs2 cache
/data yaffs2 userdata
to recovery.fstab of device sources and Let it compile Rom and Recovery and flashing it will be the
Result.
miroslav_mm said:
No! 278 its available RAM. Like 180mb on IceCreamSwift. Memory chip on ACE - 392mb!
Click to expand...
Click to collapse
Yep.
hmskrecik said:
Yaffs is there for a reason. I don't know much about performance, single- or multithreaded, but yaffs takes care of flash wear while ext will happily write to the same blocks over and over again, shortening whole flash's life.
Click to expand...
Click to collapse
It would take more than a devices useful cycle before the chip wares out completely.
I don't think anyone would use the same smartphone smartphone for 10 years+
hmskrecik said:
Yaffs is there for a reason. I don't know much about performance, single- or multithreaded, but yaffs takes care of flash wear while ext will happily write to the same blocks over and over again, shortening whole flash's life.
Click to expand...
Click to collapse
you don't need to care about this because modern flash memories always have wear levelling technique to prevent early wear out. and even withtout this technique it will took years to completely make the flash unwritable. there's a special version of ext4 which does not have journals to reduce flash wear
Hello community! Welcome to the Index of Guides, Tools, Recoveries and more of the Nexus 4
As the name indicates this index only contain full guides, easy and quick how-to's and other references to the owners of a Nexus 4, if you want find the ROMs and Kernels for this device please take a look above on the « Useful Links section of this post to find the link to the dedicated thread.
Of course all the feedback is welcome, if you see some wrong information, have a suggestion or want to see some thread added/removed, you can post a reply in this thread or send me a PM.
« Index Structure
I know that every Developer/Contributor is free to choose the title of the thread as he/she wants, but it's really much easier for users (and of course for me) if the date and/or the version of the guide, tool, app, etc. continue as the main field since I'm trying to organize the index by the date of the last update, with most recent being first. These are two examples of an "ideal" title:
[TOOL][07/07]NAME OF THE TOOL[EXTRA FEATURES]
[GUIDE][UPDATED 01/02]CHANGE XXX XXXXXXXX
I would really appreciate if the developers/contributors could organize their titles as some of the examples above. Thanks in advance.
The index is divided in six categories:
- Guides, How-to's, Tutorials and Fixes
- Other Useful Links
- Recoveries
- Mods and Tools
- Themes
- Apps
- Misc
« Useful Links
[Directory] MAKO: ROMs & Kernels
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
⊗ Guides, How-to's, Tutorials and Fixes ⊗
⊗ Bootloader and Root ⊗
[REF][GUIDE][11/03/2012] Unlocking the Bootloader | Writing by TheDarkDefender
[GUIDE] Free VOIP calls w/ iLBC codec | Writing by acegolfer
[GUIDE] PBX in a Flash (PIAF) on Amazon EC2 with Free GV calling + SILK codec | Writing by acegolfer
[HOW-TO] How to flash a factory image / return to stock / unlock / root # | Writing by efrant
[INFO] Nexus OTA Help-Desk | Writing by El Daddy
[BATTERY IMPROVEMENT] Works every time half the time | Writing by undercover
[Guide] Ultimate Nexus 4 Root Guide | Writing by Jubakuba
[ROOT][CWM] Root Nexus 4 & Install Official ClockworkMod Recovery | Writing by HQRaja
[Root] How to Root Nexus 4! [Windows + Mac][VIdeo] | Writing by techfanatic9
[ROOT] Superboot - Nexus 4 root solution | Writing by paulobrien
⊗ Build ⊗
[GUIDE] How to build CM10.1 (Android 4.2.1) for the Nexus 4 (mako) | Writing by Imperticus
[HOWTO] build nexus 4 kernel | Writing by yduck
[GUIDE] Building CM10.1 for Nexus 4 with Mac OS X Mountain Lion (aka OS X 10.8) | Writing by inffy
[HOWTO] Building from sources [Kernel only for now] | Writing by cdesai
⊗ Fixes and Misc ⊗
[HOW-TO] Fix internal storage if 16GB now shows 8GB | Writing by El Daddy
[GUIDE] Android Governors Explained [Update 1/13/2013] | Writing by richteralan
[HOWTO] Mount Nexus 4 in Linux | Writing by marty331
⊗ Other Useful Links ⊗
Nexus 4 Color Settings [spreadsheet] | by Ngo93
[HELP THREAD] Nexus 4. Ask any question. | by DowntownJeffBrown
[REF] Nexus 4: Technical Specification Breakdown | Last Updated 20th Nov 12 | Writing by vido.ardes
[INFO] LG Nexus 4 Production Date and Place Identification | Writing by Alexander T.
[REF]Specs,Reviews,Videos,FAQ,Development | Things you need to know about the Nexus4 | by Prawesome
Must Have Apps for Google Nexus 4 | by Goku80
[REF][POLL] Nexus 4 Issues [UPDATED 11/30/12] | by ace7196
[DISCUSSION] Google Nexus 4 vs any other phone | by mark manning
NOTE: Please don't create any more threads comparing other devices to the Nexus 4. All the related posts should be posted in this thread
The great battery impression thread | by Bombhills
Nexus 4 Benchmarks thread | by yahyoh
[REF] Nexus 4 Stock OTA URLs | by oldblue910
Post Your Nexus 4 Homescreens **Be Appropriate** | by kcis
[Post your lockscreen! | by TehZam
Nexus 4 Gaming Thread (Updated 5/17/2013) | by Meangean
Wallpapers | by neer2005
[Official] Play Store orders & shipping thread! | by Plexicle
Master List For Accessories | by nxxx
Post pictures taken from your Nexus 4! | by Optimusg2x
Tips for taking good Photospheres | by Ivan Fuentes Hagar
⊗ Recoveries ⊗
[RECOVERY] Official CWM Recovery 6.0.3.1 for Nexus 4; revert recovery disabler | by fkrone
[RECOVERY] TWRP 2.5.0.0 touch recovery [2013-04-09] | by Dees_Troy
[Recovery][UCTR] Team UtterChaos' Touch Recovery with Full Touch panel support | by Napstar
[RECOVERY][CWM] Custom ClockworkMod Touch 6.0.2.3 v14.4.4 (12/22/12) | by sk8erwitskil
Mods &Tools / Themes
⊗ Mods and Tools ⊗
[MOD] RasbeanJelly/RasSaber White Mod (11-05-2013) | by thegtfusion
[SOFTKEYS] Softkey Collection [05-04 Facebook Home] | by atticus182
[MOD] [N4] BEATS+XLOUDER! 4.2.1/4.2.2 [19/05/13] JB Louder Audio Improvement Patch | by Misledz
[MOD][ALL ROMS][3/2/13] Collection of Signal Icon Mods | by aooga
[MOD][APP]AwesomeBEATS™ v.5 For ALL ANDROID AOSP ROMS(02.05.13) Experience BEATS | by ...Awesome...
[MOD] |12/1] |~ALSA~| ★☆★Nocturnal Limited Edition Kit★☆★ | aokp,minco,pa,rasbean | | by ChongoDroid
[MOD][JOP40D][11-28-12] Battery 1% Mod and Rotation Lock | by goldfingerfif
« Threads without visible date of update
[Tweak] How to remove the softkeys/navbar WITHOUT remove the statusbar. | by -JFK-
[MOD] rasbeanjelly mako mods | by opethrocks
[KERNEL][MOD] Increase Touchscreen Sensitivity 4.2.2 | by reddv1
[NEXUS 4 TOOLKIT V1.3.0] Drivers, Backup, Unlock, Root, Flash, Mods + MUCH MORE | by mskip
[MOD] Modified NfcNci.apk to poll while screen is off. | by CptanPanic
[LINUX] Universal Nexus Linux Toolkit v2.1.0 (Unlock, Lock, Root, CWM, Factory Reset) | by tatelucas
[MOD] Battery percentage MOD Tool for Android 4.2.1 | by brainmaster
[MOD] LunarUI DeskClock 4.2.1 | by brainmaster
[MOD] New Quick Settings+sofkey+battery | by acer73
[TOOLS] dsixda Kitchen edify file for Nexus 4 (mako) and JB 4.2 | by goldfingerfif
⊗ Themes ⊗
[GApps][Unofficial][4.2.2][5-18-2013] | by BaNkS
[May 23][BOOTANIMATIONS BIBLE] Nexus 4 - The Boot Box project.] | by overhauling
[URL="http://forum.xda-developers.com/showthread.php?t=2055231"][THEME] Paranoid Platinum + UI + Lock [Paranoid Android 2.99-b9-25DEC][Nordpolcamper] | by Nordpolcamper
[MOD+Theme][JOP40D]Thyrus Theme and MODS - CM10.1 and AOKP for Nexus 4 (DEC 5 2012) | by Thyrus
« Threads without visible date of update
[Theme] [CM10.1] Bluemint Theme Chooser v3 / Yellow / Red version | by vicino
[THEME] Black Infinitum - APK | by Razer(x)
[THEME] Blue Infinitum - APK | by Razer(x)
TWRP Theme Collection Thread | by sn0warmy
[Theme] Brainmaster's Stock Theme for RasBeanjelly | by brainmaster
▄╠█╣THEMES╠█╣▄ ╠█╣Black&Cyan 4.2 for Slim, JB, AOKP, CM10.1╠█╠█╣Themed Gapps №1╠█╣▄ ™ | by hello00
Apps & Misc
⊗ Apps ⊗
[GApps][Unofficial][4.2.2][4-20-2013] | Developed by BaNkS
[APP][Beta] VLC v0.0.11 Neon [March. 18] | Developed by Stryder5
[APP][2013-03-08][root][GNex/Dev] BootUnlocker for Nexus Devices -- version 1.3.1 | Developed by segv11
[APP][4.1+] Notif - March 7 - Big feature update! | Developed by ericcarboni
[APP] WiFi Mouse(transform your phone into wireless mouse) | Developed by Williams.Joe
[APP][N4] Trickster MOD [Kernel Settings and Tweaks] | Developed by bigeyes0x0
[APP] Clipboard Admin - Clipboard manager for Android 4.x | Developed by plbelanger
[APP][ROOT][ANIMATIONS AND MORE] Framework Tool ★ root - Nexus 4 specific feedback | Developed by janis605
[APP] XBMC 12 Beta 3 [Dec. 7] | Developed by Stryder5
[APP] Flash Image GUI - Flash Kernels and Recoveries from normal Android mode! | Developed by joeykrim
[APP] Anfo: all usefull hardware info | Developed by julien30dusud
[APP] Classic notes + app box | Developed by plbelanger
[APP] Modified DSP Manager | Developed by noobdeagle
[HOWTO] n4root - Root your Nexus 4 [ROOT, BUSYBOX, SU] | Developed by cyr0s
[APP][FREE] Nexus 4 Analog Clock Widget | Developed by tombarr
Dark Jelly Inverted apps 4.2.1 by Dark knight | Developed by big nu
⊗ Misc ⊗
[DRIVERS] Nexus 4 Driver for Windows | Developed by Stryder5
Closed Threads...
⊗ CLOSED THREADS ⊗
[General]
Nocturnal Wallpapers App | Developed by ChongoDroid
Awesome kc, looking forward to visiting this thread frequently
Sent from my GT-I9300 using Tapatalk 2
Coreym said:
Awesome kc, looking forward to visiting this thread frequently
Sent from my GT-I9300 using Tapatalk 2
Click to expand...
Click to collapse
Fully agree mate. Well done.
Sent from my ICJ powered by the greatness called NCX power.
Cheers lads
Wait about a week and this will soon start filling up :what:
''I used to be an open-minded person, but my brain kept falling out''
nice layout & overview hopefully this getting stickied and quiet full of good stuff
F1tty said:
nice layout & overview hopefully this getting stickied and quiet full of good stuff
Click to expand...
Click to collapse
Hopefully yeah. I'll be sure to update as much as I can anyway.
''I used to be an open-minded person, but my brain kept falling out''
Love to see this, can't wait to get my hands on this phone
Sent from my MB855 using xda premium
Nexus 4 Help Thread added to OP
I've been approved by Snowflake. Jealous?
To keep an eye on ya
tinky1 said:
To keep an eye on ya
Click to expand...
Click to collapse
Same as I'm doing with yours
I've been approved by Snowflake. Jealous?
Very nice KidCarter Guess I'll be keeping an eye on you to.
E.Cadro said:
Very nice KidCarter Guess I'll be keeping an eye on you to.
Click to expand...
Click to collapse
I guess you will be
You're in almost as many forums as I am
I've been approved by Snowflake. Jealous?
Moved to development as it's more relevant there
E.Cadro said:
Very nice KidCarter Guess I'll be keeping an eye on you to.
Click to expand...
Click to collapse
Long time no see E
I got transformed into a potato while writing this post..
Prawesome said:
Long time no see E
I got transformed into a potato while writing this post..
Click to expand...
Click to collapse
You as well my friend
Sent from my Nocturnalized One XL using Forum Runner
Cannot wait
Added a guide to build kernels from source
I've been approved by Snowflake. Jealous?
Hi guys
I have ported lidroid toogles to AOSP ICS ROM by Paul L (http://forum.xda-developers.com/showthread.php?t=2244160) and am sharing it with you
INSTRUCTIONS
* Download the mod in attachment and put in sdcard
* Install AOSP ICS ROM and reboot
* Reboot in cwm recovery
* Select install zip from sdcard
* Select Lidroid-Toggles-AOSP-ICS-TASS.zip and confirm
* Wait and reboot
* Use the QuickPanel Settings app in drawer to select buttons
CREDITS
* lidroid
* Adi Aisiteru Reborn (http://forum.xda-developers.com/showthread.php?t=2384245)
* Paul L.
* YOU
DOWNLOAD AND SCREENSHOTS
* In attachments
sorry if you've done it, and for my bad english
---------
Sent from my GT-S5570 using xda premium
Are Screenshot and sleep toggles are available?
I want to know this because my power hardware is not working..
naresh babu said:
Are Screenshot and sleep toggles are available?
I want to know this because my power hardware is not working..
Click to expand...
Click to collapse
Sleep yes, screenshot no.
List: wifi | bluetooth | sound | orientation | lockscreen | brightness | sync | wifi hotspot | mobile data | flashlight | gps | reboot | shutdown | airplane | screen timeout | network mode | battery info | stay wake | usb connection mode | usb debbuging | sleep/lock now
MagModBR said:
Sleep yes, screenshot no.
List: wifi | bluetooth | sound | orientation | lockscreen | brightness | sync | wifi hotspot | mobile data | flashlight | gps | reboot | shutdown | airplane | screen timeout | network mode | battery info | stay wake | usb connection mode | usb debbuging | sleep/lock now
Click to expand...
Click to collapse
thnks fr info
can U make it one for galaxy gio sir @RBDoMGaM || I'm using aosp final2 by maclaw
odjiex said:
can U make it one for galaxy gio sir @RBDoMGaM || I'm using aosp final2 by maclaw
Click to expand...
Click to collapse
With a "un-modded" SystemUI is very easy my friend, i have added links to original guides in credits, need only to follow...
But if you can't do it send me the SystemUI without none mods and deodexed and i do it for you when i have free time
LIST OF TWEAKS/MODS/SCRIPTS FOR BETTER PERFORMANCE ETC.
ITS FOR ALL DEVICES WITH ANDROID 2.3-4.4,READ IN THREAD FOR MORE INFO
---------------
---------------
FOR THE MOST OF THESE TWEAKS/MODS/SCRIPTS IS A CUSTOM KERNEL
WITH INIT.D,CWM,ROOT+BUSYBOX REQUIRED,INFOS IN THREADS!!!
--------------
FOR FLASH ZIPS WITHOUT CWM,THERE IS AN APP CALLED FLASH GORDON,
BUT I CANT GIVE GARANTY FOR 100% WORKING;I HAVE NOT TESTED.
http://forum.xda-developers.com/showthread.php?t=2250555
-----------
[MOD][TWEAKS][SCRIPTS] XTweaks V1.0.2 (01-08-2014)
http://forum.xda-developers.com/showthread.php?t=2574443
-----
[SCRIPT]XForce™ Gaming DXT-7110(Version 1.3) | 02/05/2014
http://forum.xda-developers.com/showthread.php?t=2630173
---
[DEV] ◢ Pure™Graphics HD + Rendering Version ◣ | Enjoy your graphics
http://forum.xda-developers.com/showthread.php?t=2295010
----
[SCRIPT][GAMERS] Hyper Cola Package Installer 1.6
http://forum.xda-developers.com/showthread.php?t=2404653
--
[SCRIPT][UPDATED 01.26.14] Enable Ram Swap & Create a Swap File with |=~>SwapItOn<~=|
http://forum.xda-developers.com/showthread.php?t=2359182
----
[MOD][DISCONTINUED TILL NEXT UPDATE]PMP™ Xtreme Purity MOD
http://forum.xda-developers.com/showthread.php?t=2487163
--
[TOOLS][ZIPS][SCRIPTS] osm0sis' Odds and Ends [Multiple Devices/Platforms]
http://forum.xda-developers.com/showthread.php?t=2239421
------
[MOD] Blend Booosted™
http://forum.xda-developers.com/showthread.php?t=2603767
-----
[MOD][2.2|Soon]rPx™ ULTIMATE EDITION
http://forum.xda-developers.com/showthread.php?t=2453995
------
| SCRIPT | Blazing Thunder[Jb/Ics/Gb] [ More Speed|| Much Less Lag]
http://forum.xda-developers.com/showthread.php?t=2294916
------
* MOD * 08/14/13 * Direct Injection v3.2.6_r4 * Entropy * Cpu Tuner * Ram Boost
http://forum.xda-developers.com/showthread.php?t=2158329
--------
Scripts | 12/22/2013 | Team Kernelizers | Operation Killjoy™ | Stable 3 | Insanity
http://forum.xda-developers.com/showthread.php?t=2411161
-----
[TWEAKS][CWM+AROMA] Codename LightingBolt [2013DEC21]
http://forum.xda-developers.com/showthread.php?t=2431647
----
[MOD][TWEAKS][2.3+] |NxEngine| Increase your android performance
http://forum.xda-developers.com/showthread.php?t=2529542
-----
☠ [APK][Tweaks & Mods] █ PIMP MY ROM █ BETA v1.0 {Any Device // Any Rom} ☠
http://forum.xda-developers.com/showthread.php?t=1908269
---
[GUIDE] Disable CPU Rendering [UPDATED 9/28/2013]
http://forum.xda-developers.com/showthread.php?t=1877183
---
[MOD][APK+SCRIPT+ZIP] Enable Init.d for Any Phones w/o Need of Custom Kernels!!!
http://forum.xda-developers.com/showthread.php?t=1933849
-------
[TWEAK][SCRIPT][MOD] ✪ TweakDrypT™ V4.1 Get the most out of your Android [11/02/14] ➳
http://forum.xda-developers.com/showthread.php?t=2630242
-----
[RC10] ULTIMATIC RC7T6![EXE]-=Ultimate Jar Power Tools=- w/Maximum MultiTasking Mods!
http://forum.xda-developers.com/showthread.php?t=1914159
-----
[SCRIPT][2014/02/27|V13 INTENSITY]EF™ --- New Version ---
http://forum.xda-developers.com/showthread.php?t=2549173
---
[MOD][TWEAKS] ThunderBolt! v3.1.1 3/25/13 [Performance+Battery Life Mods & Tweaks]
http://forum.xda-developers.com/showthread.php?t=1556013
------
[V6BD63457] Since I've Been SuperCharging You... I'm about to lose my bashing mind
http://forum.xda-developers.com/showthread.php?t=991276
------
[MOD] CrossBreeder - Lag-/Entropy+/DNS+/Tether+/Ads-/Censors-/.bit support!!
http://forum.xda-developers.com/showthread.php?t=2113150
------
[ SCRIPT | TWEAK ] ◢ Project Fluid™ ◣ | 20.10.2013
http://forum.xda-developers.com/showthread.php?t=2069238
------
★ [MOD] ◢ PurePerformances™X ◣ | Golden Edition | Scary performances on Android
http://forum.xda-developers.com/showthread.php?t=2360670
------
[MOD][TWEAK]VulpiX V3.1 (updated 6th Jan 2014)
http://forum.xda-developers.com/showthread.php?t=2429923
---------
[MOD][SCRIPTS] Velocity 7 | Memory Management | Entropy Modulation | DNS Caching
http://forum.xda-developers.com/showthread.php?t=2262092
---------
[CWM][SCRIPTS][TWEAKS] Adrenaline™ Engine | STOCK/CM 4.5 | 22/10/2013
http://forum.xda-developers.com/showthread.php?p=24390549
--------
[MOD][SCRIPTs][TWEAKs]Fly-On Mod™V4.0 Beta6/Feel The Smoothness!/Upd:15/01/14
http://forum.xda-developers.com/showthread.php?t=2226373
--------
added 05.03.2014
-----
[SCRIPT][2.3 - 4.4] Reincarnation Engine v.2 | The Most Minimal Script | 05/03/2014
http://forum.xda-developers.com/showthread.php?t=2664746
----------
[Script][V3.1] ~SmartFluid~ == To Boost Your Android
http://forum.xda-developers.com/showthread.php?t=2667611
--------
[SCRIPT][2014/02/27|V13 INTENSITY]EF™ --- New Version ---
http://forum.xda-developers.com/showthread.php?t=2549173
-----
Apps for performance settings(governors,io sheds,cpu settings)
-----
[APP][ROOT][4.0+] Performance Control - Open Source
http://forum.xda-developers.com/showthread.php?t=2401988
-------
[16-02-2014][APP] H~Tweaker
http://forum.xda-developers.com/showthread.php?t=2644914
-------
[APP][>= 2.2] CPU Adjuster
http://forum.xda-developers.com/showthread.php?t=2000609
-----
[APP][Jul 20th][1.28.2] "NoFrills" CPU Control: configure cpu frequencies & governor
http://forum.xda-developers.com/showthread.php?t=911917
----
[APP][2.1+][CPU Spy Plus][v0.5.60] CpuSpy Plus by realgpp
http://forum.xda-developers.com/showthread.php?t=1740622
-----
[APP] [2.2+][ROOT] GLTools v1.05 (graphics optimizer) 02/06/2014
http://forum.xda-developers.com/showthread.php?t=2615514
------
[APP 2.1+] Android Tuner
http://forum.xda-developers.com/showthread.php?t=1908942
------
[APP][ROOT] Trickster MOD [Kernel Settings and Tweaks]
http://forum.xda-developers.com/showthread.php?t=1768315
----
[APP][2.1+] System Control | All in one application
http://forum.xda-developers.com/showthread.php?t=1829632
----
[App] S Tools+ , CPU frequency,Sensors,Color Picker
http://forum.xda-developers.com/showthread.php?t=2659362
----
[TOOL][APP][Andromizer][4.2.8] Android Universal Tools.(Settings,Tweaks,Tools,TWRP..)
http://forum.xda-developers.com/showthread.php?t=2359323
----
News May 2014
[MOD][TWEEKS]Dash-Mod|The Most Clean Tweeks|
http://forum.xda-developers.com/showthread.php?t=2745117
-----
[MOD | TWEAKS] Gentleman Set v4.0 - Simple optimizations for your device!
http://forum.xda-developers.com/showthread.php?t=2381246
----
[MOD] MaliveBooster™ Amazing performance on your android device
http://forum.xda-developers.com/showthread.php?t=2741189
----
[MOD][v1.10][2014/05/02]XMD Optimizer || New Version || A Lot Of Improvements
http://forum.xda-developers.com/showthread.php?t=2731670
----
MORE IS COMING,HAVE FUN!!!!
-CALIBAN666- said:
LIST OF TWEAKS/MODS/SCRIPTS FOR BETTER PERFORMANCE ETC.
ITS FOR ALL DEVICES WITH ANDROID 2.3-4.4,READ IN THREAD FOR MORE INFO
---------------
---------------
FOR THE MOST OF THESE TWEAKS/MODS/SCRIPTS IS A CUSTOM KERNEL
WITH INIT.D,CWM,ROOT+BUSYBOX REQUIRED,INFOS IN THREADS!!!
-----------
[MOD][TWEAKS][SCRIPTS] XTweaks V1.0.2 (01-08-2014)
http://forum.xda-developers.com/showthread.php?t=2574443
-----
[SCRIPT]XForce™ Gaming DXT-7110(Version 1.3) | 02/05/2014
http://forum.xda-developers.com/showthread.php?t=2630173
---
[DEV] ◢ Pure™Graphics HD + Rendering Version ◣ | Enjoy your graphics
http://forum.xda-developers.com/showthread.php?t=2295010
----
[SCRIPT][GAMERS] Hyper Cola Package Installer 1.6
http://forum.xda-developers.com/showthread.php?t=2404653
--
[SCRIPT][UPDATED 01.26.14] Enable Ram Swap & Create a Swap File with |=~>SwapItOn<~=|
http://forum.xda-developers.com/showthread.php?t=2359182
----
[MOD][DISCONTINUED TILL NEXT UPDATE]PMP™ Xtreme Purity MOD
http://forum.xda-developers.com/showthread.php?t=2487163
--
[TOOLS][ZIPS][SCRIPTS] osm0sis' Odds and Ends [Multiple Devices/Platforms]
http://forum.xda-developers.com/showthread.php?t=2239421
------
[MOD] Blend Booosted™
http://forum.xda-developers.com/showthread.php?t=2603767
-----
[MOD][2.2|Soon]rPx™ ULTIMATE EDITION
http://forum.xda-developers.com/showthread.php?t=2453995
------
| SCRIPT | Blazing Thunder[Jb/Ics/Gb] [ More Speed|| Much Less Lag]
http://forum.xda-developers.com/showthread.php?t=2294916
------
* MOD * 08/14/13 * Direct Injection v3.2.6_r4 * Entropy * Cpu Tuner * Ram Boost
http://forum.xda-developers.com/showthread.php?t=2158329
--------
Scripts | 12/22/2013 | Team Kernelizers | Operation Killjoy™ | Stable 3 | Insanity
http://forum.xda-developers.com/showthread.php?t=2411161
-----
[TWEAKS][CWM+AROMA] Codename LightingBolt [2013DEC21]
http://forum.xda-developers.com/showthread.php?t=2431647
----
[MOD][TWEAKS][2.3+] |NxEngine| Increase your android performance
http://forum.xda-developers.com/showthread.php?t=2529542
-----
[SCRIPT][2.3 - 4.4] Reincarnation Engine v.1 | The Most Minimal Script | 26/02/2014
http://forum.xda-developers.com/showthread.php?t=2664746
-----
☠ [APK][Tweaks & Mods] █ PIMP MY ROM █ BETA v1.0 {Any Device // Any Rom} ☠
http://forum.xda-developers.com/showthread.php?t=1908269
---
[GUIDE] Disable CPU Rendering [UPDATED 9/28/2013]
http://forum.xda-developers.com/showthread.php?t=1877183
---
[MOD][APK+SCRIPT+ZIP] Enable Init.d for Any Phones w/o Need of Custom Kernels!!!
http://forum.xda-developers.com/showthread.php?t=1933849
-------
[TWEAK][SCRIPT][MOD] ✪ TweakDrypT™ V4.1 Get the most out of your Android [11/02/14] ➳
http://forum.xda-developers.com/showthread.php?t=2630242
-----
[RC10] ULTIMATIC RC7T6![EXE]-=Ultimate Jar Power Tools=- w/Maximum MultiTasking Mods!
http://forum.xda-developers.com/showthread.php?t=1914159
-----
[SCRIPT][2014/02/27|V13 INTENSITY]EF™ --- New Version ---
http://forum.xda-developers.com/showthread.php?t=2549173
---
[MOD][TWEAKS] ThunderBolt! v3.1.1 3/25/13 [Performance+Battery Life Mods & Tweaks]
http://forum.xda-developers.com/showthread.php?t=1556013
------
[V6BD63457] Since I've Been SuperCharging You... I'm about to lose my bashing mind
http://forum.xda-developers.com/showthread.php?t=991276
------
[MOD] CrossBreeder - Lag-/Entropy+/DNS+/Tether+/Ads-/Censors-/.bit support!!
http://forum.xda-developers.com/showthread.php?t=2113150
------
[ SCRIPT | TWEAK ] ◢ Project Fluid™ ◣ | 20.10.2013
http://forum.xda-developers.com/showthread.php?t=2069238
------
★ [MOD] ◢ PurePerformances™X ◣ | Golden Edition | Scary performances on Android
http://forum.xda-developers.com/showthread.php?t=2360670
------
[MOD][TWEAK]VulpiX V3.1 (updated 6th Jan 2014)
http://forum.xda-developers.com/showthread.php?t=2429923
---------
[MOD][SCRIPTS] Velocity 7 | Memory Management | Entropy Modulation | DNS Caching
http://forum.xda-developers.com/showthread.php?t=2262092
---------
[CWM][SCRIPTS][TWEAKS] Adrenaline™ Engine | STOCK/CM 4.5 | 22/10/2013
http://forum.xda-developers.com/showthread.php?p=24390549
--------
[MOD][SCRIPTs][TWEAKs]Fly-On Mod™V4.0 Beta6/Feel The Smoothness!/Upd:15/01/14
http://forum.xda-developers.com/showthread.php?t=2226373
-----
MORE IS COMING,HAVE FUN!!!!
Click to expand...
Click to collapse
what's the best to improve games performance? without flashing by cwm
Sorry im not a gamer so i have no idea.
without flashing is not supported by the most,but you can extract them and copy the files with rootexplorer to system with right permission.or maybe u can use flashgaordon for that.
thanks
-CALIBAN666- said:
Sorry im not a gamer so i have no idea.
without flashing is not supported by the most,but you can extract them and copy the files with rootexplorer to system with right permission.or maybe u can use flashgaordon for that.
Click to expand...
Click to collapse
can i flash the cwm from flashgordon? having a locked bootloader
or is there a OverClocked kernel for stock 4.1.2 for e610? and is possible to flash it via flashgordon?
i dont know,but its better to do this with terminal emulator,its safer.
Here is guide for this,but its for L5 e610/612.....no garanty for other phones.
for this extract the zipfile from cwm,now you have a boot.img file,this copy to your internel sd card,not in a folder.
now open terminal emulator and write su and than enter,wait until superuser is granted.
now type following text
dd if=/sdcard/recovery.img of=/dev/block/mmcblk0p17
now enter again,its flashed in 2 seconds,when done type reboot recovery and press enter,done.
your phone boots into cwm.
for kernel is no problem after this!!!
No garanty for working right without open bootloader.
-------
-CALIBAN666- said:
i dont know,but its better to do this with terminal emulator,its safer.
Here is guide for this,but its for L5 e610/612.....no garanty for other phones.
for this extract the zipfile from cwm,now you have a boot.img file,this copy to your internel sd card,not in a folder.
now open terminal emulator and write su and than enter,wait until superuser is granted.
now type following text
dd if=/sdcard/recovery.img of=/dev/block/mmcblk0p17
now enter again,its flashed in 2 seconds,when done type reboot recovery and press enter,done.
your phone boots into cwm.
for kernel is no problem after this!!!
No garanty for working right without open bootloader.
-------
Click to expand...
Click to collapse
probably a stupid question, but a kernel is all in boot.img file?
AXD96 said:
probably a stupid question, but a kernel is all in boot.img file?
Click to expand...
Click to collapse
Yup
sent from my p705g - LegacyCarbon
vaikz said:
Yup
sent from my p705g - LegacyCarbon
Click to expand...
Click to collapse
i can overwrite boot.img with a filemanager?
i dont find it in any folder
AXD96 said:
i can overwrite boot.img with a filemanager?
i dont find it in any folder
Click to expand...
Click to collapse
you would need to use terminal emulator and dd it
you would need to know what block your boot.img is on. and make sure the boot.img is for your device.
mine would be like this
dd if=/sdcard/unlocked-mmcblk0boot0.img of=/dev/block/mmcblk0boot0
slipsystem said:
you would need to use terminal emulator and dd it
you would need to know what block your boot.img is on. and make sure the boot.img is for your device.
mine would be like this
dd if=/sdcard/unlocked-mmcblk0boot0.img of=/dev/block/mmcblk0boot0
Click to expand...
Click to collapse
i have some OverClocked kernel and their boot.img, yes they are for stock for my e610
what should i do?
thread updated with some tweaklinks and links to performance settings apps
simply use the terminal emulator method that i have posted for you.
thanks. Awesome list!
Awsome! Thanks, will test some
Enviado desde mi Nexus 10 mediante Tapatalk
Awesome list thx
added some new links at the end of post 1,greeeetz!!!
Is it work in micromax a89....?
Sent from my GT-I9500 using XDA Premium 4 mobile app
the most tweaks are universal,but better you read the thread from tweak.
Awesome list thanks :highfive: i will try one
For Samsung Galaxy Grand Duos GT I9082
I'm using Samsung Galaxy Grand Duos GT - I9082 (rooted, but using Stock Rom)
Which tweaks/mods are for my phone?
How many of them can be installed?
I'm already flashed both Pure Performance X and Pimp My Rom (yet not seen any changes; still phone is lagging).
just as the title. i want to know the harm of S2W | L2M | DT2W | BLN .
do they do harm to the phone,especially to the touchscreen?