Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
mrbulanescu
Old
#1  
Member - OP
Thanks Meter 13
Posts: 88
Join Date: Nov 2011
Default flashing custom rom without sd card

my sd card got broken and reflashed to original 2,3 rom. now i want to go back to custom rom. can any1 help me flash custom recovery without sd card. thanks

Sent from my LG-P500 using XDA
 
Joel Chan
Old
#2  
Joel Chan's Avatar
Senior Member
Thanks Meter 212
Posts: 663
Join Date: Feb 2011
Location: Singapore
Quote:
Originally Posted by mrbulanescu View Post
my sd card got broken and reflashed to original 2,3 rom. now i want to go back to custom rom. can any1 help me flash custom recovery without sd card. thanks

Sent from my LG-P500 using XDA
I doubt that's possible

Sent from my LG-P500 using xda premium
The Following User Says Thank You to Joel Chan For This Useful Post: [ Click to Expand ]
 
-Starman-
Old
#3  
Junior Member
Thanks Meter 1
Posts: 24
Join Date: Jun 2011
I think you can only flash official roms with kdz because custom roms needs SD card to use "flash zip from sdcard" in the recovery.
Samsung Galaxy Nexus 16 GB (maguro)
ROM : Xylon 2.7
Kernel : AK SKL 207
CPU : 180-1350 MHz

LG P500
Sold

Archos 7o IT 8 GB
Sold
 
creagrox
Old
#4  
creagrox's Avatar
Senior Member
Thanks Meter 13
Posts: 139
Join Date: Feb 2012
Location: Ranchi, Jharkhand
There must be a way for flashing ROM through adb.
_______________________________

so, i hear you want to download torrents through download manager, at awesome speed.
Well, consider it accomplished!
https://put.io/r/0Q2H
 
deniso177
Old
#5  
Senior Member
Thanks Meter 142
Posts: 519
Join Date: Aug 2011
there is, basically look up how to copy files from PC to phone using adb, and just copy everything in the ROM onto the / (root) of your phone, as all flashable zips do is copy the stuff from your sd card onto your phone
Android Phones:

Samsung Galaxy S2
LG-P500
 
fdaconta
Old
#6  
Member
Thanks Meter 22
Posts: 60
Join Date: Mar 2012
Location: Moriches, NY
Default Flash mage

Use Android Commander version 0.7.9.10 by PanPiotr. It has a option to flash your phone under device menu. I have never used it so I don't know if it will work, but it might be worth a try. http://androidcommander.com/ here is the link for the software It is a very powerful application I would recommend to any andriod user, good luck I would like to know if it works for you. All of the features I have used work perfect.
 
DanceOff
Old
#7  
Account currently disabled
Thanks Meter 2768
Posts: 3,837
Join Date: Feb 2012
Location: New Delhi
Quote:
Originally Posted by mrbulanescu View Post
my sd card got broken and reflashed to original 2,3 rom. now i want to go back to custom rom. can any1 help me flash custom recovery without sd card. thanks

Sent from my LG-P500 using XDA
I only understoood that you flashed.stock firmware using kdz and have no sd, so steps are as follows:
1.root optimus 1 using superoneclick
2.flash cwm using adb
3.reboot in recovery
4.mount /system
5.then format /system
6.flash rom using adb
or
just copy paste files in /system of your phone
I mean the files which are in zip of custom rom
 
by.adrian
Old
#8  
by.adrian's Avatar
Senior Member
Thanks Meter 89
Posts: 133
Join Date: Oct 2010
Location: Bucuresti
How to Flash a ROM Without an SD Card

This is for all those who don't have a working sdcard, sdcard slot, etc. but want still to flash a new rom

Prerequisites:
  1. Flash an Amon_RA recovery if you're using Clockwork
  2. Access to a computer that had AndroidSDK tools on it - you'll be using ADB
  3. Put whichever ROM.zip you want to flash in your android-sdk\tools folder - I would rename it to something simple. (My example which I'll be using for this tut is: C:\AndroidSDK\toosl\ROM.zip)

Directions:
  1. Reboot into the Amon_RA recovery
  2. Wipe data/factory reset, cache, and dalvik via the recovery menu
  3. Open up cmd/terminal on your computer
  4. Navigate to your android-sdk\tools directory
  5. Enter the following in cmd/terminal:
    Code:
    adb shell
    mount data
  6. *wait a second or two* You may or may not get the "/ #" line returned.
  7. Despite what happens press "Ctrl+C" to break the command and get back to the standard AndroidSDK\tools> directory
  8. Enter the following in cmd/terminal:
    (replace "ROM.zip" with the name you're using)
    Code:
    adb push ./ROM.zip /data/
    *this will take anywhere from 30sec to a min depending on the rom.zip size*
  9. Then we do this in cmd:
    Code:
    adb shell
    recovery --update_package=DATA:ROM.zip
  10. Wait for it to finish flashing/updating
  11. Reboot
  12. ENJOY

Brief rundown of what we just did:
  • Wiped /data/ to free up space for the zip
  • Put our ROM.zip onto the /data/ partition since we don't have an SD Card to work with.
  • Told the recovery to flash from our /data/ partition instead of /sdcard/
HTC Cha Cha

Rom: Stock
Version: 2.3.5
Kernel: 2.6.35.10
Recovery: Default
OC: 800/480 Performance

-----------------------------------------------------------------------

HTC Desire

Rom: Stock
Version: 2.3.3
Kernel: 2.6.35.10
Recovery: CWM 5
OC: 980/241 Performance

-----------------------------------------------------------------------

Motorola Milestone

Rom: CyanogenMod 7.2.4f
Version: 2.3.7
Kernel: 2.6.32.60
Recovery: OpenRecovery 0.22
OC: 800/250
The Following 4 Users Say Thank You to by.adrian For This Useful Post: [ Click to Expand ]
 
giminar
Old
(Last edited by giminar; 17th July 2012 at 11:32 PM.)
#9  
Junior Member
Thanks Meter 0
Posts: 1
Join Date: Jul 2012
.......
 
cookem
Old
#10  
Junior Member
Thanks Meter 0
Posts: 1
Join Date: Mar 2009
is there a way to toggle signature verification through adb? My sd card slot is not working and i am trying to flash back to stock to go to sprint for repair but when I run the command and reboot into recover it says signature failed and then I can not pick the update.zip i put in the data partition.

Quote:
Originally Posted by by.adrian View Post
How to Flash a ROM Without an SD Card

This is for all those who don't have a working sdcard, sdcard slot, etc. but want still to flash a new rom

Prerequisites:
  1. Flash an Amon_RA recovery if you're using Clockwork
  2. Access to a computer that had AndroidSDK tools on it - you'll be using ADB
  3. Put whichever ROM.zip you want to flash in your android-sdk\tools folder - I would rename it to something simple. (My example which I'll be using for this tut is: C:\AndroidSDK\toosl\ROM.zip)

Directions:
  1. Reboot into the Amon_RA recovery
  2. Wipe data/factory reset, cache, and dalvik via the recovery menu
  3. Open up cmd/terminal on your computer
  4. Navigate to your android-sdk\tools directory
  5. Enter the following in cmd/terminal:
    Code:
    adb shell
    mount data
  6. *wait a second or two* You may or may not get the "/ #" line returned.
  7. Despite what happens press "Ctrl+C" to break the command and get back to the standard AndroidSDK\tools> directory
  8. Enter the following in cmd/terminal:
    (replace "ROM.zip" with the name you're using)
    Code:
    adb push ./ROM.zip /data/
    *this will take anywhere from 30sec to a min depending on the rom.zip size*
  9. Then we do this in cmd:
    Code:
    adb shell
    recovery --update_package=DATA:ROM.zip
  10. Wait for it to finish flashing/updating
  11. Reboot
  12. ENJOY

Brief rundown of what we just did:
  • Wiped /data/ to free up space for the zip
  • Put our ROM.zip onto the /data/ partition since we don't have an SD Card to work with.
  • Told the recovery to flash from our /data/ partition instead of /sdcard/

 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

Go to top of page...

XDA PORTAL POSTS

Learn to Edit Graphics for your Development Work

The importance of good and appropriate graphics for your development work is undeniable. Be … more

Tasker Alternative: AutomateIt, Automates Your Device Tasks – XDA Developer TV

XDA Developer TV Producer Kevin wants to help make your … more

Preventing App Piracy: Join the Discussion

The topic of piracy is always a touchy subject, but I feel that the grass roots style of Android … more

Jolla Sailfish OS Flagship Device Makes First Appearance

Given the amount of coverage that Android receives around here, you could almost be … more