(CLOSED)[DEVS NEEDED] A little help? - Samsung Epic 4G Touch

I decided to try my hand at making a rom, but honestly am not sure i know what I'm doing lol. I would like someone who does know to take a look at it (?) and maybe offer a pointer or two? I haven't done anything special to it, it's stock based, no real add ons except I attempted to add some tweaks (kobridges) and a recovery (which I also got from kobridges thread) I don't dare flash it without someone seeing if I didn't totally bork it lol.
Thanks
[EDIT: Posted in Dev section, decided to go with FI27 base and very minor mods]

I might be brave and test it on e4gt with cracked screen and broke no charge port
Sent from my SPH-D710 using xda premium

Stryke_the_Orc said:
I don't dare flash it without someone seeing if I didn't totally bork it lol.
Click to expand...
Click to collapse
Just stop there... if you don't dare flashing something that you have created, I don't think anyone else should risk their device for you. As long as you didn't make any major changes, it should be fine... but just seeing your lack of confidence, I would not flash it.
Sent from my SPH-D710 using xda premium

Mattix724 said:
Just stop there... if you don't dare flashing something that you have created, I don't think anyone else should risk their device for you. As long as you didn't make any major changes, it should be fine... but just seeing your lack of confidence, I would not flash it.
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
You misunderstood me, I don't want anyone else to flash it, just look at the build prop and tell me if I did everything right.
I'm in a 12 step program for Flashaholics, I relapsed...

The build.prop shouldn't really change if it's stock based. Maybe a few minor tweaks, but those shouldn't affect whether it boots or not.
Sent from my SPH-D710 using xda premium

Thank you, like I said I just needed someone to help me figure out if I made something workable :beer:
I'll flash it now and post results :thumbup:
I'm in a 12 step program for Flashaholics, I relapsed...

Sorry to be rude. If you have any questions feel free to ask, I'll help you out as best as I can.
Sent from my SPH-D710 using xda premium

Ok, and it opens package and aborts install, so I screwed something up. Any idea where to start? Sorry I really don't know much about this :banghead:
http://db.tt/YBzVjumw
Maybe the recovery is in the wrong place?

You don't need to do that. Just use a custom kernel like rujelus' which has a safe custom recovery and delete that file. You'll have to edit the updater script to do it though.
It'll be like this:
Code:
ui_print("Flashing Kernel");
format("ext4", "EMMC", "/dev/block/mmcblk0p5");
format("ext4", "EMMC", "/dev/block/mmcblk0p6");
package_extract_file("zImage", "/tmp/zImage");
write_raw_image("/tmp/zImage", "/dev/block/mmcblk0p5");
write_raw_image("/tmp/zImage", "/dev/block/mmcblk0p6");
delete("/tmp/zImage");
And then place the kernel zImage in the root of the zip.
Also, the aborted install is most likely from your updater script.
Sent from my SPH-D710 using Tapatalk
Click here for custom mods for your E4GT

sniper said:
You don't need to do that. Just use a custom kernel like rujelus' which has a safe custom recovery and delete that file. You'll have to edit the updater script to do it though.
It'll be like this:
Code:
ui_print("Flashing Kernel");
format("ext4", "EMMC", "/dev/block/mmcblk0p5");
format("ext4", "EMMC", "/dev/block/mmcblk0p6");
package_extract_file("zImage", "/tmp/zImage");
write_raw_image("/tmp/zImage", "/dev/block/mmcblk0p5");
write_raw_image("/tmp/zImage", "/dev/block/mmcblk0p6");
delete("/tmp/zImage");
And then place the kernel zImage in the root of the zip.
Also, the aborted install is most likely from your updater script.
Sent from my SPH-D710 using Tapatalk
Click here for custom mods for your E4GT
Click to expand...
Click to collapse
ok, I've modified the updater script and replaced the zimage, but still aborting the install.
Here's what I've got...
* EDITED TO BE EASY ON THE EYES *

Stryke_the_Orc said:
ok, I've modified the updater script and replaced the zimage, but still aborting the install.
Here's what I've got...
Click to expand...
Click to collapse
Please use code tags at least or pastebin is better for people looking on their phones
http://pastebin.com/W5UiTcea
See if that works. That will also allow you to take advantage of /data

Stryke_the_Orc said:
ok, I've modified the updater script and replaced the zimage, but still aborting the install.
Here's what I've got...
Booga booga booga
Click to expand...
Click to collapse
One word. http://pastebin.com
Sent from my Galaxy Nexus using xda app-developers app

Yay for turbo scroll?
(Sorry, I'll shut up now)
Sent from my SPH-D710 using Xparent SkyBlue Tapatalk 2

Sorry guys I'll remember to use the code wrapper or pastebin from now on.

One question are u using 7zip or winrar?
Sent from my Galaxy Nexus using Tapatalk 2

T.C.P said:
One question are u using 7zip or winrar?
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
7zip and notepad++ as I've seen in most of the tutorials
I'm in a 12 step program for Flashaholics, I relapsed...

Stryke_the_Orc said:
7zip and notepad++ as I've seen in most of the tutorials
I'm in a 12 step program for Flashaholics, I relapsed...
Click to expand...
Click to collapse
Ya that's what I use too. Did you try out that updater script I posted?
Sent from my SPH-D710 using Tapatalk
Click here for custom mods for your E4GT

Still aborting install.
I've used the updater script you posted Sniper reposted here http://pastebin.com/emwqqacs and I've made my build.prop here http://pastebin.com/H6Ci6F96
I've no idea whats causing the install to fail. Obviously I'm not a coder lol so this is all kind of alien to me.

Stryke_the_Orc said:
Still aborting install.
I've used the updater script you posted Sniper reposted here http://pastebin.com/emwqqacs and I've made my build.prop here http://pastebin.com/H6Ci6F96
I've no idea whats causing the install to fail. Obviously I'm not a coder lol so this is all kind of alien to me.
Click to expand...
Click to collapse
What's the error it gives when trying to flash it? Also the format of mmcblk0p5 and 6 are unneeded. And will probably break lots of things if you do by chance get them formatted because they have no filesystem.
Sent from my Galaxy Nexus using xda app-developers app

Originally Posted by Stryke_the_Orc<br />
Still aborting install.<br />
I've used the updater script you posted Sniper reposted here http://pastebin.com/emwqqacs and I've made my build.prop here http://pastebin.com/H6Ci6F96<br />
I've no idea whats causing the install to fail. Obviously I'm not a coder lol so this is all kind of alien to me.
Click to expand...
Click to collapse
<br />
<br />
What's the error it gives when trying to flash it? Also the format of mmcblk0p5 and 6 are unneeded. And will probably break lots of things if you do by chance get them formatted because they have no filesystem.<br />
<br />
Sent from my Galaxy Nexus using xda app-developers app
Click to expand...
Click to collapse
It just says installation aborted.
I'm in a 12 step program for Flashaholics, I relapsed...

Related

[MOD] dsexton702's Universal Shot XIX

A tweak thats amazing and beautiful made my phone more buttery smooth so now i have underclocked at 13800 instead of 15200 the whole time! Battery life is more excellent and amazing liquid transitions.
What do these tweaks do?
Greatly improve the smoothness of your phone especially with scrolling
increase your phones repsonsiveness
for some it increases FPS and allows better gaming
Improves the HTC's Evo 3d, 3d quality
improves better I/O performance
speed up start up time
handles multitasking better
improves ext4 partition mounts
improves better cpu performance
least importantly it improves quad scores
Do NOT tamper with the files inside or else you will brick! I have used it, works perfectly, and you must use the BL version and you need the official CWM. Not the one you used to root at first. you can find it in the dev section
Credits~ dsexton702 and the Samsung Galaxy S 4G community (for reporting bugs and what not)
Link: Universal Adrenaline Shot BL XIX
Sorry for putting it up as a link to the thread. i cant find the link for the download. ( YOU MUST DOWNLOAD/FLASH THE UNIVERSAL BL VERSIONS! )
im on EB rom with clockwork recovery. is it safe to flash?
reason i am asking is because i do not have an external SD card and i can't make backups.
EDIT: flash away
You must not read very well. These need a kernel that supports init.d to work correctly.
Sent from my SGH-T989 using XDA App
its been working for me so far.
mikeyinid said:
You must not read very well. These need a kernel that supports init.d to work correctly.
Sent from my SGH-T989 using XDA App
Click to expand...
Click to collapse
uhmm its safe. To make sure use the BL version not the Adrenaline or the Universal XIX use the universal BL XIX. the other ones wont work
CozzaFrenzyy said:
im on EB rom with clockwork recovery. is it safe to flash?
reason i am asking is because i do not have an external SD card and i can't make backups.
Click to expand...
Click to collapse
phreshjoker said:
its been working for me so far.
Click to expand...
Click to collapse
UNIVERSAL ADRENALINE SHOT
THIS WILL WORK ON ANY 2.1 OR HIGHER ANDROID DEVICE
[BAll versions are now compatible with supercharger script[/B]
REQUIREMENTS
kernel that supports init.d
IN CWM MOUNT /SYSTEM BEFORE FLASHING
it raised my fps + keeps it steady as opposed to fluctuating.
used this on the sgs4g worked great!
Lol
mikeyinid said:
UNIVERSAL ADRENALINE SHOT
THIS WILL WORK ON ANY 2.1 OR HIGHER ANDROID DEVICE
[BAll versions are now compatible with supercharger script[/B]
REQUIREMENTS
kernel that supports init.d
IN CWM MOUNT /SYSTEM BEFORE FLASHING
Click to expand...
Click to collapse
Sent from my SGH-T989
Flashed while running EB 1.0 with official CWR confirmed safe....
I have not noticed any difference thou...at all....a bit confused as to if this makes any difference for us sg2 users....
Wats this liquid transition stuff mentioned? That sounded pretty awesome
Ill get back with battery life information...
Sent from my SGH-T989 using XDA App
I'm running EB 1.0 and I DEF saw a difference in my cfbench score. Jumped by a thousand points. WTF?!! Awesome!
This is for modified kernel and your supposed to delete your init.d folder before flash. It works great on the gs4g. Not sure if it will even do anything for us YET. This is a great tweak and dsexton702 is boss!
Sent from my HercuBEAST!!
Updater-script issue?
Did anyone that flash this get an error in CWM Recovery that ends with an aborted installation? I've mounted /system and ran the script off my /sdcard/external_sd - unsure if I need this ran off my internal or not.
Additionally, the updater-script that comes with the BL version has blocks that don't seem to correspond with our partitions?
Original updater-script:
Code:
ui_print("Mounting System...");
run_program("/sbin/mount", "/dev/block/stl9", "/system");
run_program("/sbin/mount", "/dev/block/stl10", "/data");
run_program("/sbin/mount", "/dev/block/stl11", "/cache");
I edited the script on my end; I assume that our blocks are different than the OP's device, but I haven't flashed it yet (will test that in a few):
Code:
ui_print("Mounting System...");
run_program("/sbin/mount", "/dev/block/mmcblk0p24", "/system");
run_program("/sbin/mount", "/dev/block/mmcblk0p25", "/data");
run_program("/sbin/mount", "/dev/block/mmcblk0p26", "/cache");
If anyone has reported errors, do let us know what remedy you used to solve it.
EDIT:
No errors for me after script change, until it hits the wiping of /data/dalvik-cache (don't quite understand why the script fails here).
Including screenshots of post-tweak application:
Babyj303 said:
This is for modified kernel and your supposed to delete your init.d folder before flash. It works great on the gs4g. Not sure if it will even do anything for us YET. This is a great tweak and dsexton702 is boss!
Sent from my HercuBEAST!!
Click to expand...
Click to collapse
He included a script to delete the init.d folder already so you dont have to do that anymore.
Sent from my SGH-T989 using xda premium
This are my results
Masters of tweaking
This may not be the place but since his name is being mentioned do we think we could get dsexton to give these phones some pf his dsexy sexton injection and ofcourse drhonk and whitehawx and others where are you guys?????
Sent from my SGH-T989 using xda premium
i keep getting a abort... i mount the system. dunno what im doing wrong.
Try not to mount it. Just flash it. Pul out the battery and reflash
jr8801 said:
i keep getting a abort... i mount the system. dunno what im doing wrong.
Click to expand...
Click to collapse
Sent From my Galaxy S II T-Mobile
Are you using a kernel that supports it that seems like a must before flashing and when you mount the system it then should appear as unmount hope this helps.
Sent from my SGH-T989 using xda premium
phreshjoker said:
Try not to mount it. Just flash it. Pul out the battery and reflash
Sent From my Galaxy S II T-Mobile
Click to expand...
Click to collapse
Thats what I was thinking because when I flashed eaglesblood rom and glowing battery mod in cwr I just cleared cache and delvik cache and flashed away with no issues at all although besides formatting system but that was only required for the rom and everything works nice!
Sent from my SGH-T989 using xda premium

[Q] APK Decompiling

I can't find twframework.apk to finish decompiling. Where is this file located?
I thought tw was touch wiz ?
I know framework-res.apk is in system/framework.
Sent from my PC36100 using xda premium
Oh I didn't know that... I was reading a guide on how to decompile an apk and it said to extract it. I tried running apktool without it but I just get an error.
sivarticus85 said:
Oh I didn't know that... I was reading a guide on how to decompile an apk and it said to extract it. I tried running apktool without it but I just get an error.
Click to expand...
Click to collapse
I'm no dev by a long shot so I won't be much help there I've never used apktool I could never get it to work for me lol.
Sent from my PC36100 using xda premium
linsalata28 said:
I'm no dev by a long shot so I won't be much help there I've never used apktool I could never get it to work for me lol.
Sent from my PC36100 using xda premium
Click to expand...
Click to collapse
Man I know that's right... I'm trying to figure all this stuff out on my own, but it's proving to be much more involved than I originally thought.
sivarticus85 said:
Man I know that's right... I'm trying to figure all this stuff out on my own, but it's proving to be much more involved than I originally thought.
Click to expand...
Click to collapse
Use a program called apk manager. It has the apktool already built in and it works flawlessly. Thats what I use for all my theming and editing of apks.
Papa Smurf151 said:
Use a program called apk manager. It has the apktool already built in and it works flawlessly. Thats what I use for all my theming and editing of apks.
Click to expand...
Click to collapse
I couldn't get it installed right on ubuntu for some reason but then again I'm a real noob when it comes to commands.
Sent from my PC36100 using xda premium
Papa Smurf151 said:
Use a program called apk manager. It has the apktool already built in and it works flawlessly. Thats what I use for all my theming and editing of apks.
Click to expand...
Click to collapse
Yeah I just found APK Manager on Google. I'm gonna give it a try. Thanks for the help.
sivarticus85 said:
Yeah I just found APK Manager on Google. I'm gonna give it a try. Thanks for the help.
Click to expand...
Click to collapse
There is a Guy who has taken over the development of apk manager and has come out with a newer version and renamed it. Its called apk multi tool now. Try that out as well
And if you're on ubuntu machine give Android utility a whirl
tapatalk signature here. lovely.
tommytomatoe said:
And if you're on ubuntu machine give Android utility a whirl
tapatalk signature here. lovely.
Click to expand...
Click to collapse
I started using ubuntu but I can't seem to get apk tool or manager to work do you know of a easy to follow noob guide on that stuff?
Sent from my PC36100 using XDA App
linsalata28 said:
I started using ubuntu but I can't seem to get apk tool or manager to work do you know of a easy to follow noob guide on that stuff?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Android utility is pretty noob-tastic. Lol
Also you can ask me questions.
tapatalk signature here. lovely.
tommytomatoe said:
Android utility is pretty noob-tastic. Lol
Also you can ask me questions.
tapatalk signature here. lovely.
Click to expand...
Click to collapse
Is that something like apk manager do I just install it on ubuntu do you have a link I could check out?
Sent from my PC36100 using XDA App
linsalata28 said:
Is that something like apk manager do I just install it on ubuntu do you have a link I could check out?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
It's apkmanager on crack. Hehe. Just kidding. Apkmanager was awesome but I felt it needed some extra features. I wrote this from scratch and it has more features than most people need...but its all there.
http://forum.xda-developers.com/showthread.php?t=1167623
tapatalk signature here. lovely.
You guys rock. Thanks again for all the help!
I'm having problems installing the android utility... I'm getting all kinds of directory does not exist and git errors... thoughts?
Edit: Nevermind I didn't have git installed. Didn't know I needed it.

[MOD] (ICS) Remove select input notification

This will remove the "Select input method" notification and the keyboard icon that's placed on the status bar.
Update zip is attached, but here's a guide on how to do it:
Follow my guide here for specifics on pulling files and decompiling/compiling.
In services.jar open com\android\server\InputMethodManagerService.smali
In setImeWindowStatus comment out line 8866
Code:
# if-eq v12, v0, :cond_3a
Save, compile, push to device.
--------------------------------------------------------------
This also makes the setImeWindowStatus function in InputMethodManagerService output this line to logcat
Code:
W/InputManagerService( 495): Ignoring setImeWindowStatus of uid 10084 token: [email protected]
As far as I can tell (did a lot of testing), this only ever gets called when you bring up the keyboard and it tries to display the "select input method" notification.
If you want to be on the safe side, do a nandroid backup or backup services.jar.
Enjoy!
Can you PM me? Please? LOL! Thank You!
Does this work for racing's ics skyrocket rom?
rlee008 said:
Does this work for racing's ics skyrocket rom?
Click to expand...
Click to collapse
It might. I've only tried it on RaverX3X's ROM.
Ok, i just tried flashing the zip file on racing's ics skyrocket port and it does remove the "select input notification". it doesnt seem to affect anything else so it seems safe.
Thanks for the tweak. Everything helps make these ports so much better!
Rlee
So just download and flash no wipe or anything I'm using the same one racer ics port
Sent from my SAMSUNG-SGH-I727 using xda premium
peppersu812 said:
So just download and flash no wipe or anything I'm using the same one racer ics port
Sent from my SAMSUNG-SGH-I727 using xda premium
Click to expand...
Click to collapse
never mind flashed it couldn't wait lol
Sent from my SAMSUNG-SGH-I727 using xda premium
Going to try this, thanks
rlee008 said:
Does this work for racing's ics skyrocket rom?
Click to expand...
Click to collapse
I should, all of these port roms all have the same base
I will test this on HTC Sensation ARHD 6.5.5 and will report.
I just ran the zip on HTC Rezound, amon recovery, latest leaked ICS, stock, rooted and it didn't work. Let me know if there is anything I can let you know to help make it work, otherwise I'll just wait.
teckels said:
I just ran the zip on HTC Rezound, amon recovery, latest leaked ICS, stock, rooted and it didn't work. Let me know if there is anything I can let you know to help make it work, otherwise I'll just wait.
Click to expand...
Click to collapse
Post or email me your services.jar
Sent from my SAMSUNG-SGH-T989 using xda premium
services.jar
thank you for taking a look.
Works on easy does it, just took a minute to boot up.
Sent from my SAMSUNG-SGH-T989 using XDA
teckels said:
thank you for taking a look.
Click to expand...
Click to collapse
You have to post the original services.jar from that ROM. The one you posted is the one from my patch
services.jar
this is from the rom I flashed. Sorry to hijack your thread.
Here you go.
Thanks again for helping. Unfortunently no luck. I do not expect any more assistance and don't want you to waste more time unless more folks with my phone are willing to try and see if it it just my issue or the phone. Also, I'll probably jump into a new rom in a few weeks if the rezound ota comes out so I wouldn't want you to go out of your way when who knows how long I will keep this one.
teckels said:
Thanks again for helping. Unfortunently no luck. I do not expect any more assistance and don't want you to waste more time unless more folks with my phone are willing to try and see if it it just my issue or the phone. Also, I'll probably jump into a new rom in a few weeks if the rezound ota comes out so I wouldn't want you to go out of your way when who knows how long I will keep this one.
Click to expand...
Click to collapse
Something went wrong earlier. I decompiled the one I made for you and the change wasn't in there. Try this one.
Sky ICS: This patch Does Not work on SKY custom Rom..... Not asking for any assistance, just wanted to let other skyrocket users know

Problem compiling Maguro Ubuntu 12.04

]I attached the file that shows what errors I get when trying to compile, hopefully someone can help me out. Also one thing I didn't capture but I think is important is that the first line it prints when trying to compile is something along the lines of not finding the 'src' folder, it's not in my jelly bean source folder, and I did a repo sync and the source is about 14.8gb so I'm not sure if I'm missing anything, any help would be appreciated, thanks.
I'm using -> http://forum.xda-developers.com/showthread.php?p=31018542#post31018542 as my guide
and to be more specific I'm using openjdk not the jdk it says to use in the thread, not sure if that has any significance, also I commented out some lines in the main.mk file so that it can compile with the openjdk and stops asking for jdk 1.6 which people said is okay to use openjdk, if you guys need anymore info to help me, lmk. I'll try to be as specific as possible.
Also I used the make -j4 idk if I should be using -j1 or anything else. Yes I picked the write build from the lunch menu.
Here you have the same error and a patch to solve it:
http://forum.xda-developers.com/showthread.php?t=1762641&page=4
Regards!
McGiverGim said:
Here you have the same error and a patch to solve it:
http://forum.xda-developers.com/showthread.php?t=1762641&page=4
Regards!
Click to expand...
Click to collapse
I applied the patch, and i still got errors
also find: 'src' no such file or directory
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
I really find it hard to believe that they is NOT one thread that show a fully working CM10 from start to finish. Each and every one has something that is not right or a file missing.
Sent from my Galaxy Nexus using xda premium
cenwesi said:
I really find it hard to believe that they is NOT one thread that show a fully working CM10 from start to finish. Each and every one has something that is not right or a file missing.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Lmao yeah I've follows like 20 different guides, non of them have everything 100% because everyone uses a different distribution of Linux and some things work for some people and not for others it seems.
Sent from my Galaxy Nexus using Tapatalk 2
I don't see why you're having the issues compiling, as the make errors are pretty non-descriptive.
Are you using 64bit Ubuntu or 32bit Ubuntu?
I think sometime today, I'll post my method for how I got my compiled working and see if that helps anyone.
Sent from my Galaxy Nexus using Tapatalk 2
The guide you are using is a guide for Ubuntu 10.04 and there are more packages that need installed on 11.04+. Make sure you are using 64-bit Ubuntu and follow this http://forum.xda-developers.com/showthread.php?t=1566224
This is a guide for CM10, but if you are wanting to build aosp, then just use this guide to setup your build environment and use the other guide to download the source and build. There is also a nice kitchen built by swordrune10 that can build stock rooted aosp, cm10, aokp and several other popular Roms. The thread is in the GSM dev section for downloading and installing his kitchen. http://forum.xda-developers.com/showthread.php?t=1667055
geoffcorey said:
I don't see why you're having the issues compiling, as the make errors are pretty non-descriptive.
Are you using 64bit Ubuntu or 32bit Ubuntu?
I think sometime today, I'll post my method for how I got my compiled working and see if that helps anyone.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
64bit :/ Idk this is my 4th time trying to compile....each and every time before this I gave up because of multiple errors but this time I want it to work...so I'll get to the bottom of it. If you do end up posting your method, mind pming me and letting me know?
Sent from my Galaxy Nexus using Tapatalk 2
Serious_Beans said:
I applied the patch, and i still got errors
also find: 'src' no such file or directory
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Click to expand...
Click to collapse
These are not errors that would cause a build to fail. I haven't looked at your txt file so I don't know what's there. Use pastebin or something people don't have to download and you may get better response.
Sent from my Galaxy Nexus using xda app-developers app
akellar said:
These are not errors that would cause a build to fail. I haven't looked at your txt file so I don't know what's there. Use pastebin or something people don't have to download and you may get better response.
Sent from my Galaxy Nexus using xda app-developers app
Click to expand...
Click to collapse
I did upload it via pastebin...how do I insert it properly into these forums?
Sent from my Galaxy Nexus using Tapatalk 2
Serious_Beans said:
64bit :/ Idk this is my 4th time trying to compile....each and every time before this I gave up because of multiple errors but this time I want it to work...so I'll get to the bottom of it. If you do end up posting your method, mind pming me and letting me know?
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
Sent you a pm.
Sent from my Galaxy Nexus using Tapatalk 2
geoffcorey said:
Sent you a pm.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
Thanks a lot for your help earlier, I'm syncing the repo right now, I'll let you know how building goes tomorrow morning.
import_includes /bin/bash: line 1: out/host/linux-x86/obj/STATIC_LIBRARIES/libbccExecutionEngine_intermediates/import_includes: Permission denied make: ***
this is what causing his build to fail. what version of make are you using, 3.41 or 3.42? also do you have gcc-multilib installed?
Sent from my i9250
bk201doesntexist said:
import_includes /bin/bash: line 1: out/host/linux-x86/obj/STATIC_LIBRARIES/libbccExecutionEngine_intermediates/import_includes: Permission denied make: ***
this is what causing his build to fail. what version of make are you using, 3.41 or 3.42? also do you have gcc-multilib installed?
Sent from my i9250
Click to expand...
Click to collapse
3.81 according to "version -make"
I don't know if I have gcc-miltilib. I'll try to find out and if not I'll get it.
Sent from my Galaxy Nexus using Tapatalk 2
Serious_Beans said:
3.81 according to "version -make"
I don't know if I have gcc-miltilib. I'll try to find out and if not I'll get it.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
yeah, 3.81 (forget 3.4x, was thinking of something else)
you're building as a normal user, i would assume. was the folder created as root or something?
weird.
Sent from my i9250
bk201doesntexist said:
yeah, 3.81 (forget 3.4x, was thinking of something else)
you're building as a normal user, i would assume. was the folder created as root or something?
weird.
Sent from my i9250
Click to expand...
Click to collapse
Yeah originally it was lol, I re did everything from scratch. I built the ROM successfully, just having trouble finding the camera driver.
http://pastie.org/4714900
Bump. I built successfully the first time and now I'm getting this error.
Serious_Beans said:
http://pastie.org/4714900
Bump. I built successfully the first time and now I'm getting this error.
Click to expand...
Click to collapse
http://pastie.org/4716749
More errors, hope someone can help.
Bump
Sent from my Galaxy Nexus using Tapatalk 2
Serious_Beans said:
http://pastie.org/4714900
Bump. I built successfully the first time and now I'm getting this error.
Click to expand...
Click to collapse
http://ubuntuforums.org/showthread.php?t=345201
http://www.ducea.com/2007/10/25/gcc-error-trying-to-exec-cc1plus-execvp-no-such-file-or-directory/
seems you need g++
Serious_Beans said:
http://pastie.org/4716749
More errors, hope someone can help.
Click to expand...
Click to collapse
seems to me that you're out of ram; try passing a lower number of threads, like -j4 or even -j2.

Odex script for myonev9.5[gsm]

What is Odex and deodex?
There are a lot of threads that explain this. Google it
http://forum.xda-developers.com/showthread.php?t=2200349
IMPORTANT NOTE: Use CWM recovery. If you try in TWR, you end up in boot loops. REASON : The reason it doesn't work with TWRP is because TWRP is dynamically linked and TWRP is usually set up to prevent linking to libraries in /system.
ANOTHER IMPORTANT NOTE: Setup your MyOneV ROM as per your preference and then Use this script. Once you use this script you can't do any changes to SystemUI.apk and frameworks.
Credits goes to,
R_a_z_v_a_n
androidphone2012
exactly what I need
Thank you very much! I will try!
U can also use Kuban odexer
It's an app, no flashing required
russellvone said:
U can also use Kuban odexer
It's an app, no flashing required
Click to expand...
Click to collapse
So your ready to pay that much when you can get it here for free?
It hardly takes 5 secs to flash a recovery... which is better, you tell me? I have tried such apps before for eg. Odex me, it gave me problems during calls and wifi. My script is 100% gauranteed to work well if you follow my instrustions.
Sent from my One V using xda app-developers app
Will this script work for all phones or just the One v? I don't have a One of any kind, but I am running a 4.2.2 Evervolv nightly.
ivanrvf said:
So your ready to pay that much when you can get it here for free?
It hardly takes 5 secs to flash a recovery... which is better, you tell me? I have tried such apps before for eg. Odex me, it gave me problems during calls and wifi. My script is 100% gauranteed to work well if you follow my instrustions.
Sent from my One V using xda app-developers app
Click to expand...
Click to collapse
Yeahh, well... I don't know if it's because I'm PrimoC, but I've tried 3 different ClockWorkdMod recoveries, and all failed to boot after flashing this.
On a Fresh Wipe, and flashing this right after the rom, it boots, but it's still deodexed. I've also mounted the system.
Kuban Odexer, and Odex Me also fails to work for me on Sense roms.
Any thoughts?
Curiousn00b said:
Yeahh, well... I don't know if it's because I'm PrimoC, but I've tried 3 different ClockWorkdMod recoveries, and all failed to boot after flashing this.
On a Fresh Wipe, and flashing this right after the rom, it boots, but it's still deodexed. I've also mounted the system.
Kuban Odexer, and Odex Me also fails to work for me on Sense roms.
Any thoughts?
Click to expand...
Click to collapse
Primoc is different. If u post your init.rc file from the root then I can make a script to work with Primoc.
Sent from my One V using xda app-developers app
Sleepycloud said:
Will this script work for all phones or just the One v? I don't have a One of any kind, but I am running a 4.2.2 Evervolv nightly.
Click to expand...
Click to collapse
Only MyOneV, but if you want your rom odexed, post your init.rc file from the root.
Sent from my One V using xda app-developers app
ivanrvf said:
Only MyOneV, but if you want your rom odexed, post your init.rc file from the root.
Sent from my One V using xda app-developers app
Click to expand...
Click to collapse
Here you go buddy. What do you have planned?
Let me know if that doesn't work.
ivanrvf said:
Only MyOneV, but if you want your rom odexed, post your init.rc file from the root.
Sent from my One V using xda app-developers app
Click to expand...
Click to collapse
The Kuban Odexer only odexes my framework, not the apps. Will your's do the apps too? If your wondering why I posted here it was because this thread popped up in a search.
Just for your info, I have an Evo 4G running the 4.2.2 stable Evervolv nightly release, dated 12-13-12 with Wambo_Bomb's Hammerslammer Kernel. Dude, I am so sorry. I just realized I sent you the wrong init.rc. Let me send it again. My bad. i hope your not already working on it. Gimme a few minutes.
Sleepycloud said:
The Kuban Odexer only odexes my framework, not the apps. Will your's do the apps too? If your wondering why I posted here it was because this thread popped up in a search.
Just for your info, I have an Evo 4G running the 4.2.2 stable Evervolv nightly release, dated 12-13-12 with Wambo_Bomb's Hammerslammer Kernel. Dude, I am so sorry. I just realized I sent you the wrong init.rc. Let me send it again. My bad. i hope your not already working on it. Gimme a few minutes.
Click to expand...
Click to collapse
no haven't started yet.. PM me.
ivanrvf said:
no haven't started yet.. PM me.
Click to expand...
Click to collapse
Okay. I forgot that I loaded up a different nightly to test out the new squishy script. The stable release is my daily driver. I'll send you a PM in a few. Sorry bro.
ivanrvf said:
no haven't started yet.. PM me.
Click to expand...
Click to collapse
Here it is dude. Thanks for helping me with this. I've tried a few odexers but none of them work. Maybe your's will. The info I gave above is correct for this init.rc in case you need to know anything about my device and what I'm running.
Only for SleepyCloud
Sleepycloud said:
Here it is dude. Thanks for helping me with this. I've tried a few odexers but none of them work. Maybe your's will. The info I gave above is correct for this init.rc in case you need to know anything about my device and what I'm running.
Click to expand...
Click to collapse
this should work. try it and pm me if any issues. Important thing is it requires CWM recovery and init.d support in your rom, without that you'll end up in bootloop.
Also give credits to androidphone2012
ivanrvf said:
Only MyOneV, but if you want your rom odexed, post your init.rc file from the root.
Sent from my One V using xda app-developers app
Click to expand...
Click to collapse
I'm using the CDMA version of myOne, but I think I understand what your saying. That's a kernel file, isn;t it?
Sleepycloud said:
The Kuban Odexer only odexes my framework, not the apps. Will your's do the apps too? If your wondering why I posted here it was because this thread popped up in a search.
Just for your info, I have an Evo 4G running the 4.2.2 stable Evervolv nightly release, dated 12-13-12 with Wambo_Bomb's Hammerslammer Kernel. Dude, I am so sorry. I just realized I sent you the wrong init.rc. Let me send it again. My bad. i hope your not already working on it. Gimme a few minutes.
Click to expand...
Click to collapse
Kuban Odexer just stayed on Odexing, please wait. When I turn the phone sideways, it just stops and goes to " Ready to Odex! ". Didn't do a thing. :/
EDIT: Uploaded. Hopefully that's the right file. :victory:
Curiousn00b said:
I'm using the CDMA version of myOne, but I think I understand what your saying. That's a kernel file, isn;t it?
Kuban Odexer just stayed on Odexing, please wait. When I turn the phone sideways, it just stops and goes to " Ready to Odex! ". Didn't do a thing. :/
EDIT: Uploaded. Hopefully that's the right file. :victory:
Click to expand...
Click to collapse
Seems Primoc also have the same classpath. What I think is the CWM recovery must not be proper. I suggest you take a backup and try with TWRP. But a backup so that you don't have to flash the rom again. Use the same script in the op.
Sent from my One V using xda app-developers app
ivanrvf said:
Seems Primoc also have the same classpath. What I think is the CWM recovery must not be proper. I suggest you take a backup and try with TWRP. But a backup so that you don't have to flash the rom again. Use the same script in the op.
Sent from my One V using xda app-developers app
Click to expand...
Click to collapse
This has also failed. I pulled the system folder and it seems like the only thing there is system/bin, although, the bin folder is empty as well.
I was wondering if I could ask a favor. I'll PM you.
Curiousn00b said:
This has also failed. I pulled the system folder and it seems like the only thing there is system/bin, although, the bin folder is empty as well.
I was wondering if I could ask a favor. I'll PM you.
Click to expand...
Click to collapse
Sure!!
I'm also primoc.. kuban odexer works if you have init.d it worked just fine for me.
Also, I'm not trying to take away from the OP I'm just giving my experience of using Kuban odexer with myOne CDMA before this thread was even created.
ivanrvf said:
Sure!!
Click to expand...
Click to collapse
Baaah. Waiting for Dev Host to accept the upload. :/!
russellvone said:
I'm also primoc.. kuban odexer works if you have init.d it worked just fine for me.
Also, I'm not trying to take away from the OP I'm just giving my experience of using Kuban odexer with myOne CDMA before this thread was even created.
Click to expand...
Click to collapse
I know what you mean, but I'm really trying to become Odexed. xD
What rom did you use and how long did it take?

Categories

Resources