Jump to content

CyanogenMod 6 port for Pulse


Recommended Posts

Guest AntonioPT
Posted
Thanks, but .adb remount. answers "no device found".

(But .fastboot -reboot. and .fastboot -flash... works for example)

I tried it again with recovery-install cm0.40 and the same result..Bootloop.

Is it really a memory problem?

Sorry, I forgot, I think you have to run "adb devices" (if you're on Linux (and maybe Mac OSX?) run it with sudo) before running adb remount.

Guest AntonioPT
Posted
to all who need full version of Vignette App (Camera App )

Download:

Vignette.20.1.apk (v2010.11-20.1) - 128.79 KB

Warez is not allowed in these forums. If you (or anyone else) want Vignette, just pay the freakin' 3€.

You'll get updates for life, and you'll be supporting the developers.

Guest DanWilson
Posted
Sorry, I forgot, I think you have to run "adb devices" (if you're on Linux (and maybe Mac OSX?) run it with sudo) before running adb remount.

No sudo is needed for Mac.

Unless it's for fastboot. In which case I set up the su command for my Mac to run on terminal run.

It's good.

Posted (edited)
i dont have that option in my build.prop do i just add it?

does the sf stand for the zte blade? do we have another option or the same?

thanks

sf = surfaceflinger. It is the component of Android that draws the UI.

Here is the code that handles the debug.sf.hw option.

	// debug: disable h/w rendering

	char property[PROPERTY_VALUE_MAX];

	if (property_get("debug.sf.hw", property, NULL) > 0) {

		if (atoi(property) == 0) {

			LOGW("H/W composition disabled");

			attribs[2] = EGL_CONFIG_CAVEAT;

			attribs[3] = EGL_SLOW_CONFIG;

		}

	}

If I'm reading that correctly setting it to 0 should disabled H/W composition, but if it is not set it should be enabled.

Edited by Tom G
Guest flip360
Posted (edited)

Thanks Tom ;)

Edited by flip360
Guest totiadrenalin
Posted (edited)
i dont have that option in my build.prop do i just add it?

does the sf stand for the zte blade? do we have another option or the same?

thanks

I found the reason why this rom doesn't reconnect on sleep on wifi.

duplicated

wifi.supplicant_scan_interval=15

and other upper =180

delete the =180 ones and you will get reconnect on wifi after sleep working just fine.

Edited by totiadrenalin
Posted (edited)

I've been busy with getting the latest release ready and getting the code ready to merge into the main project and totally forgot about the improved arabic support for the browser I mentioned earlier (sorry Ahmed).

arabic-browser-signed.zip

Before

1.png

After

2.png

It uses libs taken from a Dream/Saphire rom (I can't remember which rom). There is no source available for this, so if it breaks with future CM releases I might not be able to fix it.

Tested and working in my 0.3 & 0.4 releases.

PS. I can't read arabic, so by working I mean it looks right to me. It could be totally wrong.

Edited by Tom G
Guest ahmeds2000x
Posted

thanks Tom your the best I'v been looking for this since i got my pulse ;) :P :P

Guest ahmeds2000x
Posted
PS. I can't ready arabic, so by working I mean it looks right to me. It could be totally wrong.

it look like it should be i can even tell the english translate if you want ;)

Posted
I found the reason why this rom doesn't reconnect on sleep on wifi.

duplicated

wifi.supplicant_scan_interval=15

and other upper =180

delete the =180 ones and you will get reconnect on wifi after sleep working just fine.

I don't know why I have that set twice but it will probably be the cause of the problem. Higher is better in terms of battery, but means it will take longer to find an AP. If it is set low wifi will always be searching which will use a lot of battery. 180 is obviusly too long as it will be up to 3 minutes before it finds the AP. It looks like the Huawei roms use 30 seconds, is that ok or is it worth the battery hit to use 15 (I wouldn't go any lower).

Guest agitate
Posted
sf = surfaceflinger. It is the component of Android that draws the UI.

Here is the code that handles the debug.sf.hw option.

	// debug: disable h/w rendering

	char property[PROPERTY_VALUE_MAX];

	if (property_get("debug.sf.hw", property, NULL) > 0) {

		if (atoi(property) == 0) {

			LOGW("H/W composition disabled");

			attribs[2] = EGL_CONFIG_CAVEAT;

			attribs[3] = EGL_SLOW_CONFIG;

		}

	}

If I'm reading that correctly setting it to 0 should disabled H/W composition, but if it is not set it should be enabled.

property_get() returns the strlen() of the value. If the value isn't set, then the strlen of the default value (third parameter) is returned. In this case the default parameter is NULL, and strlen(NULL) is 0. I think that would result in the code inside the first IF block not being executed if no value is set in the config (although I may be wrong).

Guest totiadrenalin
Posted (edited)
I don't know why I have that set twice but it will probably be the cause of the problem. Higher is better in terms of battery, but means it will take longer to find an AP. If it is set low wifi will always be searching which will use a lot of battery. 180 is obviusly too long as it will be up to 3 minutes before it finds the AP. It looks like the Huawei roms use 30 seconds, is that ok or is it worth the battery hit to use 15 (I wouldn't go any lower).

Tom.You have to try this:gralloc.msm7k.so

and this:

libGLES_qcom.so

I found them on the xda-developers forum.

I just try them.I did get a bit improvements in quadrant (482) with, 445 without them

and in Neocore 27.0 fps with, 24.5 fps without them.

I don't know whats new there, but it's really improve the graphics, acording to the tests.

EDIT:

Oh!

I forgot to mention that I was using the OC kernel to 691MHZ

Also jit enabled

And dalvik heapsize=32m

in both tests.

--------------------------------------------------------------------------------------------------------------------------------------------------------

I just check the flbmod rom build.prop

and:

wifi.supplicant_scan_interval=30

Best regards

TOTI

Edited by totiadrenalin
Posted
Tom.You have to try this:gralloc.msm7k.so

and this:

libGLES_qcom.so

I found them on the xda-developers forum.

I just try them.I did get a bit improvements in quadrant (482) from 445 without them

and in Neocore 27.0 from 24.5 without them.

I don't know whats new there, but it's really improve the graphics, acording to the tests.

Best regards

TOTI

Is there any change in FPS in quadrant. I get 20FPS in the planet rotation test.

Guest totiadrenalin
Posted (edited)
Is there any change in FPS in quadrant. I get 20FPS in the planet rotation test.

1.st 13 fps

the planet rotation 22-23 fps

and the spiral 8-9 fps

In Quadrant

Edited by totiadrenalin
Posted
1.st 13 fps

the planet rotation 22-23 fps

and the spiral 8-9 fps

In Quadrant

Cool. How to install them?

Guest totiadrenalin
Posted (edited)
Cool. How to install them?

Push them via adb

gralloc.msm7k.so to /system/lib/hw/

and libGLES_qcom.so to /system/lib/egl/

I don't see some BigBang here, but at least it is moving forward.

Edited by totiadrenalin
Posted
Push them via adb

gralloc.msm7k.so to /system/lib/hw/

and libGLES_qcom.so to /system/lib/egl/

I don't see some BigBang here, but at least it is moving forward.

Gonna give them a test now. Thx.

Posted

Hm. Both links point to libGLES_qcom.so.11.26.10.ZIP.zip

Guest totiadrenalin
Posted
Got the same score in quadrant 440. Maybe you are getting higher scores cause of the OC. I wonder if the GPU is used in CM at all.

I don't know if the OC CPU is that important, but Any time I make the tests i get even higher scores.

28.0FPS in Neocore now.

Posted

In this topic, on post #53 by ogiogi... apear a new rom of huaweidevice for huawei u8220

Any Idea?

"New rom on huawei site dated 2010-12-03

U8220-6 V100R001C00B282"

Guest Nova910
Posted

Sorry if the question is stupid, but is there a way to add a hungarian language pack to the rom?

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.