Me and a buddy are going to begin our development on an custom GB ROM and right now, we're stuck in the development process thanks to impossibility to enable init.d tweaks. I've followed the guideline on this one (first post, first page) but I can't understand how to make init.d tweaks work on Arc S..
So, someone that can help me with this problem ASAP?
Google "enable init.d".
Sent from myushi
XperienceD said:
Google "enable init.d".
Sent from myushi
Click to expand...
Click to collapse
Already done it. The guide is simple but confusing because I can't make it work.. /:
Sent from my GT-I9300 using xda app-developers app
Destroyedbeauty said:
Already done it. The guide is simple but confusing because I can't make it work.. /:
Sent from my GT-I9300 using xda app-developers app
Click to expand...
Click to collapse
There are two guides, what you've linked to is a collection, which of the two showing how to enable it isn't working?
Sent from myushi
XperienceD said:
There are two guides, what you've linked to is a collection, which of the two showing how to enable it isn't working?
Sent from myushi
Click to expand...
Click to collapse
This:
" Init.d
(needs ROM with init.d access and busybox, open empty file, insert header #!/system/bin/sh and put these there, save in /system/etc/init.d and name it something like 77tweaks) "
I'm trying to do it the same way as this guide are telling me but after entering the init.d folder - I am lost, totally. Create / open empty file? How? And what shall I type down in that file? Help me.. I am stuck atm.
Sent from my GT-I9300 using xda app-developers app
Destroyedbeauty said:
I'm trying to do it the same way as this guide are telling me but after entering the init.d folder - I am lost, totally. Create / open empty file? How? And what shall I type down in that file? Help me.. I am stuck atm.
Click to expand...
Click to collapse
Those instructions are just explaining how to create an init.d file, NOT how to enable init.d on your ROM. Your answer is here - how to enable init.d
XperienceD said:
Those instructions are just explaining how to create an init.d file, NOT how to enable init.d on your ROM. Your answer is here - how to enable init.d
Click to expand...
Click to collapse
Okay, after some further checking of the linked thread - I can't still get it in my mind how-to create an init.d file, neither how I should paste and make those init.d scripts come alive.. Here is the problem, and searching on Google isn't helpful at all.. /: help me, please, give me a quick guide on:
1. Create own init.d file
2. Make and enable init.d scripts.
Destroyedbeauty said:
Okay, after some further checking of the linked thread - I can't still get it in my mind how-to create an init.d file, neither how I should paste and make those init.d scripts come alive.. Here is the problem, and searching on Google isn't helpful at all.. /: help me, please, give me a quick guide on:
1. Create own init.d file
2. Make and enable init.d scripts.
Click to expand...
Click to collapse
More reading then as the way to enable it is at my second link and the way to create files is at what you've been reading already.
Sent from myushi
Related
Overview
This is my second GUIDE post. My first GUIDE explains how to compile the kernel from source. Follow that guide first before reading on. You can find it here: http://forum.xda-developers.com/showthread.php?t=1516051
This guide will get you started on how to modify your file-system (ROM). I will go over some examples of changing your phone functionality to show you how things are done. After that it is up to you to change what ever you want.
This first post will contain general information and requirements. The 2nd post will have guides on how to modify the initramfs. The 3rd post will have example modifications of the ROM.
These instructions work for both T989 (T-Mobile) and I727 (AT&T) variants of the Samsung Galaxy S2 phones. I do not take any credit for these instructions. I am just gathering what I learned from other posts and articles. I have listed the references below.
Requirements
The following instructions assumes you are using Ubuntu. I am using version 10.10.
ADB Setup
Android Debug Bridge (ADB) is a command line tool that allows you to command your phone via a USB connection. This requires you to turn on "USB debugging" on your phone. To do this on your phone goto Settings->Applications->Development. Make sure "USB debugging" is checked.
To get ADB and setup the USB driver go here: http://esausilva.com/2010/05/13/setting-up-adbusb-drivers-for-android-devices-in-linux-ubuntu/
Java Setup
In order to change the functionality of your Android system you will sometimes need to edit the jar/apk files. To do this you will need the Java Development Kit (JDK). Install the JDK with this:
Code:
sudo apt-get install sun-java6-jdk
Still Under Construction
How To Modify Initramfs
If you ever flash any of the custom ROM released by the great developers found in this forum you should be familiar with the terms "insecure kernel" and "init.d support." With an "insecure kernel" you can easily root your phone by bypassing the security through using ADB. With "init.d support" you can make automatic scripts to run at bootup. Both of these features require you to modify your initramfs.
In this post I will show you how to modify your initramfs to enable these features and in the future I will add more examples here.
If you do not know what a initramfs is or where to get it then you need to read my first GUIDE here: http://forum.xda-developers.com/showthread.php?t=1516051
Insecure Kernel
An insecure kernel allows ADB as root and commands like "adb remount" to enable write mode for your system. To make an insecure kernel it is a matter of modify the file "default.prop" in your initramfs. Open up this file with a text editor and change the line
Code:
ro.secure=1
to
Code:
ro.secure=0
After you make the change recompile the kernel with the modified initramfs using my kernel building guide. If you search in the forums there are guides on how to use your insecure kernel to root your phone.
Change Boot Image
In the initramfs folder you will find "initlogo.rle" This is the logo that appears during boot. You can replace this with a custom image as long as the format is compatible. When I have time, I will post the programs to convert from "rle->raw->png" and back "png->raw->rle" (search for "from565" and "to565").
Init.d Support
TODO (Sorry I have been really busy lately. I'll post this as soon as I get some free time. Basically you need to modify "init.rc" in your initramfs directory)
Introduction to Modifying ROM
In this post I will explain how to modify your stock ROM to include features like "volume wake-up" and more.
Getting your stock ROM
First we need to get a copy of your ROM. I found the easiest way to get this is to flash ClockworkMod and doing a backup of your phone to an external sd card. Connect your phone to your computer and grab the file called "system.ext4.tar" in your backup folder. This is your filesystem or ROM. Extract it to a working folder.
If you do not have ClockworkMod, please search the forums for instructions. ClockworkMod is a replacement for your default "Recovery" partition.
System folders
Here is a walkthrough of the folder structure of the system:
app\ - folder containing your apps (apk)
bin\ - folder containing binary executables
csc\ - consumer software customization, contains the software packages specific to your carrier
etc\ - system configurations
fonts\ - fonts folder
framework\ - folder containing android core files
lib\ - folder containing libraries (like .dll in windows) and modules (drivers)
media\ - folder containing media files
T9DB\ - looks like it contains keyboard layouts
tts\ - text to speech
usr\ - user settings
vsc\ - ????
xbin\ - alternate folder to hold binary executables???
build.prop - android settings file
CSCFiles.txt - carrier specific configuration file???
CSCVersion.txt - Configuration version???
SW_Configuration.xml - List of version numbers
The folders with question marks I am not sure of. If you know please post them here and I will update the list.
Understanding Odex and Deodex
Before getting your hands dirty, you need to know what odex and deodex means. Here is a good article on the issue: http://www.talkandroid.com/guides/m...n-the-all-inclusive-explanation/#.T1f7BN7Km9V
Remove Apps
All of your stock apps are in the "app" directory. You can remove all the bloat apps from this directory if you like.
Change Android Settings
You can modify "build.prop" in you system directory to change different Android settings. You can read more about the different settings here:
http://www.android-hilfe.de/root-ha...imus-3d/145592-tweaks-scripts-collection.html
Volume Wakeup
This volume wakeup guide was adapted from these two guides: http://www.jordanhotmann.com/2011/08/how-to-change-default-orientation-of.html and http://forum.xda-developers.com/showthread.php?p=18226553
In this guide I will show you how to modify your system files to allow waking up your phone with the volume keys instead of just the power key. This will prolong the life of the power key.
Requirements
This mod requires an edit to a jar file (Java archived file), specifically the file "/system/framework/android.policy.jar." To do this we need some tools that will disassemble the jar or apk file so we can edit the source code. After that we need to assemble it back and overwrite the original file(s).
Download the 4 files located here (smali-1.3.2.jar, baksmali-1.3.2.jar, baksmali, and smali): http://code.google.com/p/smali/downloads/list
Put the 4 files in a folder which is included in your path. For example, I placed the files in my home directory under a folder called bin (~/bin). Then in my ".bashrc" file I have this call at the end of the script:
PATH=~/bin:$PATH
This allows you to make calls to "baksmali" and "smali" in any directory.
Still Under Construction
To Do List
- How to make ClockworkMod flashable ROM. I have no clue how to do this. I always modify my ROM in place using "root explorer" and/or ABD, so I have never needed to flash a new one. It would be great if someone can post a guide on how to do this. Thanks.
*Update - See post #7. Thanks to one5
- How to modify cpu voltage and frequency
- How to change boot animation
My Request
I am still very new to all of this and android in general. I learned everything I posted here from reading other guides and articles on the internet and this forum. Through my searching, I found that the information on this stuff are there but very spread out making it very hard to find. This is why I started these guides to help out noobs like me. A central place where all the T989 (and I727, didn't forget you guys) noobs can come to learn.
I thank anyone for thanking me but my goal is to not get my "thank you" meter up. All I ask is if you learn something in regards to android development, please post up a GUIDE so everyone can benefit.
Also, my last request is if you see any errors or optimization to my steps please leave a note and I will change them.
Thank you.
References
http://esausilva.com/2010/05/13/setting-up-adbusb-drivers-for-android-devices-in-linux-ubuntu/
http://www.jordanhotmann.com/2011/08/how-to-change-default-orientation-of.html
http://www.neopeek.com/viewtopic.php?f=24&t=6801
http://www.talkandroid.com/guides/m...n-the-all-inclusive-explanation/#.T1a_ed7Km9V
http://www.freeyourandroid.com/guide/de-odexing_with_baksmali
Can't wait to read the full guide.
Sent from my SGH-T989 via Satanic Unicorns.
+1 can't wait for full guide.
Maybe i can do my own roms. If i trust myself.. Lol
cheers!!
How to make ClockworkMod flashable ROM
To make a flashable ROM:
Make a folder to dump the files from your phone, for example a folder named ROM on your desktop.
From CMD: adb pull / C:\Users\(yourusername)\Desktop\ROM
Download AutoUpdateCreator
Open CreateUpdateZip.exe and follow the directions.
Your ROM will be added to the generatedZips folder.
one5,
Thanks for the guide on making the ROM flashable.
one5 said:
To make a flashable ROM:
Make a folder to dump the files from your phone, for example a folder named ROM on your desktop.
From CMD: adb pull / C:\Users\(yourusername)\Desktop\ROM
Download AutoUpdateCreator
Open CreateUpdateZip.exe and follow the directions.
Your ROM will be added to the generatedZips folder.
Click to expand...
Click to collapse
thanks for the link. this is way nicer than doing it by hand.
Reserved
Sent from my SGH-T989 using xda premium
how could I easily make my phones kernel inscure... Semms like it should be easy but not sure... Im on ICS so befor I go doing all this just wanted to know if their was a easy way to get adb up and running again. without making a whole kernel I guess is what I want to know
Rushing said:
how could I easily make my phones kernel inscure... Semms like it should be easy but not sure... Im on ICS so befor I go doing all this just wanted to know if their was a easy way to get adb up and running again. without making a whole kernel I guess is what I want to know
Click to expand...
Click to collapse
If your on the stock T-mobile ICS update, just root it with the oden method. If your on one of the roms on here than you probably are already insecure.
---------- Post added at 11:34 AM ---------- Previous post was at 11:07 AM ----------
one5 said:
To make a flashable ROM:
Make a folder to dump the files from your phone, for example a folder named ROM on your desktop.
From CMD: adb pull / C:\Users\(yourusername)\Desktop\ROM
Download AutoUpdateCreator
Open CreateUpdateZip.exe and follow the directions.
Your ROM will be added to the generatedZips folder.
Click to expand...
Click to collapse
Works like a charm!! However, that command will also pull all data off int. & ext. sd storage. I was meaning to back them up any ways lol. Thanks to you and op!
Rushing said:
how could I easily make my phones kernel inscure... Semms like it should be easy but not sure... Im on ICS so befor I go doing all this just wanted to know if their was a easy way to get adb up and running again. without making a whole kernel I guess is what I want to know
Click to expand...
Click to collapse
Here is a guide if your stock. http://forum.xda-developers.com/showthread.php?p=23343879
This ROM AOSP, or TW, o wait, its neither.
It doesn't have to be a rom to be under development, loopy. Guides are very helpful to the community.
No offense loopdog just saying...
Sent from my SGH-T989 using xda premium
Rushing said:
It doesn't have to be a rom to be under development, loopy. Guides are very helpful to the community.
No offense loopdog just saying...
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
Guides are indeed very helpful and this looks like a good one. Correct me if I'm wrong, but I was under the impression that any thread in development had to involve coding. It had to provide something that can be flashed or installed. IMHO, guides and tutorials; in general. Questions, of course Q&A. Apps and themes, pretty self explainetary. Development, all that is done thru coding involving Android and is flashable
Agreed my friend but I've noticed that on many forums guides may go under development and even get stickied in some cases. Just saying the scope is just a bit more wide than flashables and code oriented posts... TheRe should be a section just for guides I think that would make it really easy to find guides anyway... Peace threadjack over .
Sent from my SGH-T989 using xda premium
15 toggles
Any known Guides to implement 15 Toggles to a TW Rom ??? can't find one for our device !!!
Thanks
Tornade69 said:
Any known Guides to implement 15 Toggles to a TW Rom ??? can't find one for our device !!!
Thanks
Click to expand...
Click to collapse
Yes. well what do you mean exactly by implement?
Sent from my SGH-T989 using xda premium
Rushing said:
Yes. well what do you mean exactly by implement?
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
I want to add this mod in my own custom rom but can't find how to do it...
Sent from my SGH-T989 using xda app-developers app
Uhhm ok first of all I'm not a 'PRO' at android manipulations or something, just an average xda guy, so please be friendly ...
I was thinking if is there a way that I can make my stock rom function like custom roms? Like have what most custom roms have to offer? I read that stock is always better than custom...
Also like my stock can have tweaks to lengthen batt life, make it faster eventhough its just stock. And also have tweaks like MegaBassBeats etc. just wondering since idk if I can flash those directly on stock.
PS. Im currently using Hybrid v4
You can follow kurotsugi thread to create custom rom
http://forum.xda-developers.com/showthread.php?t=1590330
I always use stok rom and customize with some tweak, modify infitrams in kernel and add another work from other but still love to use stok kernel.
savie said:
You can follow kurotsugi thread to create custom rom
http://forum.xda-developers.com/showthread.php?t=1590330
I always use stok rom and customize with some tweak, modify infitrams in kernel and add another work from other but still love to use stok kernel.
Click to expand...
Click to collapse
did you follow that guide too in customizing your stock rom? Im not a pro coder so I dont know if I can manage to create my own rom though
also visit ......... http://forum.xda-developers.com/showthread.php?p=25247089
Sent from my GT-S6102 using xda premium
manoranjan2050 said:
also visit ......... http://forum.xda-developers.com/showthread.php?p=25247089
Sent from my GT-S6102 using xda premium
Click to expand...
Click to collapse
Ok will check that out... I read it once but it seemed hard and intimidating lol
Nar1990 said:
did you follow that guide too in customizing your stock rom? Im not a pro coder so I dont know if I can manage to create my own rom though
Click to expand...
Click to collapse
That thead made after i custom my rom. Lol.
But kurotsugi more better than me to write and his progres very awsome n more advance than me.
Actualy just use rootexplorer, titanium backup, cwm, and winrar in window enough for minimalis customize.
if you don't want to make an installable rom, you can skip that part. you can go directly for customizing section. you can follow chamatht post about deodexing apk's.
PS: thanks savie, but I'm not as good as savie have said. I'm just another noob here
kurotsugi said:
if you don't want to make an installable rom, you can skip that part. you can go directly for customizing section. you can follow chamatht post about deodexing apk's.
PS: thanks savie, but I'm not as good as savie have said. I'm just another noob here
Click to expand...
Click to collapse
sir what do you mean if I dont want to make an installable rom? and which part do I skip? I just want to make a rom or just customize stock rom and let it have maybe the following:
-bravia engine
-megabassbeats
-v6 and [email protected] support
-deodex (still thinking about it, since it looks kinda hard)
-merruk kernel (I think I read somewhere that it is ok with stock rom? not sure)
those are currently my target for this project... is it possible to have those on (modified) stock rom sir?
Edit: I just read your guide sir, and I think I can do it (I think), so I can customize an existing rom that I have now and put bravia engine + megabassbeats etc. on it? Btw, I have a ccopy of chobits rom so I have the files, your guide says "put be_photo and be_movie in system/etc folder then edit the build.prop" what do I put in build.prop to make it work?
Nar1990 said:
Ok will check that out... I read it once but it seemed hard and intimidating lol
Click to expand...
Click to collapse
Thats not even hard!! Its pretty simple even a noob like me can make a rom using that.. Though I am the OP of that thread
Sent from my GT-S5360 using XDA
Nar1990 said:
sir what do you mean if I dont want to make an installable rom? and which part do I skip? I just want to make a rom or just customize stock rom and let it have maybe the following:
-bravia engine
-megabassbeats
-v6 and [email protected] support
-deodex (still thinking about it, since it looks kinda hard)
-merruk kernel (I think I read somewhere that it is ok with stock rom? not sure)
those are currently my target for this project... is it possible to have those on (modified) stock rom sir?
Edit: I just read your guide sir, and I think I can do it (I think), so I can customize an existing rom that I have now and put bravia engine + megabassbeats etc. on it? Btw, I have a ccopy oe f chobits rom so I have the files, your guide says "put be_photo and be_movie in system/etc folder then edit the build.prop" what do I put in build.prop to make it work?
Click to expand...
Click to collapse
you can go straight to the customization. see add_build.prop.sh inside megabassbeat. that is the script that you should add.
hell_lock said:
Thats not even hard!! Its pretty simple even a noob like me can make a rom using that.. Though I am the OP of that thread
Sent from my GT-S5360 using XDA
Click to expand...
Click to collapse
lol ok will try to download cygwin, mmeeh might as well try I guess
kurotsugi said:
you can go straight to the customization. see add_build.prop.sh inside megabassbeat. that is the script that you should add.
Click to expand...
Click to collapse
so the add_build.prop.sh I just copy paste the contents to build.prop? or is it supposed to be a separate file that I should just paste somewhere on system folder?
Nar1990 said:
lol ok will try to download cygwin, mmeeh might as well try I guess
so the add_build.prop.sh I just copy paste the contents to build.prop? or is it supposed to be a separate file that I should just paste somewhere on system folder?
Click to expand...
Click to collapse
Copy paste the content
Sent from my GT-S5360 using XDA
don't copy all the script. you'll need to copy the string and value for build.prop file. if you don't know which one should be copied you can use this one. http://www.mediafire.com/download.php?zf40rush0bdj1u2
Ok thanks for the help sir will work on it later tonight
Sent from my GT-S5360 using XDA
i too was a noob before so i understand you
just try to read, read and read
or you can ask when you are in doubt
ps: the best teacher is experience
leodasal2 said:
i too was a noob before so i understand you
just try to read, read and read
or you can ask when you are in doubt
ps: the best teacher is experience
Click to expand...
Click to collapse
Lol thanks i've been staring at the pc monitor for a half day and decided to take a break.. All the scripts are cracking my head
Sent from my GT-S5360 using XDA
Not sure as this belongs here or not, but I think this is the best place for it. This will allow you to add init.d to your phone without CWM. I got it working for me, so I hope everyone else will have the same fortune.
Requirements:
1.Root
2.Fully installed Busybox
3. Windows computer
Instructiions:
Download and run runme.bat
Credits:
keunhuvac - http://forum.xda-developers.com/showthread.php?t=1577545
Added the CWM version to the OP - Quick instructions:
Put on your SD card or somewhere you can find on your phone and flash with CWM - done!
Files from his forum - Xperia S - has been edited to remove errors
Please note this will fail if any of the Busybox symlinks are not complete!
popfan said:
Not sure as this belongs here or not, but I think this is the best place for it. This will allow you to add init.d to your phone without CWM. I got it working for me, so I hope everyone else will have the same fortune.
Requirements:
1.Root
2.Fully installed Busybox
3. Windows computer
Instructiions:
Download and run runme.bat
Credits:
keunhuvac - http://forum.xda-developers.com/showthread.php?t=1577545
Files from his forum - Xperia S - has been edited to remove errors
Please note this will fail if any of the Busybox symlinks are not complete!
Click to expand...
Click to collapse
I am not sure it works.
1. the 06dalvik script did not create /cache/dalvik-cache folder.
2. the 99test did not create any file in /data/local/tmp.
does our kernel support init.d?
ganeshbiyer said:
I am not sure it works.
1. the 06dalvik script did not create /cache/dalvik-cache folder.
2. the 99test did not create any file in /data/local/tmp.
does our kernel support init.d?
Click to expand...
Click to collapse
Mine is working, if you got some errors during the load process, I need to know.
If thing to do is check your symlinks and make sure that they are all there for busybox.
Use this to check your symlinks:https://play.google.com/store/apps/...t=W251bGwsMSwyLDEsInN0ZXJpY3Nvbi5idXN5Ym94Il0.
If any one is missing, it could stop the install process.
On the thing about our kernel supporting init.d, the answer is not currently and that is why we have to use this program. It will allow compatibility with our kernel to have init.d.
The busbox is ok.
I can run it rom my terminal on the phone as well as adb shell.
There were no errors during installation.
Edit:
I ran the script again today.
The init.d works. the 99test did create a file in /data/local/tmp.
INIT.D installed. Excellent! Now to look up some tweaks. You da man Popfan.
Here are some
http://forum.xda-developers.com/showthread.php?t=1709836
ganeshbiyer said:
Here are some
http://forum.xda-developers.com/showthread.php?t=1709836
Click to expand...
Click to collapse
Yup, that's the thread I've been reading through.
jeriku said:
Yup, that's the thread I've been reading through.
Click to expand...
Click to collapse
Post the updated build.prop and init.d scripts, when you are done verifying.
jeriku said:
INIT.D installed. Excellent! Now to look up some tweaks. You da man Popfan.
Click to expand...
Click to collapse
Thanks for the feedback. I was starting to wonder if anyone knew what this can do for their phone.
Here is another good site:
http://forum.xda-developers.com/showthread.php?t=991276
A lot of good stuff. I am going to see if I can get the tweaks to run at 100%, here in a few days. I loved it when I ran this on my cappy.
popfan said:
Thanks for the feedback. I was starting to wonder if anyone knew what this can do for their phone.
Here is another good site:
http://forum.xda-developers.com/showthread.php?t=991276
A lot of good stuff. I am going to see if I can get the tweaks to run at 100%, here in a few days. I loved it when I ran this on my cappy.
Click to expand...
Click to collapse
I'll be looking forward to hear how this goes. I was just reading over the thread and I want it.
Sent from Rooted LT28at with ICS.
jeriku said:
I'll be looking forward to hear how this goes. I was just reading over the thread and I want it.
Sent from Rooted LT28at with ICS.
Click to expand...
Click to collapse
Running it at 50% is pretty good also. The script will at least zipalign, check for proper permissions on all apps, clean the delvik-cache, and reorganize the task manager priorities and also your ram manager settings. You should try the battery calibration script that is there also, it is really nice.
popfan said:
Running it at 50% is pretty good also. The script will at least zipalign, check for proper permissions on all apps, clean the delvik-cache, and reorganize the task manager priorities and also your ram manager settings. You should try the battery calibration script that is there also, it is really nice.
Click to expand...
Click to collapse
I'm going to read it through a couple times then give it a go. Did you use script manager or just terminal?
Sent from Rooted LT28at with ICS.
jeriku said:
I'm going to read it through a couple times then give it a go. Did you use script manager or just terminal?
Sent from Rooted LT28at with ICS.
Click to expand...
Click to collapse
Script manager is easiest. Don't forget to use as root for all those scripts.
I did forget that it will also allow for a powershift, so you can change your settings on the fly if you need more multitasking capabilities than power savings or more power.
If you get v6 working please post any differences you notice. esp launcher re-draws. <that to me is one of the most annoying things ever. and would love to know that there is something that can be done about it
killerskincanoe said:
If you get v6 working please post any differences you notice. esp launcher re-draws. <that to me is one of the most annoying things ever. and would love to know that there is something that can be done about it
Click to expand...
Click to collapse
It looks like it is going to be a little tricky, but at 50% I can tell the Xperia Launcher is working better and almost never see any lag. With Nova Launcher, it just flies.
That's awesome news. What exactly do you mean by 50%... The CPU? Or what?
Sent from my HTC Flyer P510e using xda app-developers app
killerskincanoe said:
That's awesome news. What exactly do you mean by 50%... The CPU? Or what?
Sent from my HTC Flyer P510e using xda app-developers app
Click to expand...
Click to collapse
It reads like there are extra manual steps to get ICS fully super charged.
Sent from Rooted LT28at with ICS.
It does not look like the latest CWM that I put will be compatible with the extra mods, after I put the cwm together and flashed it bricked my phone. I have put my phone back to where it was before the modifications for the ICS supercharger (the service.jar and service.odex modded part) and works just fine without the additional mods, but I don't think I am going to try to mod the phone again (wife will get mad at me if I hard brick my phone).
[SCRIPTS][TWEAKS][12/31/2012]old LASERdroid scripts(MPEngine9 included!)
active thread here
my first & old sourcehub
feel free to explore & experiment my old codes
you don't need to ask me for permission.(still, you must give me a credit by adding a link on your thread)
source code https://github.com/lenarox/rtmixproject
blog http://blog.naver.com/hoholee12
matcl http://matcl.com/?m=bbs&bid=imbeded&uid=130014
Click to expand...
Click to collapse
new VMLagTuner 2.3 continued by Pizza_Dox available for download!
instructions:
-download this file from attachment below. filename:VmLagTuner_V2.3.sh.pdf
-run this script in smanager.
-you can choose two options for install, temporary or permanent!
-enjoy
see the attachment below:3
Instrutions ? How to run this?
Sent from my GT-I9000 using Tapatalk 2
Use sManager. It's a script.
BlueFlame4 said:
Use sManager. It's a script.
Click to expand...
Click to collapse
No , its a init.d script, i just get it to work, thks
Netmatrix said:
Instrutions ? How to run this?
Sent from my GT-I9000 using Tapatalk 2
Click to expand...
Click to collapse
Sent from my GT-I9000 using Tapatalk 2
it's compatible with jb roms?
sorry for the late reply, you can test run with smanager to make sure its working fine,
and then put it in init.d folder for everyday use. Good luck
work in gamerzrom v11 rom ??
Im pretty sure it may work on all roms which has support in init.d scripts.
I'll give it a try.
a NEW version of VmLagTuner V1.5 was released
it is faster than the previous versions, try 'em out!
Just for games?
Sent from my GT-I9000 using xda premium
how to use this script i dont have init.d folder....and should i delete the .pdf ..how should i apply in script manager...?
dhurk said:
Just for games?
Sent from my GT-I9000 using xda premium
Click to expand...
Click to collapse
this script gives a boost to the ui also.
meaning that it is not only for games but also for everything
roshan2989 said:
how to use this script i dont have init.d folder....and should i delete the .pdf ..how should i apply in script manager...?
Click to expand...
Click to collapse
you may first run the script with the smanager and it will automatically save profile of the script.
you can then go to menu>list and search for the profile and enable su and boot options.
this will make the script applied everytime on boot.
oh, and make sure you have su access on the smanager app.
thanx man
works great....awesome
cheers
work on c-rom mix?
Phonerix said:
work on c-rom mix?
Click to expand...
Click to collapse
It should work on every ROM since it only alters some kernel parameters.
BTW: Are there any disadvantages using this?
Hi ! I'm using V6 Supercharger and Thunderbolt Scripts, will this work for me ? Thanks
Starsream88 said:
Hi ! I'm using V6 Supercharger and Thunderbolt Scripts, will this work for me ? Thanks
Click to expand...
Click to collapse
Yes you can use this with v6 supercharger and thunderbolt scripts but to take better effect,
you'll have to disable ALL other scripts like i mentioned in the first post.
BlueFlame4 said:
It should work on every ROM since it only alters some kernel parameters.
BTW: Are there any disadvantages using this?
Click to expand...
Click to collapse
im working hard on it to have almost no disadvantages,
make sure to download the latest one.
First off, I did not come up with this idea but I adapted it from smokin1337 and his thread: [MOD] EZ InitD - init.d the EZ way !!
How to make it work...
Take file in the attached zip and use your favorite root explorer and paste it in /system/etc/ overwriting the file that is there.
Set permissions of the file to be rwx, rx, rx
Create an init.d folder inside of /system/etc and set permisions to rwx, rx, rx
Add init.d scripts and make sure they are also set to rwx, rx, rx.
Reboot and enjoy your init.d scripts!
All credits to smokin1337 for the mod, I just added the line to our postboot.sh.
I tested it and it works as it should :good:
Enjoy!
-Scott
EDIT: Changed the permissions of the scripts to 755 from 777 to guard against possible malware. Info courtesy of jcase.
Just a note, I use ES File Explorer to do this but any root level explorer should work. I just use ES because I am familiar with it.
Some init.d scripts can rely upon the use of BusyBox so install that from the market.
Sorry for the stupid question but what does this actually do.
What can I get out of it if I install it?
Sent from my SAMSUNG-SGH-I337 using xda app-developers app
azz72 said:
Sorry for the stupid question but what does this actually do.
What can I get out of it if I install it?
Sent from my SAMSUNG-SGH-I337 using xda app-developers app
Click to expand...
Click to collapse
Good question... If you have to ask it then this is not something for you. Haha, Just kidding... But seriously..
Basically init.d scripts are scripts that run when the phone boots up. You can make them do various things like setting system level tweaks, cleaning and purgin databases, and on and on and on...
In the ROMS I build I use an init.d script that remounts the file system more efficiently (in theory anyways) but there are other uses for init.d scripts.
A real popular one is called "V6 Supercharger" Its a collection of scripts that are designed to really tweak out the operating system for the supreme performance (once again, debatable).
There are other things that could be done... If your familiar with old school computing and you know autoexec.bat this is basically that for Android.
-Scott
Gotcha
Ive tried the super charger v6 for my htc inspire a long time ago couldnt tell if it worked or not so I kinda got what ur saying.
Thanks for clearing it up for me
azz72 said:
Gotcha
Ive tried the super charger v6 for my htc inspire a long time ago couldnt tell if it worked or not so I kinda got what ur saying.
Thanks for clearing it up for me
Click to expand...
Click to collapse
Yeah, no problem at all.
scrosler said:
Good question... If you have to ask it then this is not something for you. Haha, Just kidding... But seriously..
Basically init.d scripts are scripts that run when the phone boots up. You can make them do various things like setting system level tweaks, cleaning and purgin databases, and on and on and on...
In the ROMS I build I use an init.d script that remounts the file system more efficiently (in theory anyways) but there are other uses for init.d scripts.
A real popular one is called "V6 Supercharger" Its a collection of scripts that are designed to really tweak out the operating system for the supreme performance (once again, debatable).
There are other things that could be done... If your familiar with old school computing and you know autoexec.bat this is basically that for Android.
-Scott
Click to expand...
Click to collapse
Thanks for the explanation i really needed too before perform this mod thanks
elvin9 said:
Thanks for the explanation i really needed too before perform this mod thanks
Click to expand...
Click to collapse
Yeah, this mod is not your ordinary mod. Most people will never use this type of mod.... Or they do use it in the custom ROM they use and never even know about what it does.
Try using 755 instead of 777, otherwise you are opening yourself up to potential problems.
scrosler said:
First off, I did not come up with this idea but I adapted it from smokin1337 and his thread: [MOD] EZ InitD - init.d the EZ way !!
How to make it work...
Take file in the attached zip and use your favorite root explorer and paste it in /system/etc/ overwriting the file that is there.
Set permissions of the file to be rwx, r, r
Create an init.d folder inside of /system/etc and set permisions to rwx, rwx, rwx
Add init.d scripts and make sure they are also set to rwx, rwx, rwx.
Reboot and enjoy your init.d scripts!
All credits to smokin1337 for the mod, I just added the line to our postboot.sh.
I tested it and it works as it should :good:
Enjoy!
-Scott
Click to expand...
Click to collapse
jcase said:
Try using 755 instead of 777, otherwise you are opening yourself up to potential problems.
Click to expand...
Click to collapse
Responded in updater script thread.
So do we have to find make scripts I'm assuming this just set up the device to work with the scripts
Sent from my SAMSUNG-SGH-I337 using Tapatalk 2
DJsCrIBbLe said:
So do we have to find make scripts I'm assuming this just set up the device to work with the scripts
Sent from my SAMSUNG-SGH-I337 using Tapatalk 2
Click to expand...
Click to collapse
Right, exactly.
You can peruse the forums and find your favorite "battery saving" and "super charger" scripts.
Gotcha thanks .
Sent from my SAMSUNG-SGH-I337 using Tapatalk 2
I've discovered the same thing you achieve here before, when i was trying to create a swap internal SD for the external, but unfortunately it didn't work, i used your rom on my old Note 2, it was amazing hope to see CleanROM for this one. Thanks for publishing this.
juanyunis said:
I've discovered the same thing you achieve here before, when i was trying to create a swap internal SD for the external, but unfortunately it didn't work, i used your rom on my old Note 2, it was amazing hope to see CleanROM for this one. Thanks for publishing this.
Click to expand...
Click to collapse
Yeah, I am starting to grow frustrated. Hopefully soon!