Jump to content


Photo

[Rom](Razr-Cdma) Flick 5.0 Tornado [12/3/12]

Blur based ICS deodexed Bytecode Flick inverted AOSP Razr CDMA

  • Please log in to reply
2610 replies to this topic

#1221 Bawse

Bawse

    n00b

  • Members
  • Pip
  • 18 posts

Posted 18 October 2012 - 06:48 PM

using androot openas script

#1222 milkshed27

milkshed27

    Member

  • Members
  • PipPip
  • 195 posts
  • LocationFlorida

Posted 18 October 2012 - 08:03 PM

Honestly I dont know how to even begin trying that. I am a noob, but I do like this rom a lot! Thanks in advanced


I personally use SManager from the Play Store to run scripts. Copy and paste the script (copy it from Bytecode's post a few posts back or from below) into any text/word program on your comp. Place the text file on your internal memory. Open SManager, select run as root, find and select your text file, select the "su" icon and hit run. Do not set to run on boot until you test it for a day or two to make sure it's a stable setting for your phone. If you do not experience any freezes, lock-ups, or reboots you can then go back into SManager and have it run on boot by selecting the "boot" icon and save. You can also double check if the script ran successfully by using a CPU app such as SetCPU or No Frills, or using a file manager, navigate to /proc/cpu_control/opp_table_current.

Here is the script Bytecode posted a posts back. First row (0-4) represents the slot id, second (300-1300) the Frequency, and third row (1025-1399) is the Volt(mV).

#!/system/bin/sh
echo 0 300 1025 > /proc/cpu_control/tweak_cpu
echo 1 600 1195 > /proc/cpu_control/tweak_cpu
echo 2 800 1320 > /proc/cpu_control/tweak_cpu
echo 3 1000 1388 > /proc/cpu_control/tweak_cpu
echo 4 1300 1399 > /proc/cpu_control/tweak_cpu
  • BytecodeMe and RoWilJr like this
If we question our own actions, our thought process, make a conscious decision to what we feel is right every single day, that's what I believe to be Divinity. That's true Shamanism.

#1223 0145ethan

0145ethan

    Member

  • Members
  • PipPip
  • 50 posts

Posted 18 October 2012 - 08:49 PM

I cannot get OC to work either... Its a great ROM but i really want OC because it makes everything alot smoother... I followed the origional instructions and ran that script and not a thing :/ anyone else got an idea? Anyone who has OC wgo wants to share how they got it?

#1224 milkshed27

milkshed27

    Member

  • Members
  • PipPip
  • 195 posts
  • LocationFlorida

Posted 18 October 2012 - 08:58 PM

Edit: Removed
If we question our own actions, our thought process, make a conscious decision to what we feel is right every single day, that's what I believe to be Divinity. That's true Shamanism.

#1225 HSD-Pilot

HSD-Pilot

    Droid Master

  • Members
  • PipPipPip
  • 303 posts
  • LocationGermany
  • Current Device(s):RazR

Posted 19 October 2012 - 02:11 AM

That Message is not right. You need the Symsearch installed, to get the cpu clock working. Both lines on your screen are totally failed :ph34r:

This is what i get, when i run an CPU Script

Attached Files


Soundcloud <> Bassgrow


#1226 BytecodeMe

BytecodeMe

    Private Pile

  • Superuser
  • 2,004 posts
  • Twitter:@BytecodeMe
  • LocationSan Diego, California
  • Current Device(s):Nexus 4, Droid Razr Maxx HD

Posted 19 October 2012 - 06:30 AM

Updated the OP with scripts that should work. I think that the modules weren't loaded by the time that script ran, it should be fixed now.

byte3plusrainbowsmallllllllller.png


#1227 sashOK!!!

sashOK!!!

    n00b

  • Members
  • Pip
  • 14 posts

Posted 19 October 2012 - 06:43 AM

Yep, this my new DD.
  • BytecodeMe likes this

#1228 keiya345

keiya345

    n00b

  • Members
  • Pip
  • 2 posts

Posted 19 October 2012 - 07:15 AM

The su problem has been solved.
But I found another problem,

When I using Whatsapp's take photo function to take a photo,
the camera will fc :ph34r:

#1229 trikotret

trikotret

    Droid Elite

  • Members
  • PipPipPipPip
  • 1,461 posts
  • Current Device(s):Droid Razr HD

Posted 19 October 2012 - 07:19 AM

How's everyone battery life after day one? I got 13 hours with 3 hours screen time, 50mb email sync, 30 min phone call and lots of group mms all on 4G. My 4G area not that great. Hopefully day 2 will be better since I don't have to sync my email again lol

Sent from my DROID RAZR MAXX using Tapatalk 2

#1230 PWn3R

PWn3R

    Member

  • Members
  • PipPip
  • 118 posts
  • Twitter:AllenGeorge
  • Google+:https://plus.google.com/102317230135122177087

Posted 19 October 2012 - 08:17 AM

what was changed in 1.8.1 vs 1.8.0? I have the old one and am wondering if there is any reason i need to update.

#1231 milkshed27

milkshed27

    Member

  • Members
  • PipPip
  • 195 posts
  • LocationFlorida

Posted 19 October 2012 - 09:01 AM

That Message is not right. You need the Symsearch installed, to get the cpu clock working. Both lines on your screen are totally failed :ph34r:

This is what i get, when i run an CPU Script


Both the sysmsearch and the cpu_control are installed and the script seems to work since the clock speeds and voltages change depending on what script I run. I was told to ignore the failed message by the person who explained how to do it. In any case I'll remove my pic so as to avoid confusion. Thanks for your reply.

Edit:
Everyone seems to have fixed their OC/UC/UV issues with Bytecode's awesome support, but just an FYI in the hopes that it may help someone. Removing two lines from my previous script resulted in no longer receiving the "failed" message when running it with SManager. However, even with those two lines the message still reads "file exists", perhaps that is why the script actually worked.

This leads me to the assumption that the lines below only really need to be applied went adding your script directly into the init.d folder, and not when running the script with SManger as I was doing.

insmod/system/lib/modules/symsearch.ko
insmod /system/lib/modules/cpu_control.ko

So here are the two differences...

#!/system/bin/sh
insmod/system/lib/modules/symsearch.ko
insmod /system/lib/modules/cpu_control.ko
echo 0 300 1025 > /proc/cpu_control/tweak_cpu
echo 1 600 1170 > /proc/cpu_control/tweak_cpu
echo 2 800 1292 > /proc/cpu_control/tweak_cpu
echo 3 1000 1355 > /proc/cpu_control/tweak_cpu
echo 4 1200 1365 > /proc/cpu_control/tweak_cpu
Resulted in...

Please Login or Register to see this Hidden Content

 

Please Login or Register to see this Hidden Content

  32.04KB   6 downloads




#!/system/bin/sh
echo 0 300 1025 > /proc/cpu_control/tweak_cpu
echo 1 600 1170 > /proc/cpu_control/tweak_cpu
echo 2 800 1292 > /proc/cpu_control/tweak_cpu
echo 3 1000 1355 > /proc/cpu_control/tweak_cpu
echo 4 1200 1365 > /proc/cpu_control/tweak_cpu
Resulted in...

Please Login or Register to see this Hidden Content

 

Please Login or Register to see this Hidden Content

  23.85KB   6 downloads
If we question our own actions, our thought process, make a conscious decision to what we feel is right every single day, that's what I believe to be Divinity. That's true Shamanism.

#1232 BytecodeMe

BytecodeMe

    Private Pile

  • Superuser
  • 2,004 posts
  • Twitter:@BytecodeMe
  • LocationSan Diego, California
  • Current Device(s):Nexus 4, Droid Razr Maxx HD

Posted 19 October 2012 - 09:44 AM

what was changed in 1.8.1 vs 1.8.0? I have the old one and am wondering if there is any reason i need to update.


Read the changelog please. :)

3 post in the thread.

byte3plusrainbowsmallllllllller.png


#1233 0145ethan

0145ethan

    Member

  • Members
  • PipPip
  • 50 posts

Posted 19 October 2012 - 10:56 AM

Thank you for the OC fix, i love this ROM so much!

#1234 rwhite4761

rwhite4761

    n00b

  • Members
  • Pip
  • 14 posts

Posted 19 October 2012 - 12:33 PM

Yeah Bytecode that would be great if you wanted to put that theme into a fishable .zip and put it in the OP. What's mine is yours because sharing is how we can make Android better :)
  • BytecodeMe likes this

#1235 loonie01

loonie01

    Member

  • Members
  • PipPip
  • 190 posts

Posted 19 October 2012 - 02:58 PM

Gotta question. My verizon and NFL app, has anybody got it to work?

#1236 jayjr2081

jayjr2081

    Member

  • Members
  • PipPip
  • 66 posts

Posted 19 October 2012 - 03:57 PM

Download the Verizon logon from playstore and it should work..both of mine work

Sent from my DROID RAZR using Tapatalk 2
  • BytecodeMe likes this

#1237 RoWilJr

RoWilJr

    Member

  • Members
  • PipPip
  • 60 posts
  • LocationIL
  • Current Device(s):Galaxy SIII

Posted 19 October 2012 - 04:12 PM

D/L'd...giving it a run now. Thx BC!
  • BytecodeMe likes this

#1238 loonie01

loonie01

    Member

  • Members
  • PipPip
  • 190 posts

Posted 19 October 2012 - 04:30 PM

Download the Verizon logon from playstore and it should work..both of mine work

Sent from my DROID RAZR using Tapatalk 2

Thanx. it worked

#1239 robthefive0

robthefive0

    Sarge

  • Members
  • PipPipPip
  • 315 posts
  • LocationN.J.

Posted 19 October 2012 - 05:29 PM

Download the Verizon logon from playstore and it should work..both of mine work

Sent from my DROID RAZR using Tapatalk 2

verizon logon from Playstore?

Sent from my DROID RAZR using Tapatalk 2
Posted Image

#1240 acslam

acslam

    Member

  • Members
  • PipPip
  • 30 posts

Posted 19 October 2012 - 06:32 PM

Question - Apex seems confused by webtop, in that it knows to use a different wallpaper, and switches into "tablet ui", yet it doesn't have the seperate layout of icons/widgets and instead just tries to plaster all the ones from the standard homescreen on there.....


Any way to fix this so webtop runs the way it's supposed to? IE, you have the webtop desktop setup in whatever way you wish and it remembers that layout as something separate than the phone layout?

Alternatively - any option to maybe just put back stock moto launcher, if that is indeed the only way to make webtop/phone mode switching work correctly?





Also tagged with one or more of these keywords: Blur based, ICS, deodexed, Bytecode, Flick, inverted, AOSP, Razr, CDMA

4 user(s) are reading this topic

0 members, 4 guests, 0 anonymous users