PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Android > General Android Discussion

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-01-2010, 11:06 PM
OMJ's Avatar
OMJ
Retired Staff
Offline
Pocket PC: Sprint HTC 10!!!!!
Carrier: Sprint
Location: MN
 
Join Date: Jun 2007
Posts: 4,767
Reputation: 20305
OMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation level
Mentioned: 11 Post(s)
Tagged: 0 Thread(s)
Android 101

I stole this from XDA, so credits to seraph1024 for this nice writeup. Original thread HERE. Some good basic info...

Another useful site...

http://android-dls.com/wiki/index.php?title=ADB


Here's another good thread for Android ROM cooking:

http://htcpedia.com/forum/showthread.php?t=1404


The purpose of this document is to clarify a few basics about HTC Android Phones and basic commands to interface with the phones. Think of this as a beginner's guides to the Android device from a non-traditional user's point of view. I'll keep it simple and plain as much as I can for the new users. I'll also try to keep all the technical aspects true as much as I can while keeping it simple.

Before you go on, please read this and understand the basic concepts and how and why following commands are being used. Do not follow anyone's instructions/tutorials/guides without prior basic understanding of what each command do. I do want to believe it's humans visiting this forum and not lemmings. If you do not understand, feel free to ask here. I will or someone else also knowledgeable will answer your questions. DO NOT QUOTE THIS AS A WHOLE. My pet peeves and a complete waste of screen space.

Sometime, depending on your OS, command names may change (e.g: mouse / mouse.exe / mouse-linux / mouse-mac). For general purpose, we'll use mouse instead of an OS specific commands in this instructions.

So to repeat myself, if you understood the concepts of the commands, and you are on a linux system and someone's guide says touch index.php, you will automatically type touch-linux or whatever the name of your executable is on your system.

We shall assume you know how to install needed drivers and where to get android sdk and put the sdk binaries (executables) in the system path. If we need to expend this let me know and I'll expend this here.

Further, if I get any parts wrong, PM me and I'll get those parts corrected.

Android Partition, SPL etc.

Partitions:
Followings are a list of partitions on your android phone.

misc - misc partition -
recovery - Recovery Partition - This is where the original HTC recovery or Amon Ra's recovery or any other Recovery would go. Basically if you reboot into recovery it'll boot from here.
boot - This is your boot partition
system - This is where all your system information (ROM resides)
cache - cache (When you factory reset the phone, this area is wiped)
userdata - user data (like your login, your user settings etc) When you factory reset the phone, this area is wiped)

So, if you replace the recovery image, you are pretty much set for updates provided here at XDA. Note: By replacing your recovery image, you may not be able to have OTA updates.

ROM images will normally replace boot and system images at the same time and often time, userdata and cache too; reseting the phone completely.


SPL/Bootloader/Radio/Bricking Phones:
SPL / Bootloader is like BIOS on a computer. At least I think of it that way. SPL can be updated! SPL comes as either Security-On of Security-Off (S-ON/S-OFF).

Note: It is my understanding that radio will boot first, followed by other systems. So it is IMPORTANT that your radio image/version will work with your SPL image/version. This is the one and only reason for phones being bricked. You can not brick your phone by flashing a ROM or Boot image or recovery image. Once you flash the wrong radio for the SPL, the only known method of recovery is to send the phone back into HTC for repair.

How do I know the phone is bricked? A bricked phone can not boot into bootloader, recovery, or into normal operation modes. You can not connect to a bricked phone via adb or fastboot. You can only see one screen on the phone and it will be the first splash screen.


Commands:

adb - Android Debug Bridge - One of the two things you'll need to know if you ever want to do anything non-conventional on your android based phone.
List of commands that can be used by adb can be prompted by typing adb at the system shell (command prompt or terminal)

Notable adb commands:

adb devices - If you don't know anything, this is the ONE thing you have to know.
adb devices will give you a list of devices connected to the computer. This is also a good way to make sure that your phone is actually connected to the computer.

adb reboot (bootloader|recovery)
adb reboot - this will reboot your phone normally.
adb reboot bootloader - this will reboot your phone back into the bootloader (white screen with the android on wheels)
adb reboot recovery - this will reboot your phone back into recovery console (either default or amon_ra's recovery).
adb shell - this will shell into the phone and you can now explore the phone. Remember phone's native backend os is linux so know your linux commands.
adb remount - remounts the system partition on the phone so you can you read/write to it.
adb push xxx yyy - will push xxx file from computer into yyy location/file on phone (needs rooted access)
adb pull xxx yyy - will pull xxx file from phone into yyy location/file on computer (needs rooted access)


Fastboot is protocol used to update the flash filesystem in Android devices from a host over USB. It allows flashing of unsigned partition images.

Notable fastboot commands:

fastboot devices - If you don't know anything, this is the ONE thing you have to know.
fastboot devices will give you a list of devices connected to the computer. This is also a good way to make sure that your phone is actually connected to the computer.

fastboot reboot - this will reboot your phone normally
fastboot oem unlock - this will unlock your bootloader - NOTE THIS WILL VOID YOUR NEXUS ONE WARRANTY
fastboot erase XXX - Will erase the partition XXX (such as userdata, cache) - mainly used for resetting phone and clearing userdata / factory settings.
fastboot flash XXX YYY - This will flash XXX partitionn with YYY image.
e.g: fastboot flash system system_update.img will flash/update your system partition with an image called system_update

If anyone needs me to dig deep into using anything else, please PM me. I'll add it on here. Hopefully this will help all newbies about the basic commands and what they do.

FAQs (UPDATED Feb 09, 2010)
Q: One question about the Android SDK. Do I need it to flash my N1 or just to program new apps? Where can I get it?
A: Android SDK is not entirely needed to flash the N1. However, there are tools in there that you need. Adb / Fastboot etc. Although they can be downloaded by themselves, the windows version of the SDK also have the Drivers that are needed for android devices for USB connection. So, it is recommended to get it. You can get it from developer.android.com

Q:I have never experienced anything like this when I did a hard-spl on my winmo phone. Radio versions are included with SPL's, right?
A: Official packages from HTC did come with nbh packaging, meaning it is a all in one upgrader that will update Radio, ROM, System etc, it is very much common for active development area here at XDA to get the radio or SPL or ROM separately and independently of one another. And as such, you will most likely flash them seperately (who wants to wait 6-8 months). Also, since this phone is released by google, HTC will most likely not update any major Radios. However, it is very likely that we will be hacking in Radio updates or any other "updates" from HTC from their new device - HTC Bravo.

Q: Is there a guide for snow leopard? I'm kind of stuck.
A: I personally ran android SDK and aforementioned executable on both MAC OS 10.5 and 10.6. Like I posted, the commands and the executable names may be slightly different. I may call adb and you may find it as adb-mac. I am not going to write 3 separate documents for 3 separate OSes. You have to know that adb=adb-mac (on your mac), adb-linux (for linux) etc. And yes the above guide will work universally.

Q: Can i replace the splash image..?? (unlocking related)
A: As of the above date (next to the FAQ) no you can not. Issue is probably a few folds. One of them is that splash1.img is not going in due to security lock. Remember, you unlocked the phone. HTC will not like it. Anyhow, I like the current quad color X. If you are thinking of getting rid of the lock logo, good luck. Even if you can get rid of it, you will still have to overcome the pink text that says ***UNLOCKED*** on your bootloader.

Q: Can you run Windows Mobile on Android Phones?
A: With enough resources given, sure. Will it ever happen? No. Why? Windows mobile compiler and builder cost $. As a matter of fact, as of version 5, it was going to cost me $75 per device. That's one of the reasons why handset makers went to Android open platform. Android is free and universal so as long as you use certain chipsets and certain items, you are good to go. Can it ever be ported? Sure. With right amount of time and money anything can be done. But at this point, it's cheaper for you to go buy a windows mobile smartphone.

Q: How do I know the phone is bricked?
A: You can not brick a phone unless you are flashing Radio/SPL packages. Make sure if you are doing that, you follow directions VERY CAREFULLY. A bricked phone can not boot into bootloader, recovery, or into normal operation modes. You can not connect to a bricked phone via adb or fastboot. You can only see one screen on the phone and it will be the first splash screen.

Q: I have installed the Android SDK however, i cannot seem to get the laptop to detect the nexus. What have i left out?
A: Most common item that people forget to enable is USB Debugging. Settings => Applications => Development => USB debugging [checked]

Q: I have rooted n1. when I go to recovery to do backup, I get the triangle with the little green android guy, but phone is stuck there. I have to remove battery to reboot phone. What have I done wrong?
A: You still have the stock (shipping) recovery. If you want a different recovery (Amon RA's), download it, the from fastboot, run fastboot flash recovery downloaded_recovery.img

Q: Which step of the rooting / recovery procedure does it give root?
A: Root and Recovery are two totally different things. Recovery is a partition that contain recovery information. Stock recovery is what allows OTA updates etc. Normally it will search for update.zip in the root folder of the SD card. Amon_RA's Recovery or any other recovery images are there to enhance the traditional stock recovery. Amon Ra's Recovery for example, contains thing such as ability to update from different zip files, and backup/restore of your data/system.
Rooting is not done by recovery but is a kernel level access (simply put) that will give root or "SU". It is done by patching the boot partition of the your android device.

Q: What are the differences, advantages, disadvantages of the different ROM's?
A: They are all different. Some have some features, some are plain stock, some are made for bleeding edge kernel etc. You'll have to try them out and figure out yourself. I may make a chart of what they are (see the bottom at my signature - wiki) but with too many android devices, I will need some major help. One person alone will not have total knowledge of all the ROM releases. There are just way too many devices and ROMs.

Q: Which ROM will allow OTA updates?
A: Stock ROM WITH Stock Recovery.

Q: If the phone is SIM/carrier unlocked and you root do you have to SIM unlock again?
A: SIM/Carrier unlock has nothing to do with rooting your phone. You can still have root and still be carrier locked. Nexus One comes carrier unlocked from factory.

Q: How much space is there for apps? is using the sd card really necessary? (on Nexus One)
A: Search google? The phone has 512MB or space. That SHOULD be more than enough for you. If not, you have some serious issues. I do not believe you will not App2SD for Nexus One. Google did say during the release conference that they will update Android/N1 so that apps can be run/installed to SD but that requires some system and security changes (mainly to prevent pirated software - Yes if I write something, I deserve to get paid for it).

Q: When you do "flash zip from sdcard" or "fastboot flash image" does this merge and overwrite the files in to the partition?
A: When you update a software (via recovery), software my be merged. However, if you fastboot flash, just like the word flash says, it will flash and overwrite the partition.

Q: Which partition does "flash zip from sdcard" affect?
A: Depends on what you are flashing. It could be any or all of the partitions such as SPL, Boot, System, Recovery, Radio. You should study first before randomly flashing things.
__________________

Last edited by OMJ; 06-02-2010 at 10:29 PM.
Reply With Quote
This post has been thanked 16 times.
  #2 (permalink)  
Old 06-01-2010, 11:12 PM
Meanee's Avatar
Regular 'Geeker
Offline
Pocket PC: Dumbphone - Vogue - Touch Pro - Touch Pro 2 - Evo
Carrier: Sprint
 
Join Date: Mar 2008
Posts: 332
Reputation: 380
Meanee is becoming a PPCGeeks regularMeanee is becoming a PPCGeeks regularMeanee is becoming a PPCGeeks regularMeanee is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

Great writeup. Many thanks!
Reply With Quote
  #3 (permalink)  
Old 06-01-2010, 11:12 PM
TheBundo's Avatar
VIP Member
Offline
Pocket PC: Evo 4G
Carrier: Sprint
Location: Kommiefornia
 
Join Date: Jul 2007
Posts: 2,104
Reputation: 1688
TheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on repTheBundo is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

Over my head, but thanks
Reply With Quote
  #4 (permalink)  
Old 06-01-2010, 11:17 PM
Munroe's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Evo
Carrier: Sprint
Location: Chicago
 
Join Date: Mar 2010
Posts: 62
Reputation: 90
Munroe is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

WAYYYY over my head. Im with TheBundo!
__________________
I'm still a n00b, and thats fine with me!

myspace.com/munroemusic
www.AmericaNationwide.com
Reply With Quote
  #5 (permalink)  
Old 06-01-2010, 11:25 PM
WarChild's Avatar
War is the answer!
Offline
Pocket PC: Samsung Note III, GS4 & Asus Transformer
Carrier: Sprint since 1995
Location: Daytona Beach, Florida
 
Join Date: Nov 2008
Posts: 3,448
Reputation: 6335
WarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the community
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

is this only about the Evo or android devices?




CW
__________________



FORUM FAQ | FORUM RULES | NEW USER GUIDE |TIPS FOR SEARCHING | RULES FOR SALES ON SITE

Semper Fidelis (Always Faithful) is the motto of the Corps. That Marines have lived up to this motto is proved by the fact that there has never been a mutiny, or even the thought of one, among U.S. Marines.
Reply With Quote
  #6 (permalink)  
Old 06-01-2010, 11:28 PM
OMJ's Avatar
OMJ
Retired Staff
Offline
Pocket PC: Sprint HTC 10!!!!!
Carrier: Sprint
Threadstarter
Location: MN
 
Join Date: Jun 2007
Posts: 4,767
Reputation: 20305
OMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation levelOMJ can't get a higher reputation level
Mentioned: 11 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

Quote:
Originally Posted by WarChild View Post
is this only about the Evo or android devices?




CW

well it looks like it was originally written for the N1, but it's more of a general HTC Android info.
Reply With Quote
  #7 (permalink)  
Old 06-01-2010, 11:43 PM
WarChild's Avatar
War is the answer!
Offline
Pocket PC: Samsung Note III, GS4 & Asus Transformer
Carrier: Sprint since 1995
Location: Daytona Beach, Florida
 
Join Date: Nov 2008
Posts: 3,448
Reputation: 6335
WarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the communityWarChild is a trusted member of the community
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

Quote:
Originally Posted by OMJ View Post
well it looks like it was originally written for the N1, but it's more of a general HTC Android info.
ahhh...lol





CW
Reply With Quote
  #8 (permalink)  
Old 06-02-2010, 12:33 AM
fenixjn's Avatar
Halfway to VIP Status
Offline
Pocket PC: HTC EVO
Carrier: Sprint
 
Join Date: Jun 2009
Posts: 535
Reputation: 485
fenixjn is becoming a PPCGeeks regularfenixjn is becoming a PPCGeeks regularfenixjn is becoming a PPCGeeks regularfenixjn is becoming a PPCGeeks regularfenixjn is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

Interesting read... basically we are moving from a easy GUI pressing Next until we get the bar loading the new ROM to actually downloading the interface which happens to be CLI and manually issuing commands to flash the new ROM onto the phone.

Not that hard to learn but it could be daunting for those who never used CLI before.
__________________
Some Samsung fold phone > Treo 600 > Treo 650 > Treo 700p > Treo 755p > HTC Touch Pro > HTC EVO

ROM: DamageControl 3.1.2
Radio: Stock +upgrade (for now)
Reply With Quote
  #9 (permalink)  
Old 06-02-2010, 01:37 AM
Carla's Avatar
Knowledge Is True Opinion
Offline
Pocket PC: iPhone 4S
Carrier: Vzw
 
Join Date: Apr 2009
Posts: 4,319
Reputation: 7590
Carla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the communityCarla is a trusted member of the community
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Send a message via MSN to Carla
Re: Android 101

Moved to General Android Discussion
__________________
De Gustibus Non Est Disputandum
I LOVE MY COP
Reply With Quote
This post has been thanked 1 times.
  #10 (permalink)  
Old 06-02-2010, 01:37 AM
[sammich]'s Avatar
Retired Moderator
Offline
Pocket PC: NULL
Carrier: NULL
 
Join Date: Jul 2007
Posts: 6,039
Reputation: 10109
[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level[sammich] can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Android 101

Nice write-up OMJ, you have my vote for a sticky! And it looks like Carla agrees

Last edited by [sammich]; 06-02-2010 at 01:43 AM.
Reply With Quote
This post has been thanked 1 times.
Reply

  PPCGeeks > Android > General Android Discussion

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 03:17 AM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com