Small OTA update (5.59MB) D800 - AT&T LG G2

Checked today for Software Update on my At&t LG G2 D800 and a small 5.59MB update was found. Update didn't install because I am rooted but I grabed the file and uploaded to my Dropbox account in case it can be of use to someone. I am currently on 4.4.2 software KOT49I.D80020c
FOTA file

mp2ning said:
Checked today for Software Update on my At&t LG G2 D800 and a small 5.59MB update was found. Update didn't install because I am rooted but I grabed the file and uploaded to my Dropbox account in case it can be of use to someone. I am currently on 4.4.2 software KOT49I.D80020c
FOTA file
Click to expand...
Click to collapse
This is supposed to enable Tap and Pay for Google Wallet...
https://plus.google.com/114105494557075919418/posts/gNCUZgwcnRQ
-Daryel

Sent from my LG-D800 using xda app-developers app

Swetnes said:
Sent from my LG-D800 using xda app-developers app
Click to expand...
Click to collapse
Did it automatically update for you? I've got root, and it will not update because it sees I'm rooted.
I'm thinking maybe it's due to the fact that I've removed a LOT of bloat.

SuperSport said:
Did it automatically update for you? I've got root, and it will not update because it sees I'm rooted.
I'm thinking maybe it's due to the fact that I've removed a LOT of bloat.
Click to expand...
Click to collapse
I did this to keep my phone from showing root: http://forum.xda-developers.com/showthread.php?t=2703501
And yes it did it automagically
Sent from my LG-D800 using xda app-developers app

Here's the dump from the FOTA folder. I haven't let the update roll just yet.
https://app.box.com/s/o1w00ddwq0uawpbrzg70
Grab it while my BOX bandwidth allows lol.
Sent from my LG-D800 using Tapatalk

daryelv said:
This is supposed to enable Tap and Pay for Google Wallet...
https://plus.google.com/114105494557075919418/posts/gNCUZgwcnRQ
-Daryel
Click to expand...
Click to collapse
If I do not intend to ever use the Tap and Pay and / or Google Wallet, is there any benefit to taking this update?
I currently have software update "frozen" via Titanium

lostangelintx said:
If I do not intend to ever use the Tap and Pay and / or Google Wallet, is there any benefit to taking this update?
I currently have software update "frozen" via Titanium
Click to expand...
Click to collapse
The update also mentions Google+... Not sure I've ever had an issue with Google+ on my phone though...
"Software version D80020k for the LG G2 is now available starting April 8, 2014. This update brings Host Card Emulation (HCE) support and updates to Google+."
I just updated today, was running 80020c with the modified boot.img (for custom recovery). Flashed all the way back to 80010c and went through the update process... 80010c -> 80010o -> 80010q -> 80020c -> 80020k -> Rooted via IORoot25. I keep cloud backups of data (SMS, MMS, call logs, etc.) and applications (apk + data), so I never worry about losing data by a factory reset.
-Daryel

daryelv said:
I keep cloud backups of data (SMS, MMS, call logs, etc.) and applications (apk + data), so I never worry about losing data by a factory reset.
Click to expand...
Click to collapse
Out of curiosity, what do you use for this? I'm currently using Go Backup, but wondered what other alternatives there are. Sometimes, Go Backup can be a little glitchy...

SuperSport said:
Out of curiosity, what do you use for this? I'm currently using Go Backup, but wondered what other alternatives there are. Sometimes, Go Backup can be a little glitchy...
Click to expand...
Click to collapse
I've been using EaseBackup Pro for my backups. It's simple and has just worked for what I need. I've used Titanium Backup in the past, and messed with MyBackup Pro, Carbon and a few others.
-Daryel

daryelv said:
I've been using EaseBackup Pro for my backups. It's simple and has just worked for what I need. I've used Titanium Backup in the past, and messed with MyBackup Pro, Carbon and a few others.
-Daryel
Click to expand...
Click to collapse
Thanks for the reply. I also use EasyBackup Pro, but it also has some problems getting a full backup of the Apps to my Cloud. The SMS/MMS backup is flawless on EasyBackup! That's my preferred for those.
EDIT: Oops, I just saw my mistake. EASEbackup, not EASYbackup. I'll take a look at that one now.

daryelv said:
This is supposed to enable Tap and Pay for Google Wallet...
https://plus.google.com/114105494557075919418/posts/gNCUZgwcnRQ
-Daryel
Click to expand...
Click to collapse
Could this patch be ported to any other (T-mobile) variant?

How do I install this update?
I downloaded the fota, put it in "/cache/fota/update.zip" and it still wont run.
Any help?

Anyone out there that can make this a flashable zip? or cook it into a rom? I would if I knew how

Tremulant1 said:
Anyone out there that can make this a flashable zip? or cook it into a rom? I would if I knew how
Click to expand...
Click to collapse
This would require quite a bit of work. The update contains a dlpkgfile which nobody has figured out how to decompress. It's not a normal zip, bzip, gzip, lzip, lhzip, or anything I can decompress. Looking through the file's data it's obvious that it's compressed using opensource code, but LG must have put their own "spin" on it.
About the only thing I can think of doing to extract the changes would be to do a fresh factory reset, go through all the updates and take a snapshot of the /system partition prior to this small update, do the update, and then take another snapshot after the update. Using some file comparison tools such as Meld in Linux I can compare the before/after to capture the differences. Totally possible to do, just very time consuming. Here's the rough steps if someone wants to do it themselves...
1. revert back to D80010d (LGFlashtool)
2. use OTA process to upgrade to 80020c
3. root using IOroot25
4. take a snapshot of /system partition using "dd"
5. use OTA process to upgrade to 80020k
6. take a second snapshot of /system partition using "dd"
7. mount snapshots on Linux desktop
8. compare mounted snapshots using Meld
This will only capture differences on the /system partition. If there are updates to other partitions then those partitions would also have to extracted and compared as well.
-Daryel

daryelv said:
This would require quite a bit of work. The update contains a dlpkgfile which nobody has figured out how to decompress. It's not a normal zip, bzip, gzip, lzip, lhzip, or anything I can decompress. Looking through the file's data it's obvious that it's compressed using opensource code, but LG must have put their own "spin" on it.
About the only thing I can think of doing to extract the changes would be to do a fresh factory reset, go through all the updates and take a snapshot of the /system partition prior to this small update, do the update, and then take another snapshot after the update. Using some file comparison tools such as Meld in Linux I can compare the before/after to capture the differences. Totally possible to do, just very time consuming. Here's the rough steps if someone wants to do it themselves...
1. revert back to D80010d (LGFlashtool)
2. use OTA process to upgrade to 80020c
3. root using IOroot25
4. take a snapshot of /system partition using "dd"
5. use OTA process to upgrade to 80020k
6. take a second snapshot of /system partition using "dd"
7. mount snapshots on Linux desktop
8. compare mounted snapshots using Meld
This will only capture differences on the /system partition. If there are updates to other partitions then those partitions would also have to extracted and compared as well.
-Daryel
Click to expand...
Click to collapse
Thats way over my head lol I wish I knew Linux!

yea linux is hard
Tremulant1 said:
Thats way over my head lol I wish I knew Linux!
Click to expand...
Click to collapse
just type some stuff and it works
thats what happens for me

mp2ning said:
Checked today for Software Update on my At&t LG G2 D800 and a small 5.59MB update was found. Update didn't install because I am rooted but I grabed the file and uploaded to my Dropbox account in case it can be of use to someone. I am currently on 4.4.2 software KOT49I.D80020c
FOTA file
Click to expand...
Click to collapse
Link not found... please upload again

3z3-8917 said:
Link not found... please upload again
Click to expand...
Click to collapse
Anyone can upload it again?
Thanks.

bigheadlyf said:
Anyone can upload it again?
Thanks.
Click to expand...
Click to collapse
both ota files zipped... and hopefully will remain as long i can.
https://db.tt/kaRWKxvs

Related

[Q] Can't Update!

OK, so I finally got the system update for the D2G yesterday. I'm not new to this whole game, so I removed Clockworkmod, unrooted, and installed the update. The update downloads fine, but the with the little Android guy screen, I get an "!" in a triangle and then the phone reboots.
Maybe I didn't remove clockwork all the way? Don't you delete hijack and logwrapper, and then rename the logwrapper.bin to logwrapper?
well basiclly the phone needs to be untouch in terms of the file structure, in my case, I deleted a few of the stock apk files and when I tried to do the update it would fail because the stock apps were missing and the update is a patch not a full system OS so it cant install the default apps, I had to install them back to the system/app with root explorer and then set the permissions back to what they needed to be, unforchenitly a hard reset would not install the stock apps. Also make sure anything that the root touched has been set back to default
I have the same problem too. I can't get the update to work at all after installing Fission ROM. I even restored from a nandroid from a fresh D2G. It worked fine on the untouched phone tho. I checked all the files in the /system/app and they were there. Is there any magical restore .zip perhaps?
If anyone is looking for the update: http://dump.no/files/2501381a2bd4/Blur_Version.2.4.29.A956.Verizon.en.US.zip MD5: a493e4efc9d27c8932d604806f817a85
evilp8ntballer7 said:
well basiclly the phone needs to be untouch in terms of the file structure, in my case, I deleted a few of the stock apk files and when I tried to do the update it would fail because the stock apps were missing and the update is a patch not a full system OS so it cant install the default apps, I had to install them back to the system/app with root explorer and then set the permissions back to what they needed to be, unforchenitly a hard reset would not install the stock apps. Also make sure anything that the root touched has been set back to default
Click to expand...
Click to collapse
I never touched anything... I stopped using Titanium Backup a long time ago when I uninstalled everything verizon and had the same OTA problem you described. I am at a loss for the problem that I have! All I ever did was root and put on clockwork, and I made sure they were gone when I updated.
Please, someone help!
did you uninstall of freeze any of the stock apps in /system/app? You need to restore them in order to successfully apply the OTA update. One file missing or modified in /system and checksums will fail/update fails.
leobg said:
did you uninstall of freeze any of the stock apps in /system/app? You need to restore them in order to successfully apply the OTA update. One file missing or modified in /system and checksums will fail/update fails.
Click to expand...
Click to collapse
the only time I touched anything in /system was when I removed clockwork by deleting hijack and renaming logwrapper.bin. Can anyone give me a number of files I'm supposed to have in /system, or maybe a way to go back to stock. Man, that SBF would be mighty helpful right now...
There is system dump laying around. I'll PM you the link (not sure if appropriate to post it here). You can use it to compare content and recover missing file(s).
leobg said:
There is system dump laying around. I'll PM you the link (not sure if appropriate to post it here). You can use it to compare content and recover missing file(s).
Click to expand...
Click to collapse
Hi, I've been trying to find an answer, and I think you could help me.
I had the same problem as this person you were helping, but I already knew that I should look through the system dump and compare. I did that, and deleted one file called dbus.conf from /system/ect. Now, my phone just does the DROID animation over and over again! Please help, I made a copy of dbus.conf on my computer and did a nandroid backup. Please, you or someone else on here, HELP!
So you are in a boot loop. If you can't get the phone to boot into clockwork recovery, today is your lucky day! SBF was finally released!!! Get the SBF and reflash /system
leobg said:
So you are in a boot loop. If you can't get the phone to boot into clockwork recovery, today is your lucky day! SBF was finally released!!! Get the SBF and reflash /system
Click to expand...
Click to collapse
Where is it? Isn't it only available to those with some app called TBH (or something like that)? And now I have to wait for a public release? And, if I'm wrong, can you give me a link to thee file? I can't find it anywhere...
Thanks for your help, I really appreciate it!
I would recommend you to approach the team black hat members and talk to them directly about how to get the sbf while your phone is non functional.
Sent from my DROID2 GLOBAL
But where is the system update located? I checked on the verizon website and there is nothing there. Also, do you have to be a verizon customer to get the update?
Sent from my DROID2 GLOBAL using XDA App

[Q] Possible to titanium install all apps at once instead of clicking separately?

By this I don't mean the batch process, that I know. But once you batch, you have to click install and done one by one until all the apps are installed. I jump roms a lot and am wondering if there's anyway to do this all at once without having to click individually?
One of those "restore all apps" batch functions doesn't work for you?
Go pro. Or you cannot use root explorer and Giro were your apparently are installed on your phone copy them and the using your PC put the in the same folder in the rom and then flash. Now they are installed just use titanium to restore the apps data.
Sent from my SGH-I897 using XDA App
Sorry for typos still getting use to swype
Sent from my SGH-I897 using XDA App
did this one get answered? i am doing the same
so if i buy the pro vesion will that let me select/multi-install without accepting the app "install" and "done" every time?
Hit menu>batch and you can restore all.
gazzacbr said:
did this one get answered? i am doing the same
so if i buy the pro vesion will that let me select/multi-install without accepting the app "install" and "done" every time?
Click to expand...
Click to collapse
Yes, you must go pro. I didn't buy the pro version myself, but I've heard from many others that that is the only way to do them all at once without confirming each app.
I can confirm that the pro version will do this. Well worth the money if you ask me.
dtugg said:
I can confirm that the pro version will do this. Well worth the money if you ask me.
Click to expand...
Click to collapse
+1.
TiBU has a feature to create a flashable .zip file for installing the applications. I have yet to try this, but it seems pretty cool.
Tubes6al4v said:
TiBU has a feature to create a flashable .zip file for installing the applications. I have yet to try this, but it seems pretty cool.
Click to expand...
Click to collapse
AFAIK this only refers to a flashable zip of TiB itself (I thought otherwise before, but I tried it)
Still handy to use for restore if your new rom doesn't include TiB and you had to wipe your data and want to restore your g-account etc. first.
ok, thanks guys. the paid version does indeed just install without intervention.
this app is great. well worth the few $ for paid. had the license file in less than 15mins from paying.
good to see that the free version is still available anyway.
the installable zip file would be a great addition.

Resize the system partition?

I am running a stock image on my N5 with root and need to add an apk into the system partition but the problem is that I have only 4mb left on there and the apk does not fit. Is it possible to resize the partitions and:
Still keep your data
and/or
Allow for OTA installations down the road?
Short answer is no. And you certainly can't do it without wiping everything else. Repartitioning Android partitions is not for the faint of heart. It takes a lot of knowledge and can easily brick your device.
Sent from my Nexus 9 using XDA Free mobile app
psychephylax said:
I am running a stock image on my N5 with root and need to add an apk into the system partition but the problem is that I have only 4mb left on there and the apk does not fit. Is it possible to resize the partitions and:
Still keep your data
and/or
Allow for OTA installations down the road?
Click to expand...
Click to collapse
Why don't you just simply delete some unused pre-installed apps from /system?
xnormskix said:
Why don't you just simply delete some unused pre-installed apps from /system?
Click to expand...
Click to collapse
He will need to revert changes in order to run the OTA process.
Sent from my Nexus 5 using Tapatalk
Plus, with a nexus image there really isn't much stuff to delete as there is on a carrier image
Sent from my Nexus 7 using Tapatalk
What i am really trying to do is get the droid circle widget working which should live in priv-app in system. I wonder if I can symlink from the user data partition
psychephylax said:
What i am really trying to do is get the droid circle widget working which should live in priv-app in system. I wonder if I can symlink from the user data partition
Click to expand...
Click to collapse
Stock Google OS comes with a ton of crap on /system that really belongs on /data. You delete all those apps, then download them from the playstore. 300ish MB free on /system.
I wrote a script to do this here, or you could use @vomer CleanRom that gets rid of some crap. My script (from memory) keeps stock keyboard, stock camera, and a stock launcher. Everything else is gone and can be reacquired through the playstore, the way it should have been from the beginning.
If it bothers you, could could use TiBu to back up that app data before you delete them, then restore after playstore install.
Who cares about OTA? Really not of concern.
Thank you for putting me on the right track. What I wound up doing was converting a couple of the apps that are baked into the stock ROM from system to user apps with TiBu. Worked like a charm!
awesome ...
Aerowinder said:
Stock Google OS comes with a ton of crap on /system that really belongs on /data. You delete all those apps, then download them from the playstore. 300ish MB free on /system.
Click to expand...
Click to collapse
Thanks for your awesome and simple script - great idea!
Worked on my Nexus 5, 6 and 7. Boosted free space by 360 MB.
Regards.
Update : your script also worked on my Nexus 6 running Stock Marshmallow Version "mra58r" now that I have 863 MB free on /system.
:: TWRP 2.8.7.1 + ElementalX-N6-3.06 Kernel + SuperSU BETA 2.52
Same issue with CM13
I'm facing low system space when installing CM13.
The ROM installs correctly. However, when I go to flash GAPPS, I get a low system error.
How can I fix this?
Flash back to stock, perform a factory wipe, flash twrp, flash cm and gapps. Hopefully, those fixes the issue.
Aerowinder said:
Stock Google OS comes with a ton of crap on /system that really belongs on /data. You delete all those apps, then download them from the playstore. 300ish MB free on /system.
I wrote a script to do this here, or you could use @vomer CleanRom that gets rid of some crap. My script (from memory) keeps stock keyboard, stock camera, and a stock launcher. Everything else is gone and can be reacquired through the playstore, the way it should have been from the beginning.
If it bothers you, could could use TiBu to back up that app data before you delete them, then restore after playstore install.
Who cares about OTA? Really not of concern.
Click to expand...
Click to collapse
Original link to script above is dead. Any chance we could still get the script, particularly if it would still work okay on Android 6 (Marshmallow) or 7 (Nougat)? Thanks.

Edit TWRP Backup (nandroid)

I was looking for a way to edit a TWRP backup. Basically doing a debloat on it. To where it would just contain my apps and data I installed not all the samsung apps and all the other stuff that does not need to be backed up. I have seen where you can unpack the backup on a computer but I would not know what would be safe to delete. Any thoughts are appreciated. Thanks
Joshwaaa said:
I was looking for a way to edit a TWRP backup. Basically doing a debloat on it. To where it would just contain my apps and data I installed not all the samsung apps and all the other stuff that does not need to be backed up. I have seen where you can unpack the backup on a computer but I would not know what would be safe to delete. Any thoughts are appreciated. Thanks
Click to expand...
Click to collapse
Why not run it and debloat? I have a zip file that will strip it down
You have a program that will debloat a TWRP backup? I am trying to make the size of the TWRP smaller and take out the junk. I know I can wipe the phone and install a new rom then use TiBu to just install the apps and data I want but seems silly to have a 3.5GB file siting on my phone when I only need 500-600MB of it.
Edit: Are you talking about Galaxy Cleaner.zip?
Joshwaaa said:
You have a program that will debloat a TWRP backup? I am trying to make the size of the TWRP smaller and take out the junk. I know I can wipe the phone and install a new rom then use TiBu to just install the apps and data I want but seems silly to have a 3.5GB file siting on my phone when I only need 500-600MB of it.
Edit: Are you talking about Galaxy Cleaner.zip?
Click to expand...
Click to collapse
That and just go in the system and take out whatever you want
Yea but that doesn't reduce the size of my backup sitting on my phone.
Joshwaaa said:
Yea but that doesn't reduce the size of my backup sitting on my phone.
Click to expand...
Click to collapse
Well the backup is the same as whatever you're running. The system it self is huge. Same stuff you pull from a nandroid is the same stuff you're running so decide what you don't want and roll with that. I've opened the tar file and pulled the system. Best thing you can do is zip your backup if you need space
If I want to pay some one to make this program for me where would you suggest I ask. I think it would be a great thing for users with small amounts of storage space.
Joshwaaa said:
If I want to pay some one to make this program for me where would you suggest I ask. I think it would be a great thing for users with small amounts of storage space.
Click to expand...
Click to collapse
Question? When you make you backups do you enable compression?
Soooperstar said:
Question? When you make you backups do you enable compression?
Click to expand...
Click to collapse
No I do not. Also I found a way to edit them.
Joshwaaa said:
No I do not. Also I found a way to edit them.
Click to expand...
Click to collapse
Thats your problem. You can pretty much cut the size in half without editing anything. Backup up and restore time is a little more but not significant. Try it out you can save a lot of space
Sent from my SM-G925P using Tapatalk
I have tried but for the number of times I flash a day I would rather deal with the size than time. I am scared to see what my flash counter is on my phone.
Joshwaaa said:
I have tried but for the number of times I flash a day I would rather deal with the size than time. I am scared to see what my flash counter is on my phone.
Click to expand...
Click to collapse
Lol Gotcha...... I only see maybe an extra 5 mins when flashing a large backup. I have your ROM backed up for a quick boot for Android pay because it seems to work on your rom, thanks BTW for how light it is. So I can flash back and forth pretty quickly.
Soooperstar said:
Lol Gotcha...... I only see maybe an extra 5 mins when flashing a large backup. I have your ROM backed up for a quick boot for Android pay because it seems to work on your rom, thanks BTW for how light it is. So I can flash back and forth pretty quickly.
Click to expand...
Click to collapse
Thanks. Glad you like it. Yea Android pay works for me too, I was happy about that. I think it looks at some framework files as well as root. I have another ROM in the works it's and odexed and even faster than my current ROM. Still having problems to get it to Flash in TWRP by a zip though. It's an OI1 Rom and they changed something that I have not figured out yet.
I carry 3 ROM's on my phone Wicked 3.1 super debloat, Wicked Ram hybrid, and OI1 Super Odex.
Joshwaaa said:
No I do not. Also I found a way to edit them.
Click to expand...
Click to collapse
and the way to edit them is.........?
MindTrix said:
and the way to edit them is.........?
Click to expand...
Click to collapse
Disable md5 when you make the backup as it will not work if you edit it. Then use copy to combine the files then edit with 7zip.

[FAQ] Flashing a custom ROM, Xposed framework, Recovery

Hey guys, I'm rather new to the world of customising Android devices. I just have SO MANY QUESTIONS right now. And I'm sure I'm not the only one, which is why I created this thread to help myself and other people.
Basically, I'll be asking a bunch of questions related to the topic, and this can help other people who are new to all this too.
So, I've got a rooted device. It's on lollipop 5.0, has an unlocked bootloader, TWRP recovery, and Xposed framework.
A few questions to start off with:
1) Can I flash multiple .zip/.img files one after another? Or do I need to always wipe my phone's cache after each flash?
2) Say I wanna update TWRP recovery. Do I have do something before flashing it? CAN I flash a newer version over the previous one?
3) Same question as 2) but for Xposed framework instead.
4) I have Xposed framework installed with some modules running on my phone. Should I disable these modules before updating my Xposed?
5) The latest version of Xposed is v86 as given here: http://forum.xda-developers.com/showthread.php?t=3034811
Can v86 work for lollipop?
6) Similarly, can one download any TWRP version and flash it for their device? Or do each build have a different, specific version of TWRP?
7) Are the latest recovery mods and Xposed frameworks always guaranteed to be stable? Or is it safer to stay on the older ones? Which ones would you recommend?
8) Now, the custom ROMS. What are the necessary things to do before flashing one of these?
9) After flashing a custom ROM, can you flash another on top of it? Or do you have to restore back to your original stock ROM?
10) Does flashing and switching between custom ROMs cause any damage to the phone? Or is there any such potential?
11) Since backing up is a must, I'll ask some about that too. Which would you suggest to be the best backing up method?
12) Does creating a NANDroid backup or a backup from within custom recovery(TWRP in my case) equal to creating a backup of stock ROM?
13) Do I need to copy that backup into PC(to restore later), or will it be safe in my phone's memory after flashing a custom ROM?
I guess that's about it for now. Everyone, please answer if you have done these before. And of course, add your own questions too. This can save a lot of time for a lot of people. I could add more questions in if people request it.
**Answer mentioning the question number for simplicity of searching.
Answers!
1) Can I flash multiple .zip/.img files one after another? Or do I need to always wipe my phone's cache after each flash?
Click to expand...
Click to collapse
You can, but it is more recommended to wipe cache and dalvik cache with each flash.
2) Say I wanna update TWRP recovery. Do I have do something before flashing it? CAN I flash a newer version over the previous one?
Click to expand...
Click to collapse
You'll have to wipe dalvik cache and cache and just flash it normally. It might be stuck at 90% but a force reboot fixes it. It is because you are already in recovery. If it is stuck, leave it for 15 mins and come back. This is just to ensure that it really is stuck.
3) Same question as 2) but for Xposed framework instead.
Click to expand...
Click to collapse
Yep, works, except you wont be stuck.
4) I have Xposed framework installed with some modules running on my phone. Should I disable these modules before updating my Xposed?
Click to expand...
Click to collapse
No need
5) The latest version of Xposed is v86 as given here: http://forum.xda-developers.com/showthread.php?t=3034811
Can v86 work for lollipop?
Click to expand...
Click to collapse
Yup, just flash it via recovery
6) Similarly, can one download any TWRP version and flash it for their device? Or do each build have a different, specific version of TWRP?
Click to expand...
Click to collapse
Each build is different for each device, so for example, I can't flash a TWRP for s7 edge on my s4.
7) Are the latest recovery mods and Xposed frameworks always guaranteed to be stable? Or is it safer to stay on the older ones? Which ones would you recommend?
Click to expand...
Click to collapse
In example, xposed and supersu framework and binary lets you choose if you want a stable file or a test one for developers. TWRP and other stuff have (what I know) different versions and as stated, these versions behave different on different device. During testing with my S4, I found that TWRP 2.8.7.0 is the most stable build for my device.
8) Now, the custom ROMS. What are the necessary things to do before flashing one of these?
Click to expand...
Click to collapse
Make a nandroid backup of your whole device and back it up on you computer. Then wipe everything except your external sdcard and either store it on an sdcard or "adb sideload" it.
9) After flashing a custom ROM, can you flash another on top of it? Or do you have to restore back to your original stock ROM?
Click to expand...
Click to collapse
Not on top of it, you'll have to do as the answer to question 8, make a backup, wipe everything and then flash. No need to go back to stock ROM and then flash it
10) Does flashing and switching between custom ROMs cause any damage to the phone? Or is there any such potential?
Click to expand...
Click to collapse
There is always the risk of bricking but as far as software, it is always revertable. As long as you have a backup of course.
11) Since backing up is a must, I'll ask some about that too. Which would you suggest to be the best backing up method?
Click to expand...
Click to collapse
Nandroid backup is the best one.
12) Does creating a NANDroid backup or a backup from within custom recovery(TWRP in my case) equal to creating a backup of stock ROM?
Click to expand...
Click to collapse
It creates a backup of your current state, lets say, you are in Cyanogenmod 13, making a Nandroid backup will backup everything on cyanogenmod so that if you flash another ROM and still want to go back, you'll have everything restored, including app data and apps.
13) Do I need to copy that backup into PC(to restore later), or will it be safe in my phone's memory after flashing a custom ROM?
Click to expand...
Click to collapse
It will take up a lot of space on your device (since it is a backup of your whole device) so it is recommended to copy it to your computer and remove it from the phone. But, as always, make sure you copy the whole "BACKUPS" folder because the folder inside that folder has your device ID and it is required by TWRP to have the folder the exact ID of your phone to prevent anything bad from happening (bricks).
Hope, I answered all the questions as you wanted and if you have a new question, post it here and I'll reply as soon as possible
Hey, thanks a lot for answering. It helps a lot.
A few other questions I have:
14) So if I were to get CM13, and then create a backup of it, and then get another rom, say ASOP, create a backup of that too, and then switch to yet another rom, say Resurrection Remix, create a backup of that too.
Now, is it possible for me to be able to SWITCH between multiple roms, with ALL my data saved individually on each rom perfectly the way I wanted?(of course, wipe cache and data before restoring the backup)
If so, then I could just keep Nandroids of my favorite roms, can keep switching between them, never having to flash and start from scratch ever again!
Sent from my ASUS_T00J using XDA-Developers mobile app
15) Since I don't have otg cable, nor an sd card reader, I'm gonna have to keep the nandroid on my sd. Which means a lot of space is needed.
Can this workaround be possible:
- I use TWRP to backup only system and boot data. I save this on sd card.
- I use Titanium backup to save only user app and data. I save this on PC.
So now, when my device crashes while flashing something, I can restore backup from TWRP(do I clear cache and data before this as well?), and once my system rom is back, I can copy titanium backup via USB and restore it.
Sent from my ASUS_T00J using XDA-Developers mobile app
16) Suppose I flashed CM13, and it's really buggy. Can I switch back to the previous rom whose nandroid I had just by restoring it? Is it really that simple?
Sent from my ASUS_T00J using XDA-Developers mobile app
ShinraTensei04 said:
Hey, thanks a lot for answering. It helps a lot.
A few other questions I have:
14) So if I were to get CM13, and then create a backup of it, and then get another rom, say ASOP, create a backup of that too, and then switch to yet another rom, say Resurrection Remix, create a backup of that too.
Now, is it possible for me to be able to SWITCH between multiple roms, with ALL my data saved individually on each rom perfectly the way I wanted?(of course, wipe cache and data before restoring the backup)
If so, then I could just keep Nandroids of my favorite roms, can keep switching between them, never having to flash and start from scratch ever again!
Sent from my ASUS_T00J using XDA-Developers mobile app
Click to expand...
Click to collapse
14) You can, but you would need tons of space.
Sent using a ks01lte (gt-i9506) running cm 13
---------- Post added at 05:59 AM ---------- Previous post was at 05:56 AM ----------
ShinraTensei04 said:
15) Since I don't have otg cable, nor an sd card reader, I'm gonna have to keep the nandroid on my sd. Which means a lot of space is needed.
Can this workaround be possible:
- I use TWRP to backup only system and boot data. I save this on sd card.
- I use Titanium backup to save only user app and data. I save this on PC.
So now, when my device crashes while flashing something, I can restore backup from TWRP(do I clear cache and data before this as well?), and once my system rom is back, I can copy titanium backup via USB and restore it.
Sent from my ASUS_T00J using XDA-Developers mobile app
Click to expand...
Click to collapse
You do not have to have an sdcard reader to view your sdcard on your PC. You know how when you make a backup it is stored in /sdcard/TWRP/BACKUPS/CERIALNM/nameofbackup? Well, connect your phone to your pc and move the "backups" folder, then, when you need to restore it, add it to the twrp folder and restore it.
Sent using a ks01lte (gt-i9506) running cm 13
---------- Post added at 06:01 AM ---------- Previous post was at 05:59 AM ----------
ShinraTensei04 said:
15) Since I don't have otg cable, nor an sd card reader, I'm gonna have to keep the nandroid on my sd. Which means a lot of space is needed.
Can this workaround be possible:
- I use TWRP to backup only system and boot data. I save this on sd card.
- I use Titanium backup to save only user app and data. I save this on PC.
So now, when my device crashes while flashing something, I can restore backup from TWRP(do I clear cache and data before this as well?), and once my system rom is back, I can copy titanium backup via USB and restore it.
Sent from my ASUS_T00J using XDA-Developers mobile app
Click to expand...
Click to collapse
Also, on the titanium backup part, not a bad idea... You can then copy the data and system or boot to your pc and bam.
Sent using a ks01lte (gt-i9506) running cm 13
What I meant was: Let's say I bricked my phone. Now, according to you, I place backup on pc. Okay. But now, how do I place this backup onto the sd on my phone when my pc can't even detect the phone(cuz it's dead yo). Doesn't this impose on me to keep the backup in sd(as I don't have reader or otg).
About the titanium, so you're saying I can do that? Backup only user apps+data and restore after restoring only system+boot.
Another question:
16) Can the backup of user apps+data made on, say, 'X' rom, be restored on 'Y' rom via titanium, on condition they are same Android version(suppose 5.0), without ANY chance of incompatibility. More importantly, can it have any chances of leading to a brick/bootloop.
* I read somewhere that if you backed up system apps of 'X' rom, then changed to 'Y' rom, and restored the system apps of 'X' rom onto 'Y' rom, it bricks the phone.(which is why I ask this question)
17) "Backing up 'system' in TWRP is completely different from backing up 'system' on titanium. This is because TWRP backs up entire system with system apps, while titanium only backs up the apps." This is true, right?
Sent from my ASUS_T00J using XDA-Developers mobile app
ShinraTensei04 said:
What I meant was: Let's say I bricked my phone. Now, according to you, I place backup on pc. Okay. But now, how do I place this backup onto the sd on my phone when my pc can't even detect the phone(cuz it's dead yo). Doesn't this impose on me to keep the backup in sd(as I don't have reader or otg).
About the titanium, so you're saying I can do that? Backup only user apps+data and restore after restoring only system+boot.
Another question:
16) Can the backup of user apps+data made on, say, 'X' rom, be restored on 'Y' rom via titanium, on condition they are same Android version(suppose 5.0), without ANY chance of incompatibility. More importantly, can it have any chances of leading to a brick/bootloop.
* I read somewhere that if you backed up system apps of 'X' rom, then changed to 'Y' rom, and restored the system apps of 'X' rom onto 'Y' rom, it bricks the phone.(which is why I ask this question)
17) "Backing up 'system' in TWRP is completely different from backing up 'system' on titanium. This is because TWRP backs up entire system with system apps, while titanium only backs up the apps." This is true, right?
Sent from my ASUS_T00J using XDA-Developers mobile app
Click to expand...
Click to collapse
You adb sideload a functioning ROM and once you boot you copy the backup you can flash it via twrp. As for the second question, I have not tested it but it sounds possible.
16) You should not be in a bootloop if you backup like that, the fact that it is even the same android version is making it more likely to work and what I know, you can even switch the backup via phones. I don't use titanium because I always do nandroid backups.
17) Yup, that's true, twrp sees "system as the partition system while titanium sees it as the whole phones software, hence why it is called " system".
Thanks for asking these question and hopefully some day, you can teach others.
RAZERZDAHACKER said:
You adb sideload a functioning ROM and once you boot you copy the backup you can flash it via twrp. As for the second question, I have not tested it but it sounds possible.
16) You should not be in a bootloop if you backup like that, the fact that it is even the same android version is making it more likely to work and what I know, you can even switch the backup via phones. I don't use titanium because I always do nandroid backups.
17) Yup, that's true, twrp sees "system as the partition system while titanium sees it as the whole phones software, hence why it is called " system".
Thanks for asking these question and hopefully some day, you can teach others.
Click to expand...
Click to collapse
Hm... so whenever I brick my phone, I MUST adb sideload to a working rom first, and only then restore the backup I made? Even if I already have a backup saved onto the sd card of my bricked phone? Can I not restore that via TWRP instead? I ask this because if I were to adb sideload first, I'd lose root, unlocked bootloader, and yes, TWRP. So, I'd have to get ALL that done again, and only then restore my backup.
18) Does restoring a backup I made(when I had root access, unlocked BL, custom recovery, xposed) RETAIN all that? Meaning after I restore to that backup, I will still have all that.
Thanks for answering, I'm learning quite a bit. And yeah, I'll make sure to help others with this information too.
ShinraTensei04 said:
Hm... so whenever I brick my phone, I MUST adb sideload to a working rom first, and only then restore the backup I made? Even if I already have a backup saved onto the sd card of my bricked phone? Can I not restore that via TWRP instead? I ask this because if I were to adb sideload first, I'd lose root, unlocked bootloader, and yes, TWRP. So, I'd have to get ALL that done again, and only then restore my backup.
Click to expand...
Click to collapse
You won't lose TWRP or unlocked bootloader, but I will try today by making backup of "cache" and flash it via my sdcard as soon as possible.
18) Does restoring a backup I made(when I had root access, unlocked BL, custom recovery, xposed) RETAIN all that? Meaning after I restore to that backup, I will still have all that.
Click to expand...
Click to collapse
Yup, it makes a backup of every little part of the system (if you include cache and dalvik, I don't, but some do).
Thanks for answering, I'm learning quite a bit. And yeah, I'll make sure to help others with this information too.
Click to expand...
Click to collapse
Okay, made a backup of "cache and the flashing went fine, my hypothesis is that you have to make the backup on the sdcard and not on the phone and move it to the sdcard.
RAZERZDAHACKER said:
You won't lose TWRP or unlocked bootloader, but I will try today by making backup of "cache" and flash it via my sdcard as soon as possible.
Click to expand...
Click to collapse
Actually, when you adb sideload, you need to flash stock fastboot and recovery .img files(at least for my phone), and the bootloader does in fact get locked again, along with losing root. I know cuz I already have done adb sideloading before. So, doesn't that make flashing backup via sd card and TWRP without sideload the only thing I can do? I'm just trying to keep a backup without losing root, unlocked BL, TWRP, even if I gotta give up some space... Just wanna make sure it's safe to do it like that.
RAZERZDAHACKER said:
Yup, it makes a backup of every little part of the system (if you include cache and dalvik, I don't, but some do).
Click to expand...
Click to collapse
I only have "System(1125 mb)", "Data(3480 mb)", and "Cache(0 mb)" listed in TWRP. My cache is 0 mb.... nothing to backup on there?
19) Do I have to unlink my linked apps before creating a Nandroid, or will creating one while linked allow me to retain the link even after wiping data and then restoring the Nandroid?
ShinraTensei04 said:
Actually, when you adb sideload, you need to flash stock fastboot and recovery .img files(at least for my phone), and the bootloader does in fact get locked again, along with losing root. I know cuz I already have done adb sideloading before. So, doesn't that make flashing backup via sd card and TWRP without sideload the only thing I can do? I'm just trying to keep a backup without losing root, unlocked BL, TWRP, even if I gotta give up some space... Just wanna make sure it's safe to do it like that.
Click to expand...
Click to collapse
You wont lose anything during a complete nandroid backup, and, apparently, some devices loose stuff during adb sideload.
I only have "System(1125 mb)", "Data(3480 mb)", and "Cache(0 mb)" listed in TWRP. My cache is 0 mb.... nothing to backup on there?
Click to expand...
Click to collapse
Nothing....... Yet.
19) Do I have to unlink my linked apps before creating a Nandroid, or will creating one while linked allow me to retain the link even after wiping data and then restoring the Nandroid?
Click to expand...
Click to collapse
Unlink? What do you mean? (Not quoting Justin Bieber)
RAZERZDAHACKER said:
Unlink? What do you mean? (Not quoting Justin Bieber)
Click to expand...
Click to collapse
There's this thing you can do where you move your apps from internal storage to sd card COMPLETElY, thereby saving a lot of space on internal memory. It works because a 'link' is created between the app+data(now in sd) back to it's internal location counterpart(where it would have been otherwise). This way, the apps and system think your apps are in internal, but in fact are in sd(you can see that more internal is free by checking space used up via any file manager though).
In order to do this, a second partition on the sd card is to be made with an ext2/ext4 format, and use a linking app( like Apps2sd).
ShinraTensei04 said:
There's this thing you can do where you move your apps from internal storage to sd card COMPLETElY, thereby saving a lot of space on internal memory. It works because a 'link' is created between the app+data(now in sd) back to it's internal location counterpart(where it would have been otherwise). This way, the apps and system think your apps are in internal, but in fact are in sd(you can see that more internal is free by checking space used up via any file manager though).
In order to do this, a second partition on the sd card is to be made with an ext2/ext4 format, and use a linking app( like Apps2sd).
Click to expand...
Click to collapse
Yea I've used one of those, I first thought the app used the "MV" Unix command but yea you need a sec. Partition to do that on the sdcard, but you don't have to do that on your nandroid backup.
RAZERZDAHACKER said:
Yea I've used one of those, I first thought the app used the "MV" Unix command but yea you need a sec. Partition to do that on the sdcard, but you don't have to do that on your nandroid backup.
Click to expand...
Click to collapse
So can I backup linked apps with their links' data saved, so when I install the linking app again, they can be relinked automatically?
Sent from my ASUS_T00J using XDA-Developers mobile app
Thanks for those questions and answers. I posted this before but appearantly in the wrong place. It seems to be quite right here. Thanks to helping people!
Hi XDA experts
I am newly registered in the forum, but experienced in modding (more or less). But I am (for now) strictly a user, not developer.
So far I got along very well, with my beloved Galaxy S4 jfltexx. I got from stock to rooted stock, from there to cm, instantly back to stock, used it for a long time and am just now on cm13 nightly, which is truly awesome!
It is so awesome that I would really like to help other people out, even if they have no idea about this. Meaning I wish to modify other peoples phones for them. However, when it comes to other peoples property I can't really fight my way through technical terms I don't understand anymore, hoping that the outcome will be as I wished. I pretty much know what most of all these technical terms mean, but I don't always understand how they are related to each other. I know, explaining this will take a while, but I would REALLY appreciate it if someone would take the time...
1) The bootloader, can it be replaced? What would be the purpose of that? UNLOCKING does not mean REPLACING, does it??
What do custom ROMs typically consist of? An entire working system? Parts of a working system? Sometimes this sometimes that?
I'm asking the question because I got the impression that some custom ROMs require the user to have a certain (usually stock) ROM in order to flash it. For example, if I had a Galaxy S6 edge running 5.1.1, could I upgrade to noble ROM Marshmallow?
I also have the feeling that the ROM or system or whatever is somewhat seperate from the kernel. What is this relation? Do custom ROMs not always come with a compatible kernel? Is there only one kernel compatible to the rest of the system, or is there a chance to run a system with a kernel not particularly designed for it? How to get a 'wrong' kernel?
Where to get stock ROMs and who provides them? If I wanted to upgrade from Lollipop to Marshmallow, but am rooted and don't get OTA updates, what do I do? Assuming that Nandroids are bound to a single device (e.g. MY phone) who can provide a stock ROM that runs on my device and how does he get it?
Can I run pure Android on any phone, or is it (always?) necessary to adjust it? I understand that my hardware buttons of the S4 would probably not work on pure Android, but the rest?
Is there ANY phone SOLD with open bootloader and root? A phone that actually wants its users to play with the system?
Thanks guys
NoBullsh1t said:
Thanks for those questions and answers. I posted this before but appearantly in the wrong place. It seems to be quite right here. Thanks to helping people!
Click to expand...
Click to collapse
It happnes alot that people post in wrong section
Hi XDA experts
I am newly registered in the forum, but experienced in modding (more or less). But I am (for now) strictly a user, not developer.
So far I got along very well, with my beloved Galaxy S4 jfltexx. I got from stock to rooted stock, from there to cm, instantly back to stock, used it for a long time and am just now on cm13 nightly, which is truly awesome!
Click to expand...
Click to collapse
Yup, kinda same, excpet im ks01lte but I moved from stock to rooted stock (5.1.1) then cm13, then stock + xposed 4.4.2 then cm11 and now back to cm13 nightly
It is so awesome that I would really like to help other people out, even if they have no idea about this. Meaning I wish to modify other peoples phones for them. However, when it comes to other peoples property I can't really fight my way through technical terms I don't understand anymore, hoping that the outcome will be as I wished. I pretty much know what most of all these technical terms mean, but I don't always understand how they are related to each other. I know, explaining this will take a while, but I would REALLY appreciate it if someone would take the time...
Click to expand...
Click to collapse
1) The bootloader, can it be replaced? What would be the purpose of that? UNLOCKING does not mean REPLACING, does it??
Click to expand...
Click to collapse
The bootloader can be replace, however, if you fail here, there is no comming back (you'll need a complete board replacement because the bootloader acts as a BIOS), the purpose of replacing it is various reasons, change of splash screen during boot etc. Some bootloaders are locked to only be able to flash certain ROMs (OEMs do this to not allow people to tinker with their devices) but it is nearly always un-lockable (except for some devices, I own an Acer tablet that has a locked bootloader that cant be un-locked) and no, unlocking it does not mean changing it.
What do custom ROMs typically consist of? An entire working system? Parts of a working system? Sometimes this sometimes that?
Click to expand...
Click to collapse
Yea, sometimes this sometimes that, in example, ported marshamllow touchwiz ROMs rely on some files in the stock ROM so the "update" doesn't take up much space.
I'm asking the question because I got the impression that some custom ROMs require the user to have a certain (usually stock) ROM in order to flash it. For example, if I had a Galaxy S6 edge running 5.1.1, could I upgrade to noble ROM Marshmallow?
Click to expand...
Click to collapse
That is because of the bootloader (again lol), from my experience with the s4, before flashing cm13, I had to go to 5.1.1 because of the bootloader was changed during the OTA, so as stated before, it only allowed a certain type of ROMs to be flashed.
I also have the feeling that the ROM or system or whatever is somewhat seperate from the kernel. What is this relation? Do custom ROMs not always come with a compatible kernel? Is there only one kernel compatible to the rest of the system, or is there a chance to run a system with a kernel not particularly designed for it? How to get a 'wrong' kernel?
Click to expand...
Click to collapse
The kernel tells the system what to do, some kernels are specified for battery optimization, so the kernel tells the cpu to slow down and save juice, while some other kernels offer the ability to overclock the device (mostly used on older devices to make it faster, but it drains more juice and can result into app crashing), the kernel, is not separated from the system, in fact, you can't even compile a ROM without a kernel. There is not only one kernel for lets say cm, you can flash another kernel, just make sure it is compatible with your android version. To get a wrong kernel, flash one that isn't for your device or android version.
Where to get stock ROMs and who provides them? If I wanted to upgrade from Lollipop to Marshmallow, but am rooted and don't get OTA updates, what do I do? Assuming that Nandroids are bound to a single device (e.g. MY phone) who can provide a stock ROM that runs on my device and how does he get it?
Click to expand...
Click to collapse
Your OEM provides them, samsung has a website called sammobile and uploads all the stock ROMs there. If you want to upgrade, just flash it via recovery or in your case, odin (for samsung phones). To give your backup to someone else, the other person must have the exact same phones, in example, you (jfltexx) can't give it to me (ks01lte), I must have jfltexx and then (assuming you did the backup on twrp) I'd have to change the serial number to my device.
Can I run pure Android on any phone, or is it (always?) necessary to adjust it? I understand that my hardware buttons of the S4 would probably not work on pure Android, but the rest?
Click to expand...
Click to collapse
Your hardware buttons will work on pure android (aosp), I don't see why not, you said you are running cm13, that is altered pure android and it works fine, see pure android as cm withou all the features.
Is there ANY phone SOLD with open bootloader and root? A phone that actually wants its users to play with the system?
Thanks guys
Click to expand...
Click to collapse
There are a few devices like that, one plus was a company that wanted to do that, it came with root, unlocked bootloader and cyanogenmod running, they separated unfortunatly and evolved to using "oxygen os" and does nor provide a un-locked bootloader but provides a simple tool to root and unlock. I don't know any companies that have unlocket bootloaders because they don't want the average consumer to mess up their device and blame it on the OEM.
"Can I run pure Android on any phone, or is it (always?) necessary to adjust it? I understand that my hardware buttons of the S4 would probably not work on pure Android, but the rest?
Your hardware buttons will work on pure android (aosp), I don't see why not, you said you are running cm13, that is altered pure android and it works fine, see pure android as cm withou all the features."
I mean is there like a website from google where I can dowoad a non device specific aosp and flash that to my S4 to make it run? Wouldn't there be for example drivers missing? Isn't that what I have to be greateful to Cyanogenmod for, making up to date android compatible with older devices?
---------- Post added at 07:49 PM ---------- Previous post was at 07:42 PM ----------
So I can actually make a jfltexx Nandroid and install it on another jfltexx by easily changing the serial number???
NoBullsh1t said:
"Can I run pure Android on any phone, or is it (always?) necessary to adjust it? I understand that my hardware buttons of the S4 would probably not work on pure Android, but the rest?
Your hardware buttons will work on pure android (aosp), I don't see why not, you said you are running cm13, that is altered pure android and it works fine, see pure android as cm withou all the features."
I mean is there like a website from google where I can dowoad a non device specific aosp and flash that to my S4 to make it run? Wouldn't there be for example drivers missing? Isn't that what I have to be greateful to Cyanogenmod for, making up to date android compatible with older devices?
Click to expand...
Click to collapse
Yes, be greatful, it is free, open source and full of active devs and memebers. I'm still not sure what you mean, do you mean on-screen navigation bar? Because you can change that in cyanogenmod settings.
---------- Post added at 07:49 PM ---------- Previous post was at 07:42 PM ----------
So I can actually make a jfltexx Nandroid and install it on another jfltexx by easily changing the serial number???
Click to expand...
Click to collapse
Yea, you know how your backup is located in /sdcard/TWRP/BACKUPS/SERIALNO? The device you want to flash it to should make a backup of the tiniest partition (usually cache, it's 5mb) and youll get acces to the serial number, then you just swap it and delete the tiniest partition.

Categories

Resources