Crond is a service that allows you to schedule starting applications/scripts etc.
Announcement
Collapse
No announcement yet.
Announcement
Collapse
No announcement yet.
crond init.d and CPU script
Collapse
X
-
crond init.d and CPU script
I been working on a crond/init.d like installer for about a week and a cpu script so we dont have to run a set cpu type application....going to be doing a lot of testing before posting...tweaking frequency now....so far so good....im able to hit 1.6 more often....so far i have only come up with running my cpu script and doing a daily reboot @ 4am.....anyone have any advice or suggestions....
Crond is a service that allows you to schedule starting applications/scripts etc.Prahjister ****MK808(nonB)****MK808B V5****MK808B Plus****UBOX R89**** CX919****MK808B Pro****Nexbox N9****Eny Em95****Matricon Q2****Tanix TX5 Pro****Tags: None
-
#!/system/bin/sh
# Create symbolic link
mount -o remount,rw rootfs /
ln -s /system/bin/ /bin
mount -o remount,rw /system
# Setting up files. /data/cron/ is your crond file. Look at crontest file to make sure working.
mkdir /data/cron
echo "root:x:0:0::/data/cron:/system/bin/bash" > /system/etc/passwd
echo '* * * * * echo "New line" >> /data/cron/crontest' > /data/cron/root
touch /system/etc/group
touch /system/etc/shadow
#Setting up cron to start every reboot
echo "#!/system/bin/sh" >> /system/etc/install-recovery.sh
echo "mount -o remount,rw rootfs /" >> /system/etc/install-recovery.sh
echo "ln -s /system/bin/ /bin" >> /system/etc/install-recovery.sh
echo "mount -o remount,rw /system" >> /system/etc/install-recovery.sh
echo "sleep 15s" >> /system/etc/install-recovery.sh
echo "busybox crond -c /data/cron" >> /system/etc/install-recovery.sh
echo "#*************Place scripts to start after boot below**************" >> /system/etc/install-recovery.sh
echo "sh /data/cron/cpu" >> /system/etc/install-recovery.sh
#Building cpu script
echo "#!/system/bin/sh" >> /data/cron/cpu
echo 'echo "interactive" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor' >> /data/cron/cpu
echo 'echo "interactive" > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor' >> /data/cron/cpu
echo 'echo "1608000" > /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq' >> /data/cron/cpu
# Setting perminssions
chmod 755 /system/etc/install-recovery.sh
chmod 755 /data/cron/cpu
#starting crond & cpu script
busybox crond -c /data/cron
sh /data/cron/cpuPrahjister ****MK808(nonB)****MK808B V5****MK808B Plus****UBOX R89**** CX919****MK808B Pro****Nexbox N9****Eny Em95****Matricon Q2****Tanix TX5 Pro****
-
PLEASE READ WHOLE POST
Posted above is the script..copy and paste to a file. then open terminal emulator and go to directory then sh xxx.
This creates several files...2 that are important are /system/etc/install-recovery.sh and /data/cron/root.
install-recovery will act like your init.d....any commands in it will be ran at boot
root is your crond file.. you can schedule commands and scripts to run....times are UTC....so when setting up offset appropriatly. There is a sample crond job that runs every minute and puts a new line in /data/cron/crontest file....this is just to prove that it is working....Remove this or you will eventually fill up your space if you dont.
I was trying to do a reboot @ 4am every day but doesnt seem to work. It should look like
0 4 * * * reboot
Edit Put a "0 0 * * * /system/bin/date >> /data/cron/date" in the root file and let it run for 24 hours. Then look at time in the date file to figure out adjustment.
One caveat is that when you go into recovery and reboot it is going to say something about intalling recovery.....hit no or it will break all of this....if you happen to hit yes...run a chmod 755 on your install-recovery.sh file
Finally this installs a script called cpu that runs every reboot...it sets cpu to interactive and highspeed frequency to 1608000...What this does basically is give your cpu 2 running states slow and wide open....gives the benefit of performance and get 1.6ghz but when you are not using go to low power state. You can addjust to suite your needs or set another govenor...I dont have to run set cpu now. Check the folders out there are several files that can be set...
I also had an issue with my webcam that i had to reset everytime i rebooted...so i put that in my install-recovery file...bam another program i can uninstall.Last edited by prahjister; 30 March 2014, 17:49.Prahjister ****MK808(nonB)****MK808B V5****MK808B Plus****UBOX R89**** CX919****MK808B Pro****Nexbox N9****Eny Em95****Matricon Q2****Tanix TX5 Pro****
Comment
-
Originally posted by phinc View PostNice work man! Does the governor change on boot work? I once tried to to in with init.d but i counldn't get it to work (but i am a noob at sh scripts).
Prahjister ****MK808(nonB)****MK808B V5****MK808B Plus****UBOX R89**** CX919****MK808B Pro****Nexbox N9****Eny Em95****Matricon Q2****Tanix TX5 Pro****
Comment
-
Re: crond init.d and CPU script
Thanks, good work!
leolas
sent from my phone.REMEMBER, YOUR FEEDBACK IS VERY IMPORTANT TO US.My devices:
Minix Neo X7; Minix Neo X8-H , Minix Neo Z64W & Z64 (Sponsored by Minix)
MK902 & MK902II(Sponsored by RKM)
Beelink M8B & Beelink R89 (Sponsored by Beelink)
Tronsmart VEGA S89H (Sponsored by Gearbest.com)
MELE-PCG03 (Sponsored by Gearbest.com) Discount Coupon:MPCG03
Ainol Intel Z3735 MiniPC(Sponsored by Gearbest.com)
Thanks to them I can try to support your devices http://freaktab.com/core/images/smilies/wink.png
Comment
-
awesome! good work!There are 10 types of people in the world: Those who understand binary, and those who don't...
If you want to buy me a beer, please use this -> https://www.paypalobjects.com/en_US/..._donate_SM.gif
Comment
What's Going On
Collapse
There are currently 2384 users online. 3 members and 2381 guests.
Most users ever online was 63,956 at 18:56 on 20 March 2025.
Comment