[Q] Porting Sensation Roms? - HTC EVO 3D

I was wondering, since there aren't as many roms for the gsm 3vo as I would like, and since the Sensation is very similar to our phone expect the camera, would it be possible to port a sensation rom to the gsm evo 3d? Or even better would it work out of the box(except camera of course) by only flashing an evo kernel?

vipirius said:
I was wondering, since there aren't as many roms for the gsm 3vo as I would like, and since the Sensation is very similar to our phone expect the camera, would it be possible to port a sensation rom to the gsm evo 3d? Or even better would it work out of the box(except camera of course) by only flashing an evo kernel?
Click to expand...
Click to collapse
I wanna know too...
bump.

vipirius said:
I was wondering, since there aren't as many roms for the gsm 3vo as I would like, and since the Sensation is very similar to our phone expect the camera, would it be possible to port a sensation rom to the gsm evo 3d? Or even better would it work out of the box(except camera of course) by only flashing an evo kernel?
Click to expand...
Click to collapse
HMZX said:
I wanna know too...
bump.
Click to expand...
Click to collapse
I think you can definitely test w/o causing permanent damage. For the smoothest test experience, you'll want to be familar with a custom recovery and the backup/restore modes available along with the type of internal memory unlock used on the device (Revolutionary or HTC official method).
Once you're familar with the basics, it would be fairly simple to test. The combinations for testing, off the top of my head, would be:
1) Sensation kernel and EVO 3D ROM.
2) Sensation kernel and Sensation ROM.
3) EVO 3D kernel and Sensation ROM.
Speaking from experience, once you're familar with how to load kernels and ROMs, the process is fairly generic across devices once write access to the internal memory is obtained.
Again, I'll re-iterate the importance of making a proper backup and being familar with the restoration process.
There are only two main hazards which come to mind:
1) Make sure NOT to flash the radio, bootloader, or any other file. ONLY flash kernel/system partitions.
2) Before flashing kernel/system partitions ensure the partition sizes between devices are the same, or EVO 3D is larger. Not sure the device limits and stops partitions from overwriting each other as I know some older devices did not and this caused an unrecoverable damage.
I'm sure if I missed anything, somebody else will post up. Hope that helps provide some technical background and logic to the approach! Keep us updated!

Thanks for the reply. I'm already familiar with flashing kernels/roms and how to make a nandroid backup etc so that isn't a problem. However I have 1 question, how exactly would I find the partition sizes of the sensation, I couldn't find it on the internet and I don't have a sensation that I can check.
Anyways I found a few posts on the forums of people claiming sensation roms work almost flawlessly except for the camera, so the next question would be if there are any apk's/libs etc. I can copy to the sensation rom to get the camera working. I'm no dev myself so I don't have a clue, but if someone could tell me I would appreciate it. Thanks.

Well you can't just flash a sensation ROM out of the box. You would at least need to change the mount points in the updater script otherwise you will get nothing. Regarding the camera, there are libs in /system/lib like liboemcamera.so and such. Not sure fixing the camera would be as simple as copying libs over from our phone though.
Sent from my PG86100 using Tapatalk
EDIT: Well I took a sense 3.6 ICS rom from the sensation forums, changed the mount points, and replaced the boot.img with ours. It boots to the bootanimation and then reboots by itself. So it is possible I may look at it more tonight.
EDIT 2: I just saw you were talking about the gsm 3d, I did this on the CDMA. The process would be the exact same though.

Yeah I have a GSM phone so that's why I said GSM. Also wouldn't porting to the GSM version be easier then to the CDMA version since the sensation is also GSM?
Anyways I'm kinda busy today but I will try to see if it boots on my phone tomorrow and post my results. I'll.also try to get the camera to work by copying libs like you suggested.
Sent from my HTC EVO 3D X515m using XDA App

vipirius said:
Thanks for the reply. However I have 1 question, how exactly would I find the partition sizes of the sensation, I couldn't find it on the internet and I don't have a sensation that I can check.
Anyways I found a few posts on the forums of people claiming sensation roms work almost flawlessly except for the camera, so the next question would be if there are any apk's/libs etc. I can copy to the sensation rom to get the camera working. I'm no dev myself so I don't have a clue, but if someone could tell me I would appreciate it. Thanks.
Click to expand...
Click to collapse
Answer to first question: partition sizes are generally mentioned in a handful of different locations depending on the device: /proc/partition(s), /proc/emmc or /proc/mtd off the top of my head. Since the devices are similar and others have already tried this approach, probably not a concern, but none the less never hurts to learn more!
Answer to second question: the cameras (2 of them for 3D) on this device, along with the 3D display are the two biggest difficulties in porting AOSP such as CM to this device, in my opinion. they use closed source proprietary code from HTC. this requires a bit of reverse engineering and kanging from other random sources in order to get a final working product. personally, i wouldnt invest the time/effort into it, but others might find it a beneficial endeavor for themselves. either way, you're guaranteed to learn a bit about cameras! as stated above, all android libraries are loaded in /system/lib.
For the camera, I view android as having essentially three components contributing to a fully functional camera.
1) Camera drivers in the kernel
2) Camera libraries in /system/lib
3) Camera application apk file for Android UI
These three need to work together to at least some degree in order for there to be some functionality in the camera.
Gumby63 said:
EDIT: Well I took a sense 3.6 ICS rom from the sensation forums, changed the mount points, and replaced the boot.img with ours. It boots to the bootanimation and then reboots by itself. So it is possible I may look at it more tonight.
Click to expand...
Click to collapse
Might be more off topic but could related also to this OP depending on his approach. If you encounter the boot animation this is generally a good sign the kernel has fully loaded and is handing off to the ramdisk/init process.
There are two possible situations at this point
1) If the boot animation loops, i.e. starts over and over, this shows there is an issue with Android/ramdisk init process. Adb has generally been loaded by this point and the issue should be outlined in logcat showing the specific .apk file along with line number which makes for a great starting point in troubleshooting.
2) If the boot animation starts/completes but the device completely reboots back to the splash screen, this is more difficult to troubleshoot. I'm not aware of a great approach to this but I might start by glancing at the /proc/last_kmsg file along with executing adb logcat as soon as I see the boot animation in an attempt to grab the logcat before the device reboots itself.
Good luck and keep us updated!

joeykrim said:
Might be more off topic but could related also to this OP depending on his approach. If you encounter the boot animation this is generally a good sign the kernel has fully loaded and is handing off to the ramdisk/init process.
There are two possible situations at this point
1) If the boot animation loops, i.e. starts over and over, this shows there is an issue with Android/ramdisk init process. Adb has generally been loaded by this point and the issue should be outlined in logcat showing the specific .apk file along with line number which makes for a great starting point in troubleshooting.
2) If the boot animation starts/completes but the device completely reboots back to the splash screen, this is more difficult to troubleshoot. I'm not aware of a great approach to this but I might start by glancing at the /proc/last_kmsg file along with executing adb logcat as soon as I see the boot animation in an attempt to grab the logcat before the device reboots itself.
Good luck and keep us updated!
Click to expand...
Click to collapse
Well yeah it completely reboots back to the splash screen. During the bootanimation, I can't get a logcat and adb says there is no device connected. This isn't my first port but I've never had this happen lol. I'll look into what you said.
Sent from my HTC Flyer P510e using Tapatalk

Well, I successfully installed Android Revoltion HD 3.6.13, It boots, everything seems to work, however I didn't test GPS and BT yet. And the camera is well, half working I guess. The camera app opens, and i can see the controls etc but no image comes, and when I press the capture button the flash pops but the app FC's after that. I'm gonna try flashing [MOD] Camera from HTC Amaze 4G, v0.11 and see if it works. If it doesn't I'll copy over all the camera related libs I can find from my old ROM and see if it works then.
Edit: Hahahaha yessss it works I just flashed the Amaze camera app and now camera works only 2D of course but it's enough for me. I'll keep testing for a few days and of there aren't any serious bugs I can find I'll be using this as my daily driver from now on
Edit2:Audio doesn't seem to work If I can't get that fixed then this ROM will be useless :/

vipirius said:
Edit2:Audio doesn't seem to work If I can't get that fixed then this ROM will be useless :/
Click to expand...
Click to collapse
then move over the proper sound drivers also located in /system/lib, /system/lib/modules and /system/lib/soundfx

t3project said:
then move over the proper sound drivers also located in /system/lib, /system/lib/modules and /system/lib/soundfx
Click to expand...
Click to collapse
Yeah that's what I was going to do, but thanks anyways. I'll report back on my success.

Gumby63 said:
Well you can't just flash a sensation ROM out of the box. You would at least need to change the mount points in the updater script otherwise you will get nothing. Regarding the camera, there are libs in /system/lib like liboemcamera.so and such. Not sure fixing the camera would be as simple as copying libs over from our phone though.
Sent from my PG86100 using Tapatalk
EDIT: Well I took a sense 3.6 ICS rom from the sensation forums, changed the mount points, and replaced the boot.img with ours. It boots to the bootanimation and then reboots by itself. So it is possible I may look at it more tonight.
EDIT 2: I just saw you were talking about the gsm 3d, I did this on the CDMA. The process would be the exact same though.
Click to expand...
Click to collapse
When you say Replaced the Boot.img, How'd you do that? Was it done with a ROM kitchen? Reason I'm asking because I read something saying that a Complete Rom Port could be achieved just with Apps on our phones... Using something like Root Explorer and whatever else (Can't Remember?) But I was wondering is that True?
And as for Extracting the Kernel can that Also be done Without the use of a Computer? In other words straight from a phone?
Thanx in Advance guys!!

PMGRANDS said:
When you say Replaced the Boot.img, How'd you do that? Was it done with a ROM kitchen? Reason I'm asking because I read something saying that a Complete Rom Port could be achieved just with Apps on our phones... Using something like Root Explorer and whatever else (Can't Remember?) But I was wondering is that True?
And as for Extracting the Kernel can that Also be done Without the use of a Computer? In other words straight from a phone?
Thanx in Advance guys!!
Click to expand...
Click to collapse
im not sure what you read but IT WAS WRONG..........
while you can do some of this stuff from your phone, you can not do a complete port properly without a computer

PMGRANDS said:
When you say Replaced the Boot.img, How'd you do that? Was it done with a ROM kitchen? Reason I'm asking because I read something saying that a Complete Rom Port could be achieved just with Apps on our phones... Using something like Root Explorer and whatever else (Can't Remember?) But I was wondering is that True?
And as for Extracting the Kernel can that Also be done Without the use of a Computer? In other words straight from a phone?
Thanx in Advance guys!!
Click to expand...
Click to collapse
Yeah like t3project said, that is wrong.
But anyhow, I replaced the boot.img simply by opening the two ROMs with winrar and then deleting and replacing it. And to extract the kernel, you would need to split the boot.img either using a kitchen or some other tools that do the job.
A little update on my port: I still haven't gotten it to fully boot, it just keeps restarting

Gumby63 said:
A little update on my port: I still haven't gotten it to fully boot, it just keeps restarting
Click to expand...
Click to collapse
Aren't you on the CDMA EVO? If you are wouldn't the radios be completely different since the sensation is a GSM device? So maybe that's what's causing the reboot issues. I mean as far as I know even porting from the CDMA EVO to the GSM EVO is hard so wouldn't porting from the sensation to the CDMA EVO be even harder?

vipirius said:
Aren't you on the CDMA EVO? If you are wouldn't the radios be completely different since the sensation is a GSM device? So maybe that's what's causing the reboot issues. I mean as far as I know even porting from the CDMA EVO to the GSM EVO is hard so wouldn't porting from the sensation to the CDMA EVO be even harder?
Click to expand...
Click to collapse
this is only patrialy the problem. flashing roms doesnt affect the radio so that wouldnt change but i there are some other libs that need to be moved that are associated with communication to the radio. cant remember which off the top of my head

Gumby63 said:
Yeah like t3project said, that is wrong.
But anyhow, I replaced the boot.img simply by opening the two ROMs with winrar and then deleting and replacing it. And to extract the kernel, you would need to split the boot.img either using a kitchen or some other tools that do the job.
A little update on my port: I still haven't gotten it to fully boot, it just keeps restarting
Click to expand...
Click to collapse
Yeah I thought the article I read was Bull****! I wish I could remember where I read it to show you guys what it said but just can't remember for ****... Lol!
Well Thanks for Confirming guys...

Related

Excellent progess on CyanogenMod

Great success!
Atleast partly, I haven't actually flashed anything. So far I've played around a bit with Goro_kn's (sp?) splboot.ko and it appears to be working just fine. So does softbooting boot.img from the modded cyanogen build.
After that I kinda wussed out, I'd rather wait and see if anyone manages to flash the boot.img and get that working before I go any further.
But great work, seeing fastboot working totally MMD.
ddewbofh said:
Great success!
Atleast partly, I haven't actually flashed anything. So far I've played around a bit with Goro_kn's (sp?) splboot.ko and it appears to be working just fine. So does softbooting boot.img from the modded cyanogen build.
After that I kinda wussed out, I'd rather wait and see if anyone manages to flash the boot.img and get that working before I go any further.
But great work, seeing fastboot working totally MMD.
Click to expand...
Click to collapse
How did you do it? The boot.img comes up as an incorrect size for me.
HunteronX said:
How did you do it? The boot.img comes up as an incorrect size for me.
Click to expand...
Click to collapse
Yeah, it looks like I got a little ahead of myself. I tried the classic "fastboot boot boot.img" and it appeared to be uploading the image but it just hung there.
And poking around my old memory banks I remembered the old syntax. Booting with "fastboot boot kernel ramdisk_recovery.img" yields the same result.
It's been way too long since I last messed around with fastboot.
ddewbofh said:
And poking around my old memory banks I remembered the old syntax. Booting with "fastboot boot kernel ramdisk_recovery.img" yields the same result.
It's been way too long since I last messed around with fastboot.
Click to expand...
Click to collapse
Did you manage to boot into CyanogenMod at all, using goroh_kun's method?
I know what you mean about fastboot though... I have used it for ages, since I gave my T-Mobile Pulse to my little brother.
HunteronX said:
Did you manage to boot into CyanogenMod at all, using goroh_kun's method?
Click to expand...
Click to collapse
Not yet, but I'll keep trying.
ddewbofh said:
Not yet, but I'll keep trying.
Click to expand...
Click to collapse
What could we do to solve this?
I think it involves some more editing of the custom SPL (which I don't have a clue how to do ) and/or checking, then rebuilding the boot.img to make it the correct size for fastboot...
HunteronX said:
What could we do to solve this?
I think it involves some more editing of the custom SPL (which I don't have a clue how to do ) and/or checking, then rebuilding the boot.img to make it the correct size for fastboot...
Click to expand...
Click to collapse
I'm thinking I should hold off on trying a little more seeing how the real devs are obviously booting this. I'm guessing I'm just missing something somewhere and it's a nightmare to navigate the threads here.
ddewbofh said:
I'm thinking I should hold off on trying a little more seeing how the real devs are obviously booting this. I'm guessing I'm just missing something somewhere and it's a nightmare to navigate the threads here.
Click to expand...
Click to collapse
That's what I think too...
Also, thanks for the info, ddewbofh.
This is excellent news.
Just to double check CM6 = Android 2.2?
sorry ... but anyone can explain in plain english ? can we flash CM ? on x10 ?
No
10chars.
AndyD777 said:
Just to double check CM6 = Android 2.2?
Click to expand...
Click to collapse
Yes it is.
instigator008 said:
Yes it is.
Click to expand...
Click to collapse
In a Mr Burns style voice "Excellllleeeennnt"
AndyD777 said:
In a Mr Burns style voice "Excellllleeeennnt"
Click to expand...
Click to collapse
Eeeeeegsalad
Hold your horses guys....well be quite a while before we have a fully useful 2.2 cm6 as in addition to the bootloader they also have to get drivers working for x10 hardware. What good is cm6 if the camera, wireless and calling doesn't work?
Give them time to nut it all out.
MeZmeriZe_ said:
Hold your horses guys....well be quite a while before we have a fully useful 2.2 cm6 as in addition to the bootloader they also have to get drivers working for x10 hardware. What good is cm6 if the camera, wireless and calling doesn't work?
Give them time to nut it all out.
Click to expand...
Click to collapse
Naturally, but it's still nice progress. And the fact that the X10 shares large portions of it's platform with the HTC Desire is bound to help. Since both have use Snapdragon they share the same GPS, cellular modem, audio, network, cpu, graphics etc. Looking at the spec sheets from Qualcomm they're essentially the same device but with different shells, cameras and screens since the Snapdragon kit does everything.
cannot wait to get the benchmark result of Xperia X10 running Android 2+. I'm hoping X10 can get somewhere around Nexus One benchmark.
I have never thought about that, if they do have the same components, the drivers should be the same for each shared component?
Haha its kind of funny how the only differentiating factor is screen, shell, and camera!
Most likely they don't have the same hardware.
Sound, camera, display are 100% different.
RF chip might be different too and in this case drivers are needed for wifi, gps, bluetooth, 3g.
The best part, the drivers are most likely available in the kernel sources released by SE and they only have to be ported to the newer kernel.
Sometime changes in the code is needed, some time only copy the driver from a tree to the other is enough.

New to LG

I'm about to be coming over to the LG Optimus T world here in the next few days. I'm coming from a T-Mobile myTouch 3G 1.2 (the one with the headphone jack). I've been messing with rooting for about 8 months now and have put up two guides in the myTouch section of these forums as well as provide daily help. I've already got rooting and installing a custom recovery on this phone down by reading through the forum and will surely get flash happy with the ROM's over the next few weeks. My question is this: is there anything else I need to know? Such as, are there different radio/bootloader versions for these devices? The myTouch has around 12 different bootloader/radio combinations. Is this the only recovery available? I may have to see if I can get a guy from the myTouch forums to theme it out a little. Either rate. If there's nothing else that I need to know to do, is there anything that should never be done with this phone?
I think Clockwork works, but I haven't tried it yet. I'm afraid of bricking my phone, so I just stick to the recovery you linked to.
Miscellaneous stuff:
- "axis inversion" issues with the touchscreen
- touch screen cpu spike, but already fixed by mik_os (from 100% cpu usage to somewhere less than 30%)
- random sdcard unmounts: haven't had this issue in a long time. this used to be very much talked about a few weeks back.
- there's already a working gingerbread rom (cm7 port) but the gps and camera doesn't work yet. also, ui is a bit slow.
I'll update this when I realize I have forgotten something
is there anything that should never be done with this phone?
Click to expand...
Click to collapse
The only thing I know of is drellisdee's warning of not flashing a radio.img from the recovery
I don't care much for ClockWorkMod so I'll just stick to the one linked. That one is built off of Among Ra's source code ands I'm currently running a themed version of it right now. The SD card issue is going to be annoying but hopefully I won't run into it much.
Sent from my T-Mobile myTouch 3G using Tapatalk
DonJuan692006 said:
I don't care much for ClockWorkMod so I'll just stick to the one linked. That one is built off of Among Ra's source code ands I'm currently running a themed version of it right now. The SD card issue is going to be annoying but hopefully I won't run into it much.
Sent from my T-Mobile myTouch 3G using Tapatalk
Click to expand...
Click to collapse
ClockworkROm has been ported to P500 i have installed it but haven't created any backups or flashed some ROMS

[Q] - What files in the /system folder are related to the touch screen?

What files in the /system folder are related to the touch screen?
I am working on some porting but lost touchscreen functions. I haven't touched the kernel so I know I didn't loose functionality there. Any help or educated guessed?
Thanks
-Scott
Anyone................?
Is it a Motorola ROM by any chance? I remember something similar happening when porting the Droid X ROM to the Evo 4G. You may want to compare the RAM disks from both kernels to see if you can find anything there that needs adjusted for the framework
xHausx said:
Is it a Motorola ROM by any chance? I remember something similar happening when porting the Droid X ROM to the Evo 4G. You may want to compare the RAM disks from both kernels to see if you can find anything there that needs adjusted for the framework
Click to expand...
Click to collapse
Gotcha, I am trying to port Nexus S 4G to Evo 3D.
But I will look at your suggestion tonight. It seems most things work when I use r emote control app but the touchscreen and buttons are not responsive at all. Power and volume down are.

Camera from HTCAmaze(from Evo3d GSM forums)

Not sure if this should be posted here, but considering it needs some development, and it is in the GSM dev forums, I figured it should go here.
Anyway, a couple of days ago I installed V2 and it worked pretty good, but had a few force closes. At that time there was .apk's to install. Now theyre up to V4, and its a flashable zip that doesnt appear to work on our devices. When flashed through recovery, the flash fails at the Model_id check. Not sure if someone here can fix this so its flashable on our phones? seems like a pretty cool camera.
Check it out
http://forum.xda-developers.com/showthread.php?t=1302943
vinscuzzy said:
Not sure if this should be posted here, but considering it needs some development, and it is in the GSM dev forums, I figured it should go here.
Anyway, a couple of days ago I installed V2 and it worked pretty good, but had a few force closes. At that time there was .apk's to install. Now theyre up to V4, and its a flashable zip that doesnt appear to work on our devices. When flashed through recovery, the flash fails at the Model_id check. Not sure if someone here can fix this? seems like a pretty cool camera.
Check it out
http://forum.xda-developers.com/showthread.php?t=1302943
Click to expand...
Click to collapse
Here, try this. I swapped out the model with our version of the Evo3D. I haven't flashed it, but you can test.
Note: Standard disclaimer. I take no responsibility, blah blah blah...
Edit: Updated script
I got pretty much everything working
Sent from my PC36100 using XDA App
sac23 said:
I got pretty much everything working
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Great. Do you have a link?
smw6180 said:
Here, try this. I swapped out the model with our version of the Evo3D. I haven't flashed it, but you can test.
Note: Standard disclaimer. I take no responsibility, blah blah blah...
Click to expand...
Click to collapse
Thanks for fixing! I tried flashing your modified version, it flashed fine,but unfortunately it wiped my device and didnt install the new camera. Also broke the lock screen. No biggie, I got a nandroid backup, so all good! Hopefully sac23 will put up the version he tweaked....
vinscuzzy said:
Thanks for fixing! I tried flashing your modified version, it flashed fine,but unfortunately it wiped my device and didnt install the new camera. Also broke the lock screen. No biggie, I got a nandroid backup, so all good! Hopefully sac23 will put up the version he tweaked....
Click to expand...
Click to collapse
That's what I get for not reading it all the way through, sorry about that. It was supposed to format cache, but the block devices are different so it formatted system. I'll update it and take that one down.
Edit: Fixed, it won't nuke your system now. Not sure if those libs that are included are going to work or not. YMMV.
smw6180 said:
That's what I get for not reading it all the way through, sorry about that. It was supposed to format cache, but the block devices are different so it formatted system. I'll update it and take that one down.
Edit: Fixed, it won't nuke your system now. Not sure if those libs that are included are going to work or not. YMMV.
Click to expand...
Click to collapse
No need to apologize! New version worked great! Well at least I think it did. Not sure about those libs either, guess we'll see!
vinscuzzy said:
No need to apologize! New version worked great! Well at least I think it did. Not sure about those libs either, guess we'll see!
Click to expand...
Click to collapse
My guess is those libs are compiled against the kernel for the GSM version and won't work. But...then again they might. Good luck, sir!
So the only thing that doesn't seem to be working is 3d pics. It takes the picture, but then immediately crashes to the desktop. Along with the issues already posted in the GSM section. So far those libs dont seem to be causing any issues. But then again its 5am, haven't really had a chance to really use anything but the camera.
vinscuzzy said:
So the only thing that doesn't seem to be working is 3d pics. It takes the picture, but then immediately crashes to the desktop. Along with the issues already posted in the GSM section. So far those libs dont seem to be causing any issues. But then again its 5am, haven't really had a chance to really use anything but the camera.
Click to expand...
Click to collapse
It probably has no idea how to use the 2nd camera and gets confuzzled.
smw6180 said:
It probably has no idea how to use the 2nd camera and gets confuzzled.
Click to expand...
Click to collapse
I think the amaze is a 3d camera. You can actually preview the 3d perfectly. Just when you take a pic, it freezes for a few secs and then crashes.
vinscuzzy said:
I think the amaze is a 3d camera. You can actually preview the 3d perfectly. Just when you take a pic, it freezes for a few secs and then crashes.
Click to expand...
Click to collapse
Gotcha. Haven't even seen that phone yet.
Sent from my PG86100 using Tapatalk
Can anyone report on shutter lag? Only thing I find unusable about the Evo 3D camera: shutter lag is at best (with fastest settings, preview off, etc.) 0.5 seconds.
Mike
mikeyxda said:
Can anyone report on shutter lag? Only thing I find unusable about the Evo 3D camera: shutter lag is at best (with fastest settings, preview off, etc.) 0.5 seconds.
Mike
Click to expand...
Click to collapse
From the GSM forum......it seems we need updated kernel with ZERO SHUTTER LAG driver included. So, if HTC doesn't give even kernel src for us we have only choice to wait for new STOCK kernel with ZSL driver.
ZSL means fast speed than galaxy s 2 camera?
Thats one thing I miss
Doesn't work for non rooted evo 3D phone.
Sent from my PG86100 using xda premium
Anybody try on a cdma 3d?
Via My HTC Evo 3D On The Now Network From Sprint.
Rydah805 said:
Anybody try on a cdma 3d?
Via My HTC Evo 3D On The Now Network From Sprint.
Click to expand...
Click to collapse
Yes, the. zip in the 2nd post flashes, and works pretty good, except the camera crashes when taking 3d pics. 2d works great.
Any way to use this without root? And can you install as a separate app? That would be cool.
boom!! from my shooter
Doesnt the MyTouch 4g slide use the same camera? that released right around the time of the E3D too. anyone know if that source got released?
I cant get hdr to work (it takes pic but no different than any other pic), burst wont select, and there were a couple others that didnt work. In 3d mode, in addition to crashing, it doesnt adjust the exposure and alignment is way off so i dont think the amaze has the 3d software programmed.

OverClock

http://forum.xda-developers.com/showthread.php?t=1158951
That can probably be done with this phone since it uses the same chipset as the E3D and Sensation. Once I get mine next tuesday/wednesday ill see what I can do about getting this module to work.
If anyone takes a look at it, post anything you have tried. This could in theory at the very least allow an undervolt which would help offset the LTE power sucking.
Yeah see I wwas talking about this earlier. I think this will work. I PMed viperboy who actually wrote one of the bloatware scripts when we had temproot. Just waiting for a response AMD hope to get a jump start on this. Good idea starting this thread tho
Sent from my ADR6425LVW using Tapatalk
reverepats said:
Yeah see I wwas talking about this earlier. I think this will work. I PMed viperboy who actually wrote one of the bloatware scripts when we had temproot. Just waiting for a response AMD hope to get a jump start on this. Good idea starting this thread tho
Sent from my ADR6425LVW using Tapatalk
Click to expand...
Click to collapse
Coming from the bravoc which has almost zero development aside from 2fast at his site I am used to just thinking of things to try. I was able to port a couple dinc roms to it even though I was told it couldn't be done. I hope to be much more involved with development here since there are already more posts in this section than there were in a year at the site dedicated to the bravoc
con247 said:
Coming from the bravoc which has almost zero development aside from 2fast at his site I am used to just thinking of things to try. I was able to port a couple dinc roms to it even though I was told it couldn't be done. I hope to be much more involved with development here since there are already more posts in this section than there were in a year at the site dedicated to the bravoc
Click to expand...
Click to collapse
Yeah I.hear ya. I.haven't gotten much Involved myself buy then again I'm no dev LOL. But I k.ow my way around a bit. But I think the dev section is gonna he hoppin as well.
Sent from my ADR6425LVW using Tapatalk
It took a few days to get that inc port almost bugfree (usb pc transfer wouldn't work) but it was otherwise fine iirc. I hope that with support and other work to use as examples i can make some stuff for this device that isn't either a variation of AOSP or a sense port that has some serious drawbacks.
I am personally more interested in the possibility of underclocking and undervolting than OCing. Or maybe OCing and undervolting like I did with my droid x - can really help save some battery and allow the phone to sip less juice. This phone is so new I am getting ahead of myself, but hopefully in time we can get root/roms/OCing and undervolting apps to work on the Rezound.
I normally run my battery on performance mode on all my phones. I set it to normal, and with the equivalent usage I get 1/3 better battery life. I even leave all my antenna's on(except WiFi when I am away).
Just to let everyone know what I tried. I took the file for "unsupported phones" from the link's thread and changed the version number to match the rezound, which is -- 2.6.35.13-g20c5d1d -- . As you can see it was not just the ending part starting with the 'g' that needed to be changed as ours is 2.6.35.13 and the file was made for 2.6.35.10. But since a reboot resets everything I tried it by changing only the part starting with 'g' and it failed saying "Exec format error". So I then changed the entire version string to match ours and adb actually completed the task but the phone rebooted immediately and everything was wiped out again.
I did this before the kernel source was put up on the forums but since I dont have ANY knowledge of messing with kernels I am no help there, but hopefully this can help someone get this mod going for the Rezound.
we don't have perma root like the 3vo did so I don't think this will work until then. But this was a band aid until the kernel source was released so this won't even be necessary anymore.
con247 said:
we don't have perma root like the 3vo did so I don't think this will work until then. But this was a band aid until the kernel source was released so this won't even be necessary anymore.
Click to expand...
Click to collapse
The guy who made Setcpu made a script that allowed oc on the stock kernel on the 3D. It was before perm root. It was right after agrabren found the first exploit and a reboot would return the phone to stock. You temp rooted ran the script from adb and used Setcpu to oc.. Some of the smoothest kernel action the 3D had.. I'm sure same thing is potentially there, just need someone smart enough to do..
Sent from my PG86100 using xda premium
send me a link. Ill take a look at the script.
pstevep said:
The guy who made Setcpu made a script that allowed oc on the stock kernel on the 3D. It was before perm root. It was right after agrabren found the first exploit and a reboot would return the phone to stock. You temp rooted ran the script from adb and used Setcpu to oc.. Some of the smoothest kernel action the 3D had.. I'm sure same thing is potentially there, just need someone smart enough to do..
Sent from my PG86100 using xda premium
Click to expand...
Click to collapse
Yeah I rememba that man. I was just talking about that the other day. I also mentioned that maybe we can use that somehow but I wouldn't know where TP start. But we need a stable Temp Root first I think. Not degrading anyone's work either.
Sent from my ADR6425LVW using Tapatalk
con247 said:
send me a link. Ill take a look at the script.
Click to expand...
Click to collapse
It will take me a little time to find. I don't think I have the script on sd anymore and the thread is buried deep. I shall go look.
Edit: ironically easier than I thought to find. Here is the thread from the 3D forum.
http://forum.xda-developers.com/showthread.php?t=1158951
And I know for a fact this worked and worked well. I used for a while, well up until we were s-off..
Sent from my PG86100 using xda premium
sooooooo set cpu works with root....i made a profile for screen off. seems to be working.....
combatmedic870 said:
sooooooo set cpu works with root....i made a profile for screen off. seems to be working.....
Click to expand...
Click to collapse
Cool. I did find a tidbit that might (don't get your hopes up and basically pretend I didn't even say this) make root last longer. Obviously until I have my rezound for the next few days I can't even think about testing anything.
Then put it out there for us to test! Don't be selfish! lol
AtLemacks said:
Then put it out there for us to test! Don't be selfish! lol
Click to expand...
Click to collapse
I will once I get around to writing it. I am in class right now then I am driving 5 hours home. So maybe tomorrow afternoon Ill get a script working. Also, I may have figured out a way to disable elements of sense in an automated script(for those that don't like sense).
con247 said:
It took a few days to get that inc port almost bugfree (usb pc transfer wouldn't work) but it was otherwise fine iirc. I hope that with support and other work to use as examples i can make some stuff for this device that isn't either a variation of AOSP or a sense port that has some serious drawbacks.
Click to expand...
Click to collapse
Since I happened to venture to theses parts since our buddy plat ventured to this. I am a bit surprised to see you switched. How ever the module you are talking about in the op I am pretty sure you can't just hex edit the kernel version. As the kernel will be different for the device compared to that of the evo 3d. If it is anything like doing the g2 version for the htc merge that is. Where it had to be recompiled to work correctly.
I am sure one of the dev's familiar in here with building source code could get it done up. If it works after that I am unsure. Though con you ported the sense hd rom from the inc to the desire. That was the only one that you had ported. Followed by you followed samuel2706's guide and other info he gave you. Then you came to me to ask how I fixed the mms and verizon branding in the rom. In which I told you how to fix it but you put it off as you fixed it. As you are putting off in here.

Categories

Resources