[SOLVED][Q] Help writing updater-script (set_perm, symlinks) - Sony Ericsson Xperia Mini, Mini Pro, Xperia Pro, A

Hi guys,
I just tried to build my own rom from the Android 4.2 system dump, but I don't know how to write a real updater-script.
I took update-binary from FXP (not sure if I'm allowed to, so could someone tell me if I could use it?) and tried to write my own updater-script. It's looking like this:
Code:
mount("yaffs2", "MTD", "system", "/system");
ui_print("System mounted");
show_progress(0.500000, 0);
format("yaffs2", "MTD", "system", "0", "/system");
ui_print("System formatted");
mount("yaffs2", "MTD", "system", "/system");
package_extract_dir("system", "/system");
show_progress(0.100000, 0);
unmount("/system");
but after that it's not booting. Could be kernel related, too, that FXP 145 kernel is not working, but maybe something other is wrong.
What about these set_perm lines and symlinks? How do I know what I have to write there?
And how can I know where my rom stuck, if it is kernel related or what. Tried to logcat but logcat doesn't recognize device?!
Maybe someone could help me :good:
Best regards
Mihahn
Edit: Looks like I'm not able to build from a system dump and now we have Cyanogenmod 10.1

Okay it looks like it's not a rom problem, if someone knows how to compile a kernel for the rom it would be nice if he could post it here or PM me, that he makes the kernel and I the rom.
It's a kernel problem I think, because it stuck on the FXP 145 kernel logo...
Would be nice if you could help me to compile the kernel for the rom!
Thanks
Mihahn

A Rom based on 4.2 ?? Wow
Sent from my SK17i using xda app-developers app

Without setting proper permissions your Rom will not boot at all. Try using the META-INF folder from fxp cyanogenmod 10 Rom it should work (probably) and moreover in my personal opinion the kernel shouldn't be the problem because 4.1 to 4.2 is not a big leap and so 4.1 kernel would be sufficient.
Press thanks if I helped you
Sent from my ST15i using xda app-developers app

MetaInf folder from fxp gave a set_perm error, that's the problem and I don't know which values I have to edit to get the symlinks and set_perm working...
Sent from my SK17i running Jelly Bean via CM10

Okay, this is how I debug updater-scripts,
Add,
ui_print("1");
Click to expand...
Click to collapse
Before first set perm command then
ui_print("2");
Click to expand...
Click to collapse
Before 2nd set perm command and so on till the last line of code in the updater-script and you'll know after which line the error occurs and can look into that line of the code . It might be tedious process if your updater-script is loooong but it always works for me!
Hit thanks if I helped you
Sent from my ST15i using xda app-developers app

Yes similar to this I have done it, too. Changed some lines now and it's working very well with the updater-script by FXP :good:
Now my problem is, that it's not booting. The kernel logo appears, the led for cwm lights up, i wait, The led goes off, screen gets brighter, but the kernel logo stays.
Someone has an idea how to get it booting?
Sent from my SK17i running Jelly Bean via CM10

Which system dump are you using? Lg Nexus 4? Anyways, porting Rom is not piece of cake. Read some tuts, play with the system files and you might see the bootanimation sometime soon :thumbup: and even though I said kernel might not be a problem it might be actually a problem
Sent from my ST15i using xda app-developers app

gouthamthemostwanted said:
Which system dump are you using? Lg Nexus 4? Anyways, porting Rom is not piece of cake. Read some tuts, play with the system files and you might see the bootanimation sometime soon :thumbup: and even though I said kernel might not be a problem it might be actually a problem
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
Yes from the lg nexus 4. I think the problem is that the rom is odexed (nearly all apks had an odex file, too). But not sure...
Read many tutorials and I've already done some ports and roms and nearly all of them are working...
Have you got any other idea what I could do to get it working?
Maybe I should wait until the first official repos are released and then start to work from source...
Sent from my SK17i running Jelly Bean via CM10

I've never done any ports or some thing like that (not much free time) hope you'll succeed soon :thumbup:
Sent from my ST15i using xda app-developers app

Thank you, I hope somebody could help me, any developer who could take a look on the rom and the updater script and maybe build a kernel to the rom...
Would be great to have an Android 4.2 rom before the sources are officially released (on the 13.11.?)
Haven't got much time, too, but when I have time I like to port roms or build my own ones :good:
Sent from my SK17i running Jelly Bean via CM10

It looks like the nexus 4 is a xhdpi phone isn't it compulsory that you resize each and every image inside every apk to mdpi resolution including the boot animation?? And can you get a logcat right from the boot (pastebin)?
Sent from my ST15i using xda app-developers app

gouthamthemostwanted said:
It looks like the nexus 4 is a xhdpi phone isn't it compulsory that you resize each and every image inside every apk to mdpi resolution including the boot animation?? And can you get a logcat right from the boot (pastebin)?
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
I don't know, but I think there are really some things to do, so I think I will have to wait until the sources are released and I will try it again...
Thanks for your help

mihahn said:
I don't know, but I think there are really some things to do, so I think I will have to wait until the sources are released and I will try it again...
Thanks for your help
Click to expand...
Click to collapse
okay man! you got me interested :highfive: i downloaded the system dump and what the heck! every app is odexed and every framework file too!! :crying: okay i'm trying to deodex everything here............

gouthamthemostwanted said:
okay man! you got me interested :highfive: i downloaded the system dump and what the heck! every app is odexed and every framework file too!! :crying: okay i'm trying to deodex everything here............
Click to expand...
Click to collapse
But not every file was odexed, just these apk files had an odex files, too. In my rom I just deleted all .odex files. Maybe that's the problem?

mihahn said:
But not every file was odexed, just these apk files had an odex files, too. In my rom I just deleted all .odex files. Maybe that's the problem?
Click to expand...
Click to collapse
hey! you shouldn't be deleting the odex files without deodexing! that's a major mistake!
by the way i deodexed all apks in /system/app and now working on /framework (i do it manually, i prefer that way) :good:

Okay I've fully deodexed /system/app and /system/framework but I'm getting error in deodexing core.odex can you try deodexing core.odex and tell me?
Sent from my ST15i using xda app-developers app

gouthamthemostwanted said:
Okay I've fully deodexed /system/app and /system/framework but I'm getting error in deodexing core.odex can you try deodexing core.odex and tell me?
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
How did you deodex manually? What steps have you done, are you using any tools or how to you do?

mihahn said:
How did you deodex manually? What steps have you done, are you using any tools or how to you do?
Click to expand...
Click to collapse
Using Smali and baksmali . I used the latest version and everything went smoothly except for core.odex
Here, the tool
Sent from my Xperia Mini using xda app-developers app

gouthamthemostwanted said:
Using Smali and baksmali . I used the latest version and everything went smoothly except for core.odex
Here, the tool
Sent from my Xperia Mini using xda app-developers app
Click to expand...
Click to collapse
Okay I'm just doing it with another tool, will tell you if it works!

Related

[REQ] ICS Rotate Animation for GB

Is it possible to port from ICS to GB?
Sillva said:
Is it possible to port from ICS to GB?
Click to expand...
Click to collapse
+1
Sent from my WT19i using xda premium
Actually it is possible to get this animation because all Motorola phones with gb have this feature as far as i know.
But i've already searched pretty much to find a solution to my x10 or any general gb firmware but sadly i couldn't find any solution.
But I hope that someone will port it soon!
Sent from my SO-01C using XDA
Sillva said:
Is it possible to port from ICS to GB?
Click to expand...
Click to collapse
+1 too
I tried but phone is not booting after replacing the files!
Sent from my GT-S5670 using xda premium
It probably has something to do with the framework.
If you can find the right files to modify in the framework then you can get the animations.
Sent from my LT15a using XDA
https://github.com/CyanogenMod/andr...mmit/1b4e52f7a99c5d51930e16b53ab0415c5b20906d
Maybe any Dev can help us ^^
I'm waiting for this for a long time. My X8 has this and I want it in my play. The CM Rom versions for me aren't good enough. This in stock Rom and I wouldn't need Ics
Sent from my R800i using XDA
This post are dead but i wanna wake it up on these days what about now no one have ported animations until now ?
Ainster said:
This post are dead but i wanna wake it up on these days what about now no one have ported animations until now ?
Click to expand...
Click to collapse
Ignore my old post on this thread, but I believe it is impossible because of a lib file that needs to be edited, which isn't possible.
I could be wrong, but this is what I read in a thread which tried to do this.
Sent from my LT15a using xda app-developers app
Sillva said:
Is it possible to port from ICS to GB?
Click to expand...
Click to collapse
+1
Sent from my LT15i using xda app-developers app
Animation there is in CyanogenMod 7.2 (android 2.3.7)
May be somebody will search the files, that need for animation?
Andreigr said:
Animation there is in CyanogenMod 7.2 (android 2.3.7)
May be somebody will search the files, that need for animation?
Click to expand...
Click to collapse
Try this one,modified by me - I can't guarantee to you that it will be function, cos I haven't got xperia arc at this moment and I'm very busy too.
I use the framework-res.apk from x-stronger rom - I haven't got stock, if you want to use these animations to your own framework, open the framework-res.apk in 7-zip (or something like this), go to res/animations/and copy the transition animations - if you don't know which of these are t.a. - find it on google...
Download flashable zip:
https://docs.google.com/file/d/0B-DNiN-X6WtSWVdCRDNQSThZcGc/edit?usp=sharing
Apk:
https://docs.google.com/file/d/0B-DNiN-X6WtSWVdCRDNQSThZcGc/edit?usp=sharing
If you like it, press thanks :good:
DominikHolecek said:
Try this one,modified by me - I can't guarantee to you that it will be function, cos I haven't got xperia arc at this moment and I'm very busy too.
I use the framework-res.apk from x-stronger rom - I haven't got stock, if you want to use these animations to your own framework, open the framework-res.apk in 7-zip (or something like this), go to res/animations/and copy the transition animations - if you don't know which of these are t.a. - find it on google...
Download flashable zip:
https://docs.google.com/file/d/0B-DNiN-X6WtSWVdCRDNQSThZcGc/edit?usp=sharing
Apk:
https://docs.google.com/file/d/0B-DNiN-X6WtSWVdCRDNQSThZcGc/edit?usp=sharing
If you like it, press thanks :good:
Click to expand...
Click to collapse
Thanky for your attempt, but it doesn't work.
Animations seems inside the kernel, I think so there is the guide how to make this animation
Andreigr said:
Thanky for your attempt, but it doesn't work.
Animations seems inside the kernel, I think so there is the guide how to make this animation
Click to expand...
Click to collapse
Transition animations in kernel ??? wtf ???
I don't know where is it may be
May be it is in the framework/jar-files? (framework.jar?)
there is the guide how to make this animation
Click to expand...
Click to collapse
https://github.com/CyanogenMod/andr...mmit/1b4e52f7a99c5d51930e16b53ab0415c5b20906d

[MOD][ICS] JB Transitions/Animations for ICS

Hi guys i wanted the JB animations on my ICS ROM so i pulled out the JB anim and replaced it with the ones from ICS
-Instructions:
-Download ZIP
-Place it on SD
-Boot in CWM
-In CWM mount system!!
-Flash the zip
-Reboot and Enjoy your new JB transitions
NOT TESTED ON GB!!
Im not reponsible for any damage to your phone
Credits
FXP Team for the framework of CM10
how does dis work buddy?
MAN! WHY IS THE UPDATER SCRIPT INSTRUCTED TO FORMAT THE SYSTEM PARTITION!!!??!?!? PLEASE GO THROUGH IT!!!!
PLEASE REMOVE THE ATTACHMENT AT ONCE! IT WILL DEFINITELY FORMAT THE SYSTEM PARTITION!!
The updater-script looks like it has been directly pulled from a custom Rom so it obviously formats the system partition . Please edit the updater-script accordingly!
Sent from my ST15i using xda app-developers app
whalesplaho said:
how does dis work buddy?
Click to expand...
Click to collapse
what do you mean? be more precise please
gouthamthemostwanted said:
MAN! WHY IS THE UPDATER SCRIPT NSTRUCTED TO FORMAT THE SYSTEM PARTITION!!!??!?!? PLEASE GO THROUGH IT!!!!
PLEASE REMOVE THE ATTACHMENT AT ONCE! IT WILL DEFINITELY FORMAT THE SYSTEM PARTITION!!
The updater-script looks like it has been directly pulled from a custom Rom so it obviously formats the system partition . Please edit the updater-script accordingly!
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
oh sorry i will fix it wait...
KhemaraS. said:
oh sorry i will fix it wait...
Click to expand...
Click to collapse
Y u need such a big updater script...
Only mount system
Package extract system
Set permission
And unmount is need.
Whick Rom's framework-res.apk did u use.?
Sent from my SK17i using XDA Premium HD app
sandy7 said:
Y u need such a big updater script...
Only mount system
Package extract system
Set permission
And unmount is need.
Whick Rom's framework-res.apk did u use.?
Sent from my SK17i using XDA Premium HD app
Click to expand...
Click to collapse
I agree with you. Maximum 10 lines of code would suffice. I guess he pulled the meta-inf folder from some Rom but somehow forgot to edit it
Sent from my ST15i using xda app-developers app
gouthamthemostwanted said:
I agree with you. Maximum 10 lines of code would suffice. I guess he pulled the meta-inf folder from some Rom but somehow forgot to edit it
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
And the framework-res.apk if he has used it from his Rom...it wont work on other roms.
Sent from my SK17i using XDA Premium HD app
gouthamthemostwanted said:
I agree with you. Maximum 10 lines of code would suffice. I guess he pulled the meta-inf folder from some Rom but somehow forgot to edit it
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
sorry i just took the meta inf of my gb rom and didnt checked it all sorry credits goes to FXP i will add them in a sec
updated sorry for the errrors
sandy7 said:
And the framework-res.apk if he has used it from his Rom...it wont work on other roms.
Sent from my SK17i using XDA Premium HD app
Click to expand...
Click to collapse
It's not a full apk . I don't know how to call it because I haven't used it before . I think it's called zipthemer or something like that. It looks like an apk but it's just a folder which only contains the files which has to be replaced inside an existing framework-res.apk in your device. So it would probably work with any framework-res.apk.
Sent from my ST15i using xda app-developers app
gouthamthemostwanted said:
It's not a full apk . I don't know how to call it because I haven't used it before . I think it's called zipthemer or something like that. It looks like an apk but it's just a folder which only contains the files which has to be replaced inside an existing framework-res.apk in your device. So it would probably work with any framework-res.apk.
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
yes it only replaces the anim folder in framework res
I don't know if I'm wrong but still the updater-script looks broken to me (forgive me if I'm wrong).
the updater-script is instructed to extract a file called "vrtheme" but I can't find any file named "vrtheme" in the flashable zip?!?
Sent from my ST15i using xda app-developers app
KhemaraS. said:
yes it only replaces the anim folder in framework res
Click to expand...
Click to collapse
Ok..u better edit the updater script
Sent from my SK17i using XDA Premium HD app
gouthamthemostwanted said:
I don't know if I'm wrong but still the updater-script looks broken to me (forgive me if I'm wrong).
the updater-script is instructed to extract a file called "vrtheme" but I can't find any file named "vrtheme" in the flashable zip?!?
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
Guys i will fix it tomorrow,it shouldnt be a problem,the zip is flashable
KhemaraS. said:
Guys i will fix it tomorrow,it shouldnt be a problem,the zip is flashable
Click to expand...
Click to collapse
Okay, but you better remove the attachment for the time being.
And why is the data partition mounted and unmounted unnecessarily? And you cannot unmount the sdcard because the flashable zip itself is present in the sd card during execution and you can't instruct it to unmount itself .
Sent from my ST15i using xda app-developers app
gouthamthemostwanted said:
Okay, but you better remove the attachment for the time being.
And why is the data partition mounted and unmounted unnecessarily? And you cannot unmount the sdcard because the flashable zip itself is present in the sd card during execution and you can't instruct it to unmount itself .
Sent from my ST15i using xda app-developers app
Click to expand...
Click to collapse
The zip is working now tomorrow i will only make little changes and its finished,just flash it and your transitions will work i cant do it now im very busy with school work.
KhemaraS. said:
The zip is working now tomorrow i will only make little changes and its finished,just flash it and your transitions will work i cant do it now im very busy with school work.
Click to expand...
Click to collapse
Okay, I think I've bothered you enough for today but a piece of friendly advice, test your product atleast 10 times before you release it and after releasing it, download it again from where you uploaded, and test the downloaded product once again. Sorry to bother you .
And good idea by the way!
Sent from my ST15i using xda app-developers app
KhemaraS. said:
what do you mean? be more precise please
Click to expand...
Click to collapse
i mean i dont know how JB transitions is so i was wondering....
can someone test now and give feedback?

[SOLVED][Q] MIUI 2.11.9. problems

Hi,
I want to build MIUI roms, which are updated if MIUI updates its roms.
So I started, but got some problems on MIUI 2.11.9, based on ICS:
It boots, bootanimation appears, lockscreen for 2 seconds, it reboots, bootanimation, lockscreen, bootanimation again and it starts all over...
I attached a zip, because I mad a logcat, a 2nd logcat after doing fix permissions in cwm, the build.prop (to be sure that I did everything like MIUI wants it) and the updater-script (to be sure everything's okay with it).
It would be great if you could download them and help me!
Best regards
Mihahn
P.S.: Please don't spam this thread, only helpfull information, please!
From source or porting from arc s?
Sent from my SK17i using XDA Premium HD app
sandy7 said:
From source or porting from arc s?
Sent from my SK17i using XDA Premium HD app
Click to expand...
Click to collapse
From LT18i, not from source.
Maybe if I get this rom booting and everything working, I will try to port from sources, or I will start porting Android 4.2, but because I'm not really a developer, it's hard to work from source...
Do you know what the problem on my project is?
See my signature..for the guide..u will find if u did any thing wrong..
Sent from my SK17i using XDA Premium HD app
sandy7 said:
See my signature..for the guide..u will find if u did any thing wrong..
Sent from my SK17i using XDA Premium HD app
Click to expand...
Click to collapse
Okay I read your guide, but I have done everything like you tell there before, so I really don't know what's wrong. Maybe you could see the logcat and help me?
as per ur logcat.....
these might be the problems..
mistake in updater script
wrong recompiling of framework-res.apk or
base rom problem
sandy7 said:
as per ur logcat.....
these might be the problems..
mistake in updater script
wrong recompiling of framework-res.apk or
base rom problem
Click to expand...
Click to collapse
Okay, so base rom should have no problem, the updater-script could be, but I just took the one inside for Lt18i, tried anotherone, didn't work anyway...
There were no errors, when compiling framework-res.apk
Thanks for your answer!
ok u plz pm what all u did in detail....
sandy7 said:
ok u plz pm what all u did in detail....
Click to expand...
Click to collapse
Thank you very much will pm you :good:

[Q]AROMA...

Hey guys, i was just trying to update my META-INF to AROMA 2.56, and everything went great but when i came to installation proccess, it just ended within a second and act like if it finished... I have all files, i don't know why it "skips" updater-script or something!
Are u using twrp recovery..
And if u can upload ur updater script ill can tell what is the prob...
Sent from my SK17i using XDA Premium HD app
sandy7 said:
Are u using twrp recovery..
And if u can upload ur updater script ill can tell what is the prob...
Sent from my SK17i using XDA Premium HD app
Click to expand...
Click to collapse
Nope and the updater script is same i use on my MIUI rom!
Odp: [Q]AROMA...
If I'm not wrong it's something wrong with 2.56 AROMA.
Try to replace that with older AROMA
Sent from my WT19i using Tapatalk.
anerik said:
Hey guys, i was just trying to update my META-INF to AROMA 2.56, and everything went great but when i came to installation proccess, it just ended within a second and act like if it finished... I have all files, i don't know why it "skips" updater-script or something!
Click to expand...
Click to collapse
AROMA 2.56 doesn't work with our device...
Try 2.00

[Devs-only][WIP][ThinkTank] Dualbooting on Xperia U

Now It's a pain in the *** to test a rom and we have to restore rom or some sort to get back to our daily rom.
And Sony Xperia S had succeeded,I'll take it as a reference and see if we can work on this.
This is not a placeholder.
Link to the Xperia S thread.
http://forum.xda-developers.com/showthread.php?t=1880305
I'll be "investigating" this.And I also need all the devs help. (I'm not really an highly skilled developer,so I would really need some help here)
Devs only please. No request for tester or users that asks for ETA. Do not post any reply unrelated to development on this thread.
Keep it only for devs,and make it clean.
Devs,good luck to you guys.
Dual recovery is needed,I'll start by porting TWRP. (I'll focus on this first)
Wow. This is kick ass stuff.
Similar to what was done in G3MOD, except that here its actually dual boot, with the ROMs installed on internal storage, while there it was implemented in a slightly simpler way by packing multiple ramdisks and extracting system.img files when required to switch between ROMs.
Considering our already existing problem of not having of an expandable storage, G3MOD's implementation seems far more appealing.
I will take a look at this soon enough.
Well I didn't store a lot of things on my device,only roms and some other stuff,my internal storage is actually more than enough.
But that method seems to be more friendly on the internal storage,as we have a lot of unused phone memory. (the place where roms are installed to)
I'll look into that too.
Edit : It seems like the G3MOD project is already abandoned. But we can look at their sources at github.
We could make it load from sdcard by pressing a combination of buttons on Sony logo! We need kernel first of all! But also a way to do it.
Sent from my ST25i using xda app-developers app
Andrewasth said:
We could make it load from sdcard by pressing a combination of buttons on Sony logo! We need kernel first of all! But also a way to do it.
Sent from my ST25i using xda app-developers app
Click to expand...
Click to collapse
We're trying to dual boot different rom with different kernel
I don't believe that we can make it load a different kernel! If we could then we could also let permanently locked bootloaders to do so too! We will have to load it from a single kernel!
Sent from my ST25i using xda app-developers app
Andrewasth said:
I don't believe that we can make it load a different kernel! If we could then we could also let permanently locked bootloaders to do so too! We will have to load it from a single kernel!
Sent from my ST25i using xda app-developers app
Click to expand...
Click to collapse
In the first thread,Xperia S is able to load two kernel.
why is there always have to be made for locked bootloader?
custom kernel NEEDS an UNLOCKED BOOTLOADER.
how can you use a single kernel?via the patch?
I'll look into it first.
XDA_Bruno said:
why is there always have to be made for locked bootloader?
custom kernel NEEDS an UNLOCKED BOOTLOADER.
how can you use a single kernel?via the patch?
I'll look into it first.
Click to expand...
Click to collapse
Don't be so offensive! What I want to say is that I doubt we could load two kernels! That's all
Sent from my ST25i using xda app-developers app
Andrewasth said:
Don't be so offensive! What I want to say is that I doubt we could load two kernels! That's all
Sent from my ST25i using xda app-developers app
Click to expand...
Click to collapse
Wait...I'm not being offensive,but we might actually found a way to load kernel from other directory in system. (Not entirely sure if that's possible though.)
That actually might be possible! Search for it a little.
Sent from my ST25i using xda app-developers app
XDA_Bruno said:
Wait...I'm not being offensive,but we might actually found a way to load kernel from other directory in system. (Not entirely sure if that's possible though.)
Click to expand...
Click to collapse
ramdisk.tar u mean ?
Sent from my S500 using xda app-developers app
The method xperia s use is: pack one kernel with 3 kernels inside it (one kernel for the dual boot menu, and 2 normal kernels)
So it is possible to do
Sent from my MI2 using xda premium
The guys at the Moto Defy forums have it sorted out, using 2nd-init and 2nd-boot: http://forum.xda-developers.com/showthread.php?t=1364659
Good luck.
So we have to create system image to multi boot rom?
Sent From My JB 4.1.2 Xperia U
Press Thanks If I Helped You....
MythT said:
So we have to create system image to multi boot rom?
Sent From My JB 4.1.2 Xperia U
Press Thanks If I Helped You....
Click to expand...
Click to collapse
yes probably.
Okay this is very good if we can get it working
Then we can boot CM And JB no need of flash
Sent From My JB 4.1.2 Xperia U
Press Thanks If I Helped You....
MythT said:
Okay this is very good if we can get it working
Then we can boot CM And JB no need of flash
Sent From My JB 4.1.2 Xperia U
Press Thanks If I Helped You....
Click to expand...
Click to collapse
How about kernel if start to dual boot? If we wanna use some rom base or Cm we always changed the kernel?
Sent From C6603 Using xda premium
Encang_Rojali said:
How about kernel if start to dual boot? If we wanna use some rom base or Cm we always changed the kernel?
Sent From C6603 Using xda premium
Click to expand...
Click to collapse
Sorry i dont understand what you mean
Sent From My JB 4.1.2 Xperia U
Press Thanks If I Helped You....
Its a bit harder bec. Xpu doesnt have external sd card so 4gb aint enough maybe?
JohnLouise said:
Its a bit harder bec. Xpu doesnt have external sd card so 4gb aint enough maybe?
Click to expand...
Click to collapse
I have about 2GB free so it's enough.
Plus,the plans is to install the rom on phone,not internal storage (working on TWRP at the moment though.)

Categories

Resources