Skip to main content

Galaxy S5 Lollipop Update Issue

Disclaimer: getting anything wrong with flashing might brick your device - this is not a manual. I am not responsible for any damage to your phone or data... 

--

So I finally checked the software update availability on my Samsung Galaxy S5, and guess what - the Android 5.0 update was available. Finally. I cleared up some space on my phone (it claims that it needs 3 GB of free space for the installation) and started the update. It is a big image (1.4 GB), so it takes a while to download, then the phone shuts down, restarts, and starts to install. I started wondering when the installation process started at 25%, went down to 1, up to 20, 30% and then - "error". Phone restarts, everything OK except for the fact that I still have KitKat on my phone.

Tried again. Same result. Tried again. Same result. Googled it. No results. Nobody seemed to run into that same error. There was indeed an error message after the phone restarted successfully - "Try it again, try Kies or go to a service center" (I paraphrased). Service center? Nope, no time, plus I got the phone in Germany and I wont be in Germany for quite some time.

So I tried Kies. Downloaded the software, started the firmware upgrade - download interrupted at some point. Tried again. Tried again. Tried again - it started the installation process on the phone, finally. But it stopped at about 80%, complaining about the size of the image.

Again, no real help on Google. I read something about that you could run into trouble if you made modifications to the ROM - my phone is NOT (yet) rooted, everything as I got it, I updated everything there was to update.

Kies suggested an emergency recovery. I tried that. It stopped at like 80%, leaving me with a phone I couldn't even get into recovery mode. Kies suggested emergency initialization - meaning that all data would be lost. Nah, I wasn't that desperate yet - download mode was still working!

After some thinking I decided to flash that thing myself. I got Odin and the current firmware (I decided to go for 5.0 right away) from SamMobile (I checked the exact version of my phone under the battery pack and selected "Germany" as a country), unzipped the file, and started flashing. Some minutes later the installation completed, the apps were updated and my phone back to business. No loss of data.

Thank you, Samsung, for nothing. The only reason I could think of that might have caused this issue is the regional differences. I am using the phone with a foreign SIM card, in a foreign country - probably a wrong ROM was selected by the general Samsung update process. Somewhat embarrassing...

--

TL, DR:
If you run into update issues with your Galaxy S5, consider flashing with Odin right away. Might save you some time and energy.

Comments

Popular posts from this blog

Joomla! 2.5: Multiple views, one model

Here goes MVC again: I was a bit confused that every time I created a second or third view for a component, I had to create a separate model for it. Did not make sense to me - I had the necessary algorithms in the model for the first view, did I really need to do copy & paste? I hate it! Redundancy, redundancy, redundancy. That case occurred in my current project - I created user profiles and needed an "edit" view. The data is the same, but I need to have the data in editable text fields instead of fixed labels, and maybe some other buttons here and there...  Well, some time later I realized that I just did not quite understand what Joomla! acutally means by "view".  And that there is something called "layout". Long story short: If you have a model that provides all necessary information and you just want to have a different presentation of it, just add a new .php file to your views/<yourviewname>/tmpl folder - let's call it "layo...

Joomla / Eclipse: Use Eclipse to edit files

Even though I could use any Editor or Notepad, after some days of Joomla! I was yearning for some syntax highlighting and maybe even automatic code completion... I did some Java programming in the past, and I am really used to the Eclipse IDE. Eclipse IDE for JavaScript Web Developers seemed to be a good deal for what I was up to do, so I gave it a try. I feel kind of stupid even posting about this, but upon starting up Eclipse, I started to wonder how I would do that - being that Eclipse works with projects, and I didn't want to put all of my components into an Eclipse workspace, and I didn't want to put up a subversioning system. Turns out it is quite simple: Right-click somewhere in the package explorer,  select 'New', 'Project...'. In the dialog, open the folder 'General' and select 'Project'. Click 'Next'. For the name, I usually put the com_componentname / mod_modulename, as in my file system. But I don't think it matters....

Joomla! 2.5: Component as Article

Can you put a component on a page together with other articles? Like, for example, to have a component and a blog layout on the "Home" page? Yes, you can! There are some nice extensions that allow for this. I used the "Plugin Include Component" plugin, which is available on extensions.joomla.org . With this plugin, you simply create an article that contains a special tag, indicating the component to include. Just like this: Install the plugin and put the following code in whatever article you need it in (substitute 'componentName' and 'viewname' for your component's and view's name...). {component url='index.php?option=com_ componentName &view= viewname '}