May i tested?
Announcement
Collapse
No announcement yet.
Announcement
Collapse
No announcement yet.
A new 1.4 ROM coming
Collapse
X
-
Any progres?
May i tested?if you love my work please buy a coffee
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">https://www.paypalobjects.com/en_GB/i/scr/pixel.gif
https://www.paypalobjects.com/en_US/..._donate_SM.gif
</form>
-
-
Originally posted by artural View Postif you love my work please buy a coffee
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">https://www.paypalobjects.com/en_GB/i/scr/pixel.gif
https://www.paypalobjects.com/en_US/..._donate_SM.gif
</form>
Comment
-
Originally posted by snakekiller View PostThis is for 10g2 right? Just for sure
No this ROm is for the GoCLever tablet. See the Arnova forum for 1.4 for the 10G2.
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Finless View Post
No this ROm is for the GoCLever tablet. See the Arnova forum for 1.4 for the 10G2.
Bob
Can you cook one for me please with these scripts?if you love my work please buy a coffee
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">https://www.paypalobjects.com/en_GB/i/scr/pixel.gif
https://www.paypalobjects.com/en_US/..._donate_SM.gif
</form>
Comment
-
You don't need to have these cooked in a ROM with these scripts. You are fully rooted if you installed my 10 G2 1.4 ROM. Just do what Arturial did and apply them since you are fully rooted!
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Artural, you still around?
Any idea how to make a script run on first boot but not run again after that?
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by petrus View Postjust an idea about it. That may be not unfeasible, but try simply rm the script itself at the end. Maybe the script cannot be deleted while executing.
I was unable to delete a script that was running using Terminal Emulator or sl4a....
BUT... I can delete a script that called a script!
Problem is battery.sh will always try to call a dead scripts every boot. It logs it in logcat and complains
So I tried this already.... It can work but filling logcat with errors is not a elegant way to do this.
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Finless View PostI tried that actually
I was unable to delete a script that was running using Terminal Emulator or sl4a....
BUT... I can delete a script that called a script!
Problem is battery.sh will always try to call a dead scripts every boot. It logs it in logcat and complains
So I tried this already.... It can work but filling logcat with errors is not a elegant way to do this.
Bob
if [ -e "the_srcipt_you_want_to_call.sh" ]; then
# call your script
fi
That will launch your script only if it exists
Comment
-
As I said Petrus... YOUR a scripting GENIUS!
I will try it.
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Finless View PostArtural, you still around?
Any idea how to make a script run on first boot but not run again after that?
Bob
If I good understand your problem - I'm not sure this
if [ -e "the_srcipt_you_want_to_call.sh" ]; then
# call your script
fi
Comment
-
Originally posted by artural View PostYes I'm still here but I have not much time (much work in my job),
If I good understand your problem - I'm not sure this
work good, becouse if You have more scripts in init.d you must check every script (if exist script A.sh then script B.sh then C.sh.....).
Comment
-
Sorry to revive this topic but I'd make a suggestion.
Why not use a for loop? Find all files in a directory and run.
I tried the following:
for n in $(ls /system/bin/); do echo $n; done
List all files in the directory. If no files does not cause any output, it does so only if there is no directory. On the other hand you could also set the execution priority preceding numbers to file names, as linux does.
Would be something like:
for n in $(ls /system/init.rd/); do exec $n; done.
I have not tried it, just right on my tablet to test the results and show files as expected, but can't be sure if file will be executed.
Thank you for your attention.
Greetings.
Edit: I have found that ls sort files "randomly", to sort by name we need "busybox ls <dir>".Last edited by absurd2; 08 April 2012, 15:52.
Comment
What's Going On
Collapse
There are currently 5100 users online. 1 members and 5099 guests.
Most users ever online was 37,478 at 04:14 on 26 June 2024.
Comment