[GUIDE]HOW to make init.d work......not use custom kernel(sorry if my word is wrong) - Galaxy Y GT-S5360 General

Hey guys, i'am newbie in XDA I just want directory init.d work and not use custom kernel....its just simple code..
you just put the code:
# init.d support
busybox run-parts /system/etc/init.d/
In >install-recovery.sh< in directory /system/etc, click instal-recovery.sh and click execute, and you will be get
Init.d work..
________________
YOU CAN TEST INIT.D with 99test(create a new file in /system/etc/init.d
And gift name 99test or other...
And this the code:
( #!/system/bin/sh
touch /data/local/tmp/init.d_log_test.txt
echo "done" >> /data/local/tmp/init.d_log_test.txt
),
If have file :
init.d_log_test.txt in
/data/local/temp/
Init.d its work
__________
NOTE: you must have BUSYBOX, you can execute instal-recovery.sh again if 99test not work
Ok, good luck
Sorry if my english so bad
Sent from my GT-S5360 using XDA

shoutokuyaki said:
Hey guys, i'am newbie in XDA I just want directory init.d work and not use custom kernel....its just simple code..
you just put the code:
# init.d support
busybox run-parts /system/etc/init.d/
In >install-recovery.sh< in directory /system/etc, click instal-recovery.sh and click execute, and you will be get
Init.d work..
________________
YOU CAN TEST INIT.D with 99test(create a new file in /system/etc/init.d
And gift name 99test or other...
And this the code:
( #!/system/bin/sh
touch /data/local/tmp/init.d_log_test.txt
echo "done" >> /data/local/tmp/init.d_log_test.txt
),
If have file :
init.d_log_test.txt in
/data/local/temp/
Init.d its work
__________
NOTE: you must have BUSYBOX, you can execute instal-recovery.sh again if 99test not work
Ok, good luck
Sorry if my english so bad
Sent from my GT-S5360 using XDA
Click to expand...
Click to collapse
I ran this
# init.d support
busybox run-parts /system/etc/init.d/
and I guess it ran cuz I got a wall of text. But the 99test didn't execute. But there was a init.d_log_test.txt in /data/local/tml/
So does that mean its working or that it was ALREADY working?

sorry brother but i have already made a thread about this in dev section...

it won't work.

hell_lock said:
sorry brother but i have already made a thread about this in dev section...
Click to expand...
Click to collapse
Sorry if I repost
Sent from my GT-S5360 using XDA

raolemo said:
I ran this
# init.d support
busybox run-parts /system/etc/init.d/
and I guess it ran cuz I got a wall of text. But the 99test didn't execute. But there was a init.d_log_test.txt in /data/local/tml/
So does that mean its working or that it was ALREADY working?
Click to expand...
Click to collapse
Yeah sure..
Sent from my GT-S5360 using XDA

delete /data/local/temp/init.d_log_test.txt then reboot the phone. please check if we could find the same file after reboot.

kurotsugi said:
it won't work.
Click to expand...
Click to collapse
why it will not work? please give me a clue where the fault
Sent from my GT-S5360 using XDA

kurotsugi said:
delete /data/local/temp/init.d_log_test.txt then reboot the phone. please check if we could find the same file after reboot.
Click to expand...
Click to collapse
follow above test. please confirm the result

kurotsugi said:
follow above test. please confirm the result
Click to expand...
Click to collapse
Ok I will try...
Sent from my GT-S5360 using XDA

Related

[MOD] **EZ InitD for the S3 - And Busybox**

This will enable the loading of scripts in /system/etc/init.d without editing the boot.img.
This will work for ALL dual core S3 variants.
There are two versions, one with my ondemand profile and one without. The one that has CPUProfile has it, this is a script that runs at boot setting the ondemand options to favor battery without sacrificing performance. Most user saw a GREAT increase in battery life especially when idle. See the link in my sig to use the full cpu editor. (works on the S3 with this mod)
To add init.d manually to your own rom just open /system/etc/init.qcom.post_boot.sh and add this line to the end of the file:
Code:
/system/etc/init.d/*
This mod also installs busybox which enables alot of tools native to busybox see here for busybox usage.
To install flash in recovery.
Download:
Add init.d ONLY:
EZ_Init.d ONLY
Add init.d and CPUProfile Script:
EZ_Init.d AND CPUProfile
So does this tweak the onDemand governor? Is it safe to use with setCPU? Is it safe with the Sammy kernel?
Nevermind...found the Sammy kernel thread under "original development"
good work man nice another great addition to the gs3
Works as advertised, thanks for this!
Sent from my SPH-L710 using Tapatalk 2
thanx but
Not sure why do you need to mount /system as writable in init.d script. Does that mean regular init.d scripts won't work?
bravomail said:
Not sure why do you need to mount /system as writable in init.d script. Does that mean regular init.d scripts won't work?
Click to expand...
Click to collapse
I do in all my scripts guess Its habit lol. But Its not necessary for most scripts
Sent from my SAMSUNG-SGH-I747 using xda premium
smokin1337 said:
I do in all my scripts guess Its habit lol. But Its not necessary for most scripts
Sent from my SAMSUNG-SGH-I747 using xda premium
Click to expand...
Click to collapse
Then pls fix it if it is not too much trouble. I know publishing is kinda pain.
Mounting system as writable is a no-no.
bravomail said:
Then pls fix it if it is not too much trouble. I know publishing is kinda pain.
Mounting system as writable is a no-no.
Click to expand...
Click to collapse
I'm not trying to be a wise ass here but why is mounting system as writable a bad thing? Every device I've had never gave me a problem when I did it actually makes a few things easier when your in a pinch.
Is it because of Odin?
Sent from my HTC VLE_U using xda premium
Can we see some proof or evidence from users that this does indeed give significantly better battery usage when idling without impacting performance?
smokin1337 said:
This will enable the loading of scripts in /system/etc/init.d without editing the boot.img.
This will work for ALL dual core S3 variants.
There are two versions, one with my ondemand profile and one without. The one that has CPUProfile has it, this is a script that runs at boot setting the ondemand options to favor battery without sacrificing performance. Most user saw a GREAT increase in battery life especially when idle. See the link in my sig to use the full cpu editor. (works on the S3 with this mod)
To add init.d manually to your own rom just open /system/etc/init.qcom.post_boot.sh and add this line to the end of the file:
Code:
/system/etc/init.d/*
This mod also installs busybox which enables alot of tools native to busybox see here for busybox usage.
To install flash in recovery.
Download:
Add init.d ONLY:
EZ_Init.d ONLY
Add init.d and CPUProfile Script:
EZ_Init.d AND CPUProfile
Click to expand...
Click to collapse
Do you flash this in stock recovery or cwm?
Worked at flash... Does this conflict with the CPU disabler script?
Sent from my SPH-L710 using xda premium
---------- Post added at 12:15 PM ---------- Previous post was at 12:08 PM ----------
bgs_piece said:
Do you flash this in stock recovery or cwm?
Click to expand...
Click to collapse
CWM for me...I also added the ramscript to the folder http://forum.xda-developers.com/showthread.php?t=1111145...along with the CPU disabler script too...
---------- Post added at 12:27 PM ---------- Previous post was at 12:15 PM ----------
smokin1337 said:
This will enable the loading of scripts in /system/etc/init.d without editing the boot.img.
This will work for ALL dual core S3 variants.
There are two versions, one with my ondemand profile and one without. The one that has CPUProfile has it, this is a script that runs at boot setting the ondemand options to favor battery without sacrificing performance. Most user saw a GREAT increase in battery life especially when idle. See the link in my sig to use the full cpu editor. (works on the S3 with this mod)
To add init.d manually to your own rom just open /system/etc/init.qcom.post_boot.sh and add this line to the end of the file:
Code:
/system/etc/init.d/*
This mod also installs busybox which enables alot of tools native to busybox see here for busybox usage.
To install flash in recovery.
Download:
Add init.d ONLY:
EZ_Init.d ONLY
Add init.d and CPUProfile Script:
EZ_Init.d AND CPUProfile
Click to expand...
Click to collapse
smokin OP and Dev of this mod.
I copied the CPU Sleeper script (Eugene373) http://forum.xda-developers.com/showthread.php?t=1745517 and the Ram Manager script (Juwe11) http://forum.xda-developers.com/showthread.php?t=1745517 into the flashable you made...can I share it if I give you props?:fingers-crossed:
I flashed this in CWM and found the init.d folder with scripts installed.
When I opened the 99test script, I noted that a test file with "done" should have been created in data/local/tmp. I could not find this file anywhere.
Am I looking in the wrong place or am I correct in assuming that init.d functionality is not working?
Pj
Phoenix, AZ
This may be a noob question, but I didn't see it in the OP. How do I uninstall this??
the links are dead is there another place i can download this file
Bump
Sent from my SGH-I747 using Tapatalk 2
mvaughn12 said:
the links are dead is there another place i can download this file
Click to expand...
Click to collapse
+1
Sent from my SGH-T999 using xda app-developers app
jjlean said:
+1
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
Here is a working link
http://sourceforge.net/projects/xquizit/files/T999/Apps/init.d Support.zip/download
Sent from my SGH-T999 using Tapatalk 2
Wildchld said:
Here is a working link
http://sourceforge.net/projects/xquizit/files/T999/Apps/init.d Support.zip/download
Sent from my SGH-T999 using Tapatalk 2
Click to expand...
Click to collapse
Install fails?????
bradld said:
Install fails?????
Click to expand...
Click to collapse
No he fixed it. Installs fine. You can Odex after running it.
Sent from my SGH-T999 using xda app-developers app
is this still working on stock JB?
cuz I can't get my scripts to work.

[Q] Trying to enable init.d tweaks = Fail.. Help me?

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

/etc/init.d support in AK Purity kernel?

I'm using the AK Purity kernel 0.30 along with Andorid 4.2.2 stock. I've notice a file named 99zipalign in /system/etc/init.d/ so I've supposed that this kernel supports init.d. I've placed a custom file 00akkern in that folder, for setting the kernel governor at boot time:
Code:
#!/system/bin/sh
# ==============================================================
# CPU settings
# ==============================================================
echo interactivex > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor;
echo 350000 > /sys/devices/system/cpu/cpu0/cpufreq/screen_off_max_freq;
These commands work fine in terminal. Then I've fixed permissions:
Code:
chmod 755 00akkern
But it's not working!
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
Still getting interactive, that's the default.
Thanks :fingers-crossed:
Why not just use Trickster MOD?
lost_ said:
Why not just use Trickster MOD?
Click to expand...
Click to collapse
I want to learn how this stuff works and because I don't need an app just to tweak two settings...
No one?
supporting init.d scripts or not isn't the kernel thing... it's the ROM thing.
if you are using stock rom (probably the factory image I guess...), you should get rooted your phone and install busybox on rom
after that init.d scripts will work fine
R: /etc/init.d support in AK Purity kernel?
dozingblack said:
supporting init.d scripts or not isn't the kernel thing... it's the ROM thing.
if you are using stock rom (probably the factory image I guess...), you should get rooted your phone and install busybox on rom
after that init.d scripts will work fine
Click to expand...
Click to collapse
Thank you very much! I've asked a question in the AK thread about support for init.d and no one has mentioned the fact that's it's a ROM feature. Yes, I'm stock. Which busybox should I install? Should I configure it for enabling init.d support?
Inviato dal mio Galaxy Nexus con Tapatalk 2
Gremo said:
Which busybox should I install? Should I configure it for enabling init.d support?
Click to expand...
Click to collapse
I'm not remembering precise name of it... maybe Stericson's Busybox in Play Store. Download it and install busybox at /system/xbin folder.
And after that if your device's permission of /system/etc/init.d and scripts file inside of it has set right(755, check it via root explorer or other file explorers that can have root access), one rebooting of nexus will make the scripts start to work
[sorry for my awful english i know mine is quite bad... but i'm learning and practicing it!]
dozingblack said:
I'm not remembering precise name of it... maybe Stericson's Busybox in Play Store. Download it and install busybox at /system/xbin folder.
And after that if your device's permission of /system/etc/init.d and scripts file inside of it has set right(755, check it via root explorer or other file explorers that can have root access), one rebooting of nexus will make the scripts start to work
[sorry for my awful english i know mine is quite bad... but i'm learning and practicing it!]
Click to expand...
Click to collapse
I've ended up installing busybox lmanually (busybox --install -s /system/xbin). Busybox commands works fine, but my init.d script still doesn't work! Any idea?
Permissions of /system/etc:
Code:
drwxr-xr-x root root 2013-03-09 22:14 init.d
Inside /system/etc/init.d:
Code:
-rwxr-xr-x root shell 1425 2008-08-01 14:00 99zipalign
-rwxr-xr-x root shell 317 2013-03-09 16:47 99akkernel
init.d is fully working into kernel.
Have you launch script with scriptmanager before put into init.d folder?
Do you have any errors?
anarkia1976 said:
init.d is fully working into kernel.
Have you launch script with scriptmanager before put into init.d folder?
Do you have any errors?
Click to expand...
Click to collapse
Thank you for helping anarkia! You were right: there was a problem with the file (line endings). I've edited it using vi and now the governor part works. The only think that does not work is setting the screen_off_max_freq.
When i boot i get interactivex and 700000 (wrong). After manually executing sh 99akkernel i get the correct values: interactivex and 350000
Is there any restriction about screen_off_max_freq that I don't know?
You can try to add "sleep x" command before screen off.

[MOD][5/10/13] Add init.d support to your ROOTED S4

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!

Android .sh Scripting Help!

Hey Guys!
Im making a script and its called Lagg Nullififer (Click Me)
Its pretty cool and it speeds up android, but i want to make a temporary mode and a permanent mode (init.d) so i want the .sh script to make files on SDCard/Lagg_Nullifier (or any other folder) and i want the files to have the text in them!
EG:
.sh script makes file in sdcard then copys to system/etc/init.d
Please, Please, Please help as i cant find how to do this ANYWHERE!, Thankz in Advance!
Please write what you really want - just make and copy files is easy, but i think, that it isnt all u want...
Nuck-TH said:
Please write what you really want - just make and copy files is easy, but i think, that it isnt all u want...
Click to expand...
Click to collapse
Its what i really want to do,
I want the .sh script to make a file on the sdcard with information on it, then i want the .sh script to copy it to system/etc/init.d
Why not just make script create file directly in init.d?
Ok, I dunno how to, and how to make that script in init.d have text
Sent from my R800i using xda app-developers app
Pizza_Dox said:
Ok, I dunno how to, and how to make that script in init.d have text
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
what about making a flashable zip that contains the script? it will extract directly to init.d
Sent from my Xperia Arc S using xda premium
---------- Post added at 08:43 PM ---------- Previous post was at 08:36 PM ----------
Pizza_Dox said:
Ok, I dunno how to, and how to make that script in init.d have text
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
do you have any experience with unix scripting at all? I can help you
Sent from my Xperia Arc S using xda premium
Pizza_Dox said:
Hey Guys!
Im making a script and its called Lagg Nullififer (Click Me)
Its pretty cool and it speeds up android, but i want to make a temporary mode and a permanent mode (init.d) so i want the .sh script to make files on SDCard/Lagg_Nullifier (or any other folder) and i want the files to have the text in them!
EG:
.sh script makes file in sdcard then copys to system/etc/init.d
Please, Please, Please help as i cant find how to do this ANYWHERE!, Thankz in Advance!
Click to expand...
Click to collapse
I'm really confused as to what you want to do, but if I understand correctly, U want to make it temporary so if users reboots the script doesn't stick but if the user wants it to stick it will create a init.d rite??
And ye i would also ask have u any experience in scripting because this is pretty/verry easy
So basically for it to be temporary you just want to run the script, if u want it to stick after reboot you must place it in init.d folder or for lupus Kernels you could also place it in boot.d, dependinfg on wether u want it to run on BOOT or INIT.
wedgess said:
I'm really confused as to what you want to do, but if I understand correctly, U want to make it temporary so if users reboots the script doesn't stick but if the user wants it to stick it will create a init.d rite??
And ye i would also ask have u any experience in scripting because this is pretty/verry easy
So basically for it to be temporary you just want to run the script, if u want it to stick after reboot you must place it in init.d folder or for lupus Kernels you could also place it in boot.d, dependinfg on wether u want it to run on BOOT or INIT.
Click to expand...
Click to collapse
exactly
Sent from my Xperia Arc S using xda premium
I dont want to make a flashable zip, i want it to be like superchrager to make the files in init.d, , Heres what im trying to do for my mod, Thing is its really good, Honestly, Go try it out, If u dont like it just reboot
Here:
http://forum.xda-developers.com/showthread.php?t=2319774
Im trying to get 2 options to come up and say install in init.d or testdrive, testdrive will inject tweaks for current sesion and when u reboot they go away, and init.d will keep those tweaks and things,
Also if u want u can Be my partner in Lagg Nullifier,
wedgess said:
I'm really confused as to what you want to do, but if I understand correctly, U want to make it temporary so if users reboots the script doesn't stick but if the user wants it to stick it will create a init.d rite??
And ye i would also ask have u any experience in scripting because this is pretty/verry easy
So basically for it to be temporary you just want to run the script, if u want it to stick after reboot you must place it in init.d folder or for lupus Kernels you could also place it in boot.d, dependinfg on wether u want it to run on BOOT or INIT.
Click to expand...
Click to collapse
Yes thanks, someone understands,, lol, Yes, thing is i dident Learn, i just read alot of scripts and tested out a TONNE of different things and values i wanted to use in my script which is HERE
And its universal accros all devices so some might not have boot.d but init.d most of them will have, And thats what i want
I want to have 2 options and have one to make init.d files and one for temp (Temporary method is working fine now, )
Pizza_Dox said:
Yes thanks, someone understands,, lol, Yes, thing is i dident Learn, i just read alot of scripts and tested out a TONNE of different things and values i wanted to use in my script which is HERE
And its universal accros all devices so some might not have boot.d but init.d most of them will have, And thats what i want
I want to have 2 options and have one to make init.d files and one for temp (Temporary method is working fine now, )
Click to expand...
Click to collapse
I checked your script a while ago, and it needs a lot of improvements, you should add user privilege check to the script, and add a line to mount system with read/write permission. And also you should make the script a bit more aggressive and give the user some choices to pick. Unfortunately I don't have much time to do it myself, but I'll try to.
Anyway to make the script create another script in init.d with text in it it's really simple, here's an example:
echo #put your first command here# > system/etc/init.d/99LagNullifier
echo #put your second command here# >> system/etc/init.d/99LagNullifier
">" overwrites any old text in the file
">>" adds to the existing file
Sent from my Xperia Arc S using xda premium
Pizza_Dox said:
Yes thanks, someone understands,, lol, Yes, thing is i dident Learn, i just read alot of scripts and tested out a TONNE of different things and values i wanted to use in my script which is HERE
And its universal accros all devices so some might not have boot.d but init.d most of them will have, And thats what i want
I want to have 2 options and have one to make init.d files and one for temp (Temporary method is working fine now, )
Click to expand...
Click to collapse
Oh OK and not being smart but do u know wat each line of your script does. Because I have seen many users creating scripts and although the desired effect works there are parts which are not needed or the creator does not have a clue what they do. They just cram in awhole load of things which look or sound good. IM NOT SAYING THIS IS YOU.
I'm not at a PC rite now so can't look at your script. But seen as u don't want to make it a flashable zip, I would suggest something that maybe u could run via script manager or terminal like lupus menu. With a couple if options like set on every boot. Or run until reboot and say a check to make sure other init.D's do not conflict with yours. Just some suggestions.
Lol @Themike_10452 the below will probably confuse the hell out of him
inspire yourself with this code
clear ##clear the screen
echo ""
##check for root privilege
id=`id`; id=`echo ${id#*=}`; id=`echo ${id%%\(*}`; id=`echo ${id%% *}`
if [ "$id" = "0" ] || [ "$id" = "root" ]; then
echo "Root permission: Yes"
else
echo "Root permission: No"
echo ""
echo Please run the script with SU permission
sleep 3
exit 69
fi
if [ ! "`which busybox`" ]; then ##check for busybox
echo "Busybox found: No!"
sleep 3
exit 70
else
echo "Busybox found: Yes"
fi
echo ""
busybox mount -o remount,rw /system ## mounts system as r/w
#
#
#your actions here#
#
#
line=====================
m1k3="=== Themike10452 ==="
echo $line
echo $m1k3
echo $line
echo ""
echo Done!
echo ""
echo -n "Reboot now? (Y,N)"
read input ##read user input and store it in "input" variable
case $input in
y|Y) echo "" ##if answer is "y" or "Y" then ...
echo Your phone will now reboot
sleep 2
echo ""
echo ========== POOF! =========
sleep 1
reboot ;;
*) echo "" ##any other answer then ...
echo "So reboot manually later "
sleep 2
exit ;;
esac
Sent from my Xperia Arc S using xda premium
Omg, THANKZ alot!, , only problem is I'm not on PC, so I'll continue stuff latter
Sent from my R800i using xda app-developers app
Pizza_Dox said:
Omg, THANKZ alot!, , only problem is I'm not on PC, so I'll continue stuff latter
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
alright hit thanks at least
Sent from my Xperia Arc S using xda premium
---------- Post added at 10:37 PM ---------- Previous post was at 10:30 PM ----------
wedgess said:
Lol @Themike_10452 the below will probably confuse the hell out of him
Click to expand...
Click to collapse
I'll try to clarify things as much as I can this is Unix after all
Sent from my Xperia Arc S using xda premium
I can't, got to 8 today, will do tmrw, and again thanks alot and I'll check out the code, I like the input part but the reboot and etc... I mostly knew about,
@wedgess, it diddent really confuse me, , lol
Sent from my R800i using xda app-developers app
Pizza_Dox said:
I can't, got to 8 today, will do tmrw, and again thanks alot and I'll check out the code, I like the input part but the reboot and etc... I mostly knew about,
@wedgess, it diddent really confuse me, , lol
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
benefit from it as much as you can, I added some colors to make it look clearer
Sent from my Xperia Arc S using xda premium
Themike_10452 said:
I'll try to clarify things as much as I can this is Unix after all
Sent from my Xperia Arc S using xda premium
Click to expand...
Click to collapse
Oh u came back and edited it much easier for him now
Pizza_Dox said:
I can't, got to 8 today, will do tmrw, and again thanks alot and I'll check out the code, I like the input part but the reboot and etc... I mostly knew about,
@wedgess, it diddent really confuse me, , lol
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
Good but I would still however look up some bash so u know exactly what's going on and how to fix it if u run into problems.
Ok I looked through your script quickly there... as mike said there is still alot of work to do. this is not ment as destructive criticism but constructive, to help you make it better, which i'm sure is what you want.
It can be cleaned up quite a bit. It looks like you took alot of other peoples scripts/tweaks and put them together with a lot of sleeps, which certainly will not be good... unless u run them in the background. Because device wont boot for a long time with them all, I think there is 3/4mins where script pauses. It will be fine in boot.d as it wont affect boot time but in init.d seems like a NO NO. also thigs like
Code:
/system/xbin/echo 1 > /proc/sys/vm/oom_kill_allocating_task
can simply be
Code:
echo 1 > /proc/sys/vm/oom_kill_allocating_task
or even better, I think its a good idea to create a variable for busybox say BB. I noticed on LuPuS script at the start certain commands would not work unless I had busybox before each command. I run my kernels busybox from /sbin, So would be
Code:
BB=/sbin/busybox
-- this way
Code:
$BB echo 1 > /proc/sys/vm/oom_kill_allocating_task
As I also mentioned u should place a check so your script will make sure any scripts already in init.d will not conflict. And if they do give the user option to overwrite or keep their current script or back it up.
edit - Crap u said u wanted it to be universal. So maybe better to check for busybox.
Code:
if [ -e /sbin/busybox ]; then
BB=/sbin/busybox
elif [ -e /system/xbin/busybox ]; then
BB=/system/xbin/busybox
elif [ -e /system/bin/busybox ]; then
BB=/system/bin/busybox
else
echo "No busybox found!"
fi
Thanks alot, for all the help guys! I'll get on working and just to clarify I took the base commands from Lenarox, Juwe11 & many others, tested them & modified alot to find the best combo and I added some of my Own Tweaks!,
Also with the whole sleeps thing I already know that it's not Good In init.d and so o was making it to
Just inject all commands
Also in the script their were alot of sleeps because this way it gives each tweak to settle in
Sent from my R800i using xda app-developers app
Ok I tried testing this:
(Thanks mike)
Code:
case $input in
y|Y) echo "Would You Like to Reboot Now?"
echo "Your phone will now reboot"
sleep 2
echo ""
echo "========== POOF! ========="
sleep 1
reboot ;;
*) echo "If You Dident Reboot Then..."
echo "Reboot Manually!"
sleep 2
exit ;;
esac
And it dosent work in smanager... Need some help with it,

Categories

Resources