[ROM] CyanogenMod-5 - Would you like a pony? (EXPERIMENTAL) [05/12 - v5.0.7-test4]

Status
Not open for further replies.
Search This thread

cb7tuner93

Senior Member
Jun 4, 2009
358
2
Y.O Baby
Pretty much yeah, it was the first thing I saw on my Touiteur widget when I woke up this morning.

Not stopping devel at all, but I'd rather keep it to the CM forums and IRC for now. XDA is such a huge audience that it's difficult to keep up especially for not-quite-stable stuff. I'll repost when it's a little closer.

CY you are the reason XDA is still alive after JesusFreke and Haykuro quit because of IDIOTS like the one previously mentioned hey you gitta do what you gotta do, However take to mind the comments from teenage punks do not reflect OUR own I'll keep following you at "the usual place" Thank you for my NEW daily driver.
 

All~G1

Senior Member
Jan 9, 2009
826
14
@RixKliq: love that avatar! lol

@ all the ungrateful n00bs:
When you're done reading all the threads in the link maybe you'll understand why Devs happen to leave or drop development. Till then STFU!!!
VVVVVV Read the link and the sig. VVVVVVV
 

carnegie0107

Senior Member
Jul 26, 2009
403
6
Springytown
Pretty much yeah, it was the first thing I saw on my Touiteur widget when I woke up this morning.

Not stopping devel at all, but I'd rather keep it to the CM forums and IRC for now. XDA is such a huge audience that it's difficult to keep up especially for not-quite-stable stuff. I'll repost when it's a little closer.

I've seen so many brilliant devs give up because of the ungrateful whiners here. Guys, please don't drive Cyan away, too. He's a saint to keep it up this long, even after the notorious C&D and countless stupid bug posts because people kill system apps with task killers. I don't use my Dream for anything but testing anymore, but I'd like to express my appreciation for all he's given us. So much of what we've done here on XDA wouldn't have happened without our own Cyanogen. Thanks!
 

mahd-leb

Senior Member
Dec 23, 2007
241
0
Germantown,MD
Pretty much yeah, it was the first thing I saw on my Touiteur widget when I woke up this morning.

Not stopping devel at all, but I'd rather keep it to the CM forums and IRC for now. XDA is such a huge audience that it's difficult to keep up especially for not-quite-stable stuff. I'll repost when it's a little closer.

dont pay attention to that mooran, the rom is great i had sms issues too but i dint complain if i dint like it i can switch to another rom and fix my sms issues, your doing a great job love the rom keep it up,

mastered your rom with a 46 mb of free ram :p blazen fast bro
 

Coderedpl

Senior Member
I trie to replicate the sms issue of not receiving texts but no dice, it doesnt seem like there is any specific app affecting it, just a random thing.

At first I thought its google maps navigation or something being turned on but no. They dont show up with delete old thread checked or unchecked.

No idea, but on the other phone the message shows as sent. It seems as if the rom automaticaly disperses it.
 

Thitho007

Member
Aug 4, 2009
8
4
actually, I'm writing a script to auto logcat on boot
but I've messed something up , and I'm frozen :)

literally only just done this now, first boot with it
I have a simple userinit.d script
Code:
#!/system/bin/sh
#start log at boot in bg
/system/bin/sh /data/Logatboot.sh &
^^^ I don't think that put it in the background :confused:
edit3: meh, for some reason busybox gets zombied, if I kill the logwrapper for the userinit.d run-parts, it continues
edit4: doh! yeah it will zombie, I stick it in the bg and it can't exit !!, so.. 99complete doesn't run.... hehe so simple
init service will not have this problem, but I'll do some nasty workaround to make it easy to "slot in"

99complete
Code:
#!/system/bin/sh

sync;
setprop cm.filesystem.ready 1;
chmod 700 /data/Logatboot.sh
exec /data/Logatboot.sh
edit5: ^^ not so nasty,
I'll depersonalise the log, and move this off to its own thread

/data/Logatboot.sh
Code:
#!/system/bin/sh
bootlog=/data/bootlogcat.txt

if [ -e $bootlog ];
then
	rm $bootlog
fi
logcat -f $bootlog *:V &

# wait until bootanimation starts
while [ "`getprop init.svc.bootanim`" != "running" ];do
	sleep 5
done

# wait until bootanimation stops
while [ "`getprop init.svc.bootanim`" != "stopped" ];do
	sleep 5
done

kill `busybox ps w|grep $bootlog|grep -v grep|cut -d ' ' -f2`

so. each boot a new log is made, so now we only need to teach people how to get /data/bootlogcat.txt to us ;)

starting the script as an init service would be ideal
If I can't get it to fork off to the background I will mod the init.rc

Edit:

kill `busybox ps w|grep $bootlog|grep -v grep|sed -e s/\ \ \/\ /g -e s/\ \ /\ /g|cut -d ' ' -f2`

is better ( get all spacing to 1 )
Edit2 :
need to build in a cleanup routine
privacy issues ( email, location etc )

Hello Firerat !

First, Sorry for my bad english...

But you can use this :
kill `busybox ps w|awk '$0 ~ /bootlogcat.txt/ && $0 !~ /grep/ {print $1}'`

instead of :
Code:
kill `busybox ps w|grep $bootlog|grep -v grep|sed -e s/\ \ \/\ /g -e s/\ \ /\ /g|cut -d ' ' -f2`

It's more clean.

And use this :
Code:
nohup "/system/bin/logcat -f $bootlog -v tag *:V >/dev/null" &

instead of :
logcat -f $bootlog *:V &

Hope this Help you :)
 
Last edited:

donepate

Senior Member
Oct 30, 2007
224
1
What did the shepard say to the noob who did not read or even try to learn any damn thing at all and complained all day because he flashed a beta rom and his girlfriend got mad because he didn't call her when he was suppose to?
 
Jul 18, 2009
22
0
Albuquerque
WIPING??

Hey, this may been noob question but i was just wondering is it really necessary to do a wipe when upgrading from say 5.0.7 test 3 to 5.0.7 test 4 or from t4 to future versions
or could i just not wipe my ext partition so i dont have to go and install my apps everytime i upgrade
 

Firerat

Senior Member
Feb 24, 2009
3,848
185
Hello Firerat !

First, Sorry for my bad english...

But you can use this :
kill `busybox ps w|awk '$0 ~ /bootlogcat/ && $0 !~ /grep/ {print $1}'`

instead of :
kill `busybox ps w|grep $bootlog|grep -v grep|sed -e s/\ \ \/\ /g -e s/\ \ /\ /g|cut -d ' ' -f2`

It's more clean.

And use this :
nohup /system/bin/logcat -f /data/bootlogcat.txt -v tag *:V >/dev/null &

instead of :
/system/bin/sh /data/Logatboot.sh &

Hope this Help you :)

thanks :)
I really should learn awk
 

zimphishmonger

Senior Member
Jun 4, 2009
3,890
729
Pretty much yeah, it was the first thing I saw on my Touiteur widget when I woke up this morning.

Not stopping devel at all, but I'd rather keep it to the CM forums and IRC for now. XDA is such a huge audience that it's difficult to keep up especially for not-quite-stable stuff. I'll repost when it's a little closer.

Guess I'm done w/ XDA and moving to Cyan's Forums and IRC. Please dont be a douch, unless your on #teamdouche :cool:
 

worldestroyer

Senior Member
Oct 26, 2008
60
5
Boston
I'm still not receiving all text messages on test4. I did a complete wipe, ext3/data/cache. I flashed it all from scratch and re-loaded the gapps. And i'm still not receiving all text messages, according to my phone bill and to google voice. Not sure what to do really? : /
 

Daneshm90

Retired Recognized Developer
Jun 1, 2009
3,332
662
I'm still not receiving all text messages on test4. I did a complete wipe, ext3/data/cache. I flashed it all from scratch and re-loaded the gapps. And i'm still not receiving all text messages, according to my phone bill and to google voice. Not sure what to do really? : /

Read the title of the rom, switch to one that doesnt have the word EXPERIMENTAL in it, and then see if you receive ur sms ???
 

Koopa210

Senior Member
Dec 30, 2009
193
19
San Antonio, TX
I'm still not receiving all text messages on test4. I did a complete wipe, ext3/data/cache. I flashed it all from scratch and re-loaded the gapps. And i'm still not receiving all text messages, according to my phone bill and to google voice. Not sure what to do really? : /

You should probably switch to a stable rom if it's that big of an issue. Have you not been reading anything that's been going on?
 
Status
Not open for further replies.

Top Liked Posts

  • There are no posts matching your filters.
  • 3
    can someone please explain to me what compcatch is or whatever it is.. please explain it to me and xplain to me how it can be used and pro's and cons to me

    How layman can you get?

    Very roughly you have a finite amount of memory (RAM). When memory is accessed it is virtual addressing, so an application is given a piece of memory, but this isn't real RAM, the operating system manages this and maps it to where the data really is. Because of this system, the OS can give out more memory than is actually available. It can then store some of this memory on a storage medium and "swap" it with some other programmes memory when one is needed and the other isn't. This is how swap works.

    With compcache, instead of storing the dormant memory on a hard disk it is compressed and stored in the RAM itself on a virtual disk. This takes up some RAM, but because it is compressed then more RAM is spare than if the data were left in memory as it is. Again this has the effect that more memory space can be handed out than the RAM that is really there.

    Because Android manages applications so that when memory runs out it just closes applications running in the background, more applications can reside in the larger virtual memory space than before, making multi-tasking more pleasant and responsive.

    In other words you get more RAM since everything is compressed, that is the pro and the con is that something it might take longer for the phone to decompress and manage the data instead of simply reading it (bypassing decompression) ha ha i hope that helps :D
    2
    Mods, please close this.
    2
    Can you post up exactly how you did it?


    Copy libhtc_ril.so to your SDcard - then:

    adb remount
    adb push /sdcard/libhtc_ril.so /system/lib
    adb shell reboot

    if you need the file download here-
    http://www.dejong-frencken.com/www/storage/CM/
    2
    The 2.1 update will come with new Sense UI. If you are confused between MyTouch 3G and 3G Slide, then let me clear, the original MyTouch 3G will receive the same version of Sense UI and it will include the Genius button feature. Now that’s something I call hot news. I still feel bad for G1 users being left out. So MyTouch folks, are you happy now?

    won't take much to get it to fit the G1
    look at my Slide port
    I only removed swype and quickoffice ;)

    Anyway, OT tbh :)
    1
    Root Explorer

    Root explorer seems to not be functional