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 > Android HTC Devices > HTC Evo 4G > CDMA HTC Evo 4G Development
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #31 (permalink)  
Old 05-27-2010, 06:24 PM
MordyT's Avatar
Retired Staff-MordyT.com
Offline
Pocket PC: HTC Touch Pro 2
Carrier: Sprint
 
Join Date: Feb 2009
Posts: 2,190
Reputation: 8445
MordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the communityMordyT is a trusted member of the community
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by OMJ View Post
here ya go bud, it supports multiple HTC devices....

http://forum.xda-developers.com/showthread.php?t=633246
Thanks!
/me starts building...
__________________
Use Thanks! to show someone that they helped you!
Looking for ways to interface Google Voice with your Phone? Click Here!
Quote:
Originally Posted by CozBoogie View Post
5. Everyone who thanks my post will receive instant karma!
Quote:
Originally Posted by flyers2114 View Post
MordyT is right.
Reply With Quote
This post has been thanked 1 times.
  #32 (permalink)  
Old 05-27-2010, 07:42 PM
stroths's Avatar
VIP & Master of my Domain
Offline
Pocket PC: HTC Evo 4g
Carrier: Sprint
Location: Dallas area
 
Join Date: Oct 2006
Posts: 1,370
Reputation: 2008
stroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIPstroths is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by OMJ View Post
here ya go bud, it supports multiple HTC devices....

http://forum.xda-developers.com/showthread.php?t=633246
Thanks for the link. Here is another good one I found that gives detailed instructions on setting it up on a virtual machine and running the kitchen. It also includes info on pulling the rom image files from the stock image (which we now have).

LINK

They describe VirtualBox, but I used VMware and used Linux Mint as my OS (nicer version of Ubuntu IMO). I ran the kitchen using the EVO rom image and I made my own ROM.

Do you know how I apply the unlock in the kitchen? The kitchen had the option, but I suspect this isn't made for the EVO at this time.
__________________
Treo 600 -> Treo 650 ->Treo 700p -> Treo 700wx -> Mogul -> Touch Pro -> Touch Pro 2 -> HTC Evo
- [Guide] Get Root access & NAND Unlock your Evo (Full Root)
- My Current AppBrain List

Reply With Quote
This post has been thanked 2 times.
  #33 (permalink)  
Old 05-27-2010, 08:35 PM
D\/8's Avatar
Halfway to VIP Status
Offline
Pocket PC: EVO 4G Baby!!!
Carrier: SprintPCS
 
Join Date: Jun 2009
Posts: 683
Reputation: 1890
D\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on repD\/8 is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

I'm glad to see so many PPCG Legends jumping on the Android Wagon... It's exciting seeing you guys already dipping into the knowledge pool we have here at PPCG...

I can't wait... I'm itching... I feel like a crack feind right now...
Reply With Quote
  #34 (permalink)  
Old 05-27-2010, 10:34 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)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by stroths View Post
Thanks for the link. Here is another good one I found that gives detailed instructions on setting it up on a virtual machine and running the kitchen. It also includes info on pulling the rom image files from the stock image (which we now have).

LINK

They describe VirtualBox, but I used VMware and used Linux Mint as my OS (nicer version of Ubuntu IMO). I ran the kitchen using the EVO rom image and I made my own ROM.

Do you know how I apply the unlock in the kitchen? The kitchen had the option, but I suspect this isn't made for the EVO at this time.
when u say unlock, are you referring to the "add root permissions" option?

if so, this is the script to add root:

Code:
scripts/ensure_boot_extracted

if [ -d WORKING_* ]
then
  clear
else
  exit 0
fi

echo
echo ROOTING
echo ----------------------------------------------------
echo 
echo The following will be done for root:
echo - Add /system/bin/su
echo - Add /system/app/Superuser.apk
echo - Add su entry to update-script file
echo - Edit default.prop in the ramdisk
echo - Build new boot.img
echo 
echo "Optional (will ask before proceeding):"
echo - Add /system/xbin/busybox 
echo - Add busybox entries to current update-script file
echo 

echo "Press Enter when you are ready"
read enterKey
echo

cd WORKING_*

if [ -e system/bin/su ] 
then
  echo "/system/bin/su already present"
else
  echo "Adding /system/bin/su"
  cp ../tools/su system/bin/
  chmod 04755 system/bin/su
fi

echo


if [ -e system/app/Superuser.apk ] 
then
  echo "/system/app/Superuser.apk already present"
else
  echo "Adding /system/app/Superuser.apk"
  cp ../tools/Superuser.apk system/app/
fi

echo


cd ..
scripts/add_su_to_update_script



echo
cd BOOT-EXTRACTED/boot.img-ramdisk

changed=0
echo
echo "Checking default.prop ..."

if [ "`grep -om 1 ro.secure=1 default.prop`" == "ro.secure=1" ]
then
  echo "Set: ro.secure=0"
  perl -pi -e 's/ro.secure=1/ro.secure=0/g' default.prop
  changed=1
fi

if [ "`grep -om 1 ro.debuggable=0 default.prop`" == "ro.debuggable=0" ]
then
  echo "Set: ro.debuggable=1"
  perl -pi -e 's/ro.debuggable=0/ro.debuggable=1/g' default.prop
  changed=1
fi

if [ "`grep -om 1 persist.service.adb.enable=0 default.prop`" == "persist.service.adb.enable=0" ]
then
  echo "Set: persist.service.adb.enable=1"
  perl -pi -e 's/persist.service.adb.enable=0/persist.service.adb.enable=1/g' default.prop
  changed=1
fi

if [ $changed == 1 ]
then
  echo
  echo New default.prop:
  more default.prop
  echo

  if [ -e default.prop.bak ]
  then
    rm default.prop.bak
  fi

  cd ../..
  scripts/build_boot_img

else
  echo "No changes to default.prop required"
  cd ../..
  rm -rf BOOT-EXTRACTED
fi



cd WORKING_*

if [ -e system/xbin/busybox ]
then
  if [ "`grep -om 1 busybox META-INF/com/google/android/update-script`" == "0" ]
  then
    echo -n
  else
    cd ..
    echo
    echo "busybox already installed"
    echo 
    echo "Completed rooting!"
    echo
    exit 0
  fi
fi

cd ..


echo
echo
echo ---------------------------------------------------------------
echo
echo "The script will now try to install busybox and update your"
echo "update-script with busybox entries.  Busybox is required"
echo "for certain root applications, such as Titanium Backup and"
echo "apps2sd."
echo 
echo ---------------------------------------------------------------
echo -n "Proceed with install (y/n)? (default: y): "
read proceedBB

if [ "$proceedBB" == "" ] || [ "$proceedBB" == "y" ]
then
  scripts/add_busybox
else
  echo "Busybox not installed"
fi
  
echo 
echo "Completed rooting!"
echo
__________________
Reply With Quote
This post has been thanked 4 times.
  #35 (permalink)  
Old 05-27-2010, 10:50 PM
wmdunn's Avatar
VIP Member
Offline
Pocket PC: Nexus 5
Carrier: AT&T
Location: Phoenix, AZ
 
Join Date: Apr 2007
Posts: 1,550
Reputation: 2510
wmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIPwmdunn is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by OMJ View Post
when u say unlock, are you referring to the "add root permissions" option?

if so, this is the script to add root:

Ken ... this is going to be fun. Only a week to go!
__________________
"Wise men still seek Him ... "
Reply With Quote
This post has been thanked 1 times.
  #36 (permalink)  
Old 05-28-2010, 06:00 PM
Riley's Avatar
Retired Staff
Offline
Pocket PC: ip6
Carrier: tmobile
Location: Pittsburgh
 
Join Date: Jul 2008
Posts: 5,767
Reputation: 14070
Riley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation levelRiley can't get a higher reputation level
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by wmdunn View Post
Ken ... this is going to be fun. Only a week to go!
Amen to that Bill. Time to get the band back together!!

Thanks Ken!!! Who's the best chef in the house....that'd be OMJ!!!

Last edited by Riley; 05-29-2010 at 11:14 AM.
Reply With Quote
This post has been thanked 1 times.
  #37 (permalink)  
Old 05-28-2010, 10:43 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)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by rileyd5 View Post
Amen to that Bill. Time to get the band back together!!

Thanks Ken!!! Who's the best chef in the house....that'd be OMG!!!
thanks man, but that's quite a stretch....there are alot more talented chefs here @ ppcg.
Reply With Quote
This post has been thanked 1 times.
  #38 (permalink)  
Old 05-29-2010, 01:17 AM
radar369's Avatar
WHAT CAN YOU DO WITH 4G?!
Offline
Pocket PC: Samsung Galaxy SII Epic 4G Touch
Carrier: The non-4G 4G'ers (Sprint)
Location: Where 4G is advertised.....but not available!!!!!!
 
Join Date: May 2008
Posts: 599
Reputation: 2360
radar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIPradar369 is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via AIM to radar369 Send a message via Yahoo to radar369 Send a message via Skype™ to radar369
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by rileyd5
Amen to that Bill. Time to get the band back together!!

Thanks Ken!!! Who's the best chef in the house....that'd be OMG!!!
Quote:
Originally Posted by OMJ
thanks man, but that's quite a stretch....there are alot more talented chefs here @ ppcg.
UH...................he wasn't talking about you.........as he clearly states "OMG" being the best chef in the house.............

......but on a serious note.......let me know how that rom works AS SOON AS you're able to flash it! I'm try'na build a rom for Android myself and wanna start fresh instead of coming in towards the middle (Windows Mobile)!
__________________
NOT A DAMN THING WHERE I LIVE!!!!!!!!!!!!!!

Last edited by radar369; 05-29-2010 at 01:20 AM.
Reply With Quote
  #39 (permalink)  
Old 05-30-2010, 08:35 AM
Tilde88's Avatar
Regular 'Geeker
Offline
Pocket PC: Hybrid Touch Pro2
Carrier: Sprint
 
Join Date: Oct 2008
Posts: 295
Reputation: 630
Tilde88 knows their stuffTilde88 knows their stuffTilde88 knows their stuffTilde88 knows their stuffTilde88 knows their stuffTilde88 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

Quote:
Originally Posted by radar369 View Post
UH...................he wasn't talking about you.........as he clearly states "OMG" being the best chef in the house.............

......but on a serious note.......let me know how that rom works AS SOON AS you're able to flash it! I'm try'na build a rom for Android myself and wanna start fresh instead of coming in towards the middle (Windows Mobile)!
silly winmo boys...
no need for all this ROM hubbub... just get 2.2, root... and customize... lol roms.... its android... its pretty stable as it is... and functional... and pretty... and well... open source
__________________
Are you having problems after flashing a new ROM which noone else can reproduce? Here ya go
Link : http://forum.ppcgeeks.com/showthread.php?t=78427
Really? I'm glad I could help you... Let me know that I did by clicking this button you see on the bottom right of my posts.
Your welcome
Reply With Quote
  #40 (permalink)  
Old 05-30-2010, 05:34 PM
dasfool's Avatar
N00b
Offline
Pocket PC: Sprint Evo 4G
Carrier: Sprint
 
Join Date: Oct 2008
Posts: 38
Reputation: 20
dasfool is just getting started
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Sprint HTC Evo 4G Shipped ROM

If what some are saying about the SD card problems being related to an early release of the OS are true, then the official, shipped, Sprint rom may be useful to fix their bug.
Reply With Quote
Reply

  PPCGeeks > Android > Android HTC Devices > HTC Evo 4G > CDMA HTC Evo 4G Development

Tags
android, htc evo, sprint, wdm, whosdaman


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


LinkBacks (?)
LinkBack to this Thread: http://forum.ppcgeeks.com/cdma-htc-evo-4g-development/121961-sprint-htc-evo-4g-shipped-roms.html
Posted By For Type Date
Problem when updating in hboot - xda-developers This thread Refback 10-09-2010 03:11 PM

All times are GMT -4. The time now is 02:35 AM.


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