webOS Nation Forums >  webOS apps and software >  webOS development > OK ROM comes
OK ROM comes

  Closed Thread
 
LinkBack Thread Tools Display Modes
Old 06/10/2009, 06:48 PM   #501 (permalink)
Member
 
Join Date: Jun 2009
Posts: 2
Likes Received: 0
Thanks: 1
Thanked 0 Times in 0 Posts
Default

I have been exploring properties using
Code:
#/usr/bin/lunaprop
Code:
root@castle:/usr/bin# lunaprop -help
usage: lunaprop \
    [-n appID]              # operate on appID props (otherwise on sys props) \
    [-m]                    # shell mode \
    [[-k] key_name          # print (or delete, with -k) entry_for_key \
        |-s key_name value  # set value for key_name \
        |-a ]               # dump all key/value pairs \
	eg: lunaprop -n com.palm.browser
	eg: lunaprop -n com.palm.browser currentURL
	eg: lunaprop com.palm.properties.installer
	eg: lunaprop com.palm.properties.installer -a
Code:
root@castle:/usr/bin# lunaprop -a
[ 
	{ "com.palm.properties.GMFLAG": "1" }, 
	{ "com.palm.properties.DMSETS": "{\"sets\":\"base\",\"a\"}" }, 
	{ "com.palm.properties.PN": "REMOVED" }, 
	{ "com.palm.properties.PRODoID": "P100EWW" }, 
	{ "com.palm.properties.KEYoBRD": "z" }, 
	{ "com.palm.properties.PalmSN": "REMOVED" }, 
	{ "com.palm.properties.HWoRev": "A" }, 
	{ "com.palm.properties.BToADDR": "REMOVED" }, 
	{ "com.palm.properties.WIFIoADDR": "REMOVED" }, 
	{ "com.palm.properties.ACCELCAL": 
		{ 
			"faceup_0": { "x": 183, "y": 109, "z": -9902 }, 
			"faceup_180": { "x": 61, "y": 85, "z": -9902 }, 
			"facedown_0": { "x": 0, "y": 0, "z": 0 }, 
			"facedown_180": { "x": 0, "y": 0, "z": 0 }, 
			"rightup_0": { "x": 0, "y": 0, "z": 0 }, 
			"rightup_180": { "x": 0, "y": 0, "z": 0 }, 
			"leftup_0": { "x": 0, "y": 0, "z": 0 }, 
			"leftup_180": { "x": 0, "y": 0, "z": 0 }, 
			"topup_0": { "x": 0, "y": 0, "z": 0 }, 
			"topup_180": { "x": 0, "y": 0, "z": 0 }, 
			"bottomup_0": { "x": 0, "y": 0, "z": 0 }, 
			"bottomup_180": { "x": 0, "y": 0, "z": 0 } 
		} 
	}, 
	{ "com.palm.properties.DMMODEL": "P100EWW" }, 
	{ "com.palm.properties.DMCARRIER": "Sprint" }, 
	{ "com.palm.properties.DMCLoAUTHNAME": "REMOVED" }, 
	{ "com.palm.properties.DMCLoAUTHPW": "REMOVED" }, 
	{ "com.palm.properties.DMCLoNONCE": "REMOVED" }, 
	{ "com.palm.properties.DMSVRoAUTHPW": "REMOVED" }, 
	{ "com.palm.properties.DMSVRoNONCE": "REMOVED" }, 
	{ "com.palm.properties.BATToCH": "REMOVED" }, 
	{ "com.palm.properties.BATToRSP": "REMOVED" }, 
	{ "com.palm.properties.ModemSN": "REMOVED" }, 
	{ "com.palm.properties.ProdSN": "REMOVED" }, 
	{ "com.palm.properties.installer": "trenchcoat" }, 
	{ "com.palm.properties.nduid": "REMOVED" }, 
	{ "com.palm.properties.version": "Palm webOS 1.0.2" }, 
	{ "com.palm.properties.buildName": "Nova-Sprint-Castle" }, 
	{ "com.palm.properties.buildNumber": "118" }, 
	{ "com.palm.properties.storageCapacity": "8220835840" }, 
	{ "com.palm.properties.storageFreeSpace": "6806011904" } 
]
Code:
root@castle:/var/preferences# lunaprop -n com.palm.rdxd -a    
[ { "MEID": [ "REMOVED" ] } ]
Careful when using lunaprop though. If it cannot find the 'com.palm.*' file in /var/preferences it will create a directory and file. Misuse could lead to potential bloat in the FS.

scopy
oscopy is offline  
Old 06/10/2009, 07:03 PM   #502 (permalink)
Member
 
Join Date: Jun 2009
Posts: 32
Likes Received: 0
Thanks: 1
Thanked 13 Times in 4 Posts
Default

To whome it may concern:

there is a small error in the wiki, under the backdoor page:

predev.wikidot.com/backdoor

this line:

Code:
adduser -H /home/$MYUSER $MYUSER #You'll be asked to set your password here
should be:
Code:
adduser -h /home/$MYUSER $MYUSER #You'll be asked to set your password here
should be lowercase -h, not -H

I tried to edit it, but was denied. How do we get access to the wiki?

The good news, I can now SSH to my pre :-)
lostshootingstar is offline  
Old 06/10/2009, 07:10 PM   #503 (permalink)
Developer
 
rwhitby's Avatar
 
Join Date: Apr 2003
Location: Adelaide, Australia - follow @webosinternals on Twitter visit www.webos-internals.org and www.facebook.com/webosinternals
Posts: 10,220
Likes Received: 546
Thanks: 90
Thanked 8,534 Times in 2,806 Posts
Default

Quote:
Originally Posted by etx View Post
I've been trying to extract the IPK files, they are in debian .deb format. This could be the key to distributing native applications. Here is the ar output:

rw-r--r-- 1000/10000 4 May 22 16:08 2009 debian-binary/
rw-r--r-- 1000/10000 542382 May 22 16:08 2009 data.tar.gz/
rw-r--r-- 1000/10000 4241 May 22 16:08 2009 control.tar.gz/
We have 1700+ ipks all ready to go for the Palm Pre at
Code:
http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/stable/
See NSLU2-Linux - Optware / HomePage browse for more details.

-- Rod
rwhitby is offline  
Old 06/10/2009, 07:18 PM   #504 (permalink)
Member
 
Join Date: Jun 2009
Location: Socal
Posts: 78
Likes Received: 0
Thanks: 2
Thanked 6 Times in 4 Posts
Default

I love the images in /usr/palm/applications/com.palm.app.firstuse/images.

Esp the ones with names like sim_card_1.png, sim_card_2.png, sim_card_3.png, sim_card_instructions_1.png, sim_card_instructions_2.png, sim_card_instructions_3.png, sim_card_instructions_4.png, sim_card_instructions_5.png.... and Sim_card.png.


Just my personal favorites in that folder.
Attached Images
File Type: png sim_card_1.png (41.4 KB, 110 views) Email Attachment
File Type: png sim_card_instructions_4.png (34.6 KB, 81 views) Email Attachment
File Type: png Sim_card.png (2.9 KB, 66 views) Email Attachment
__________________
It wasn't me officer, I swear.
Patrick R is offline  
Old 06/10/2009, 07:36 PM   #505 (permalink)
Member
 
Join Date: Jun 2009
Posts: 5
Likes Received: 0
Thanks: 4
Thanked 1 Time in 1 Post
Default Increase the processor speed?

Someone has posted this in the Forum:
-----------------------------------------------------
Default CPU Frequency 500Mhz (from /etc/init.d/bootmisc.sh)

#
# Set default cpufreq (BUG: need to set twice!)
#
echo 600000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
echo 500000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
-----------------------------------------------------------

This is what I am wondering:

Why 600MHz first then set it to 500 MHz? Is Pre capable of running at 600MHz?

What if, we change the second line to 600000. Will it result in higher clock speed?

Has Palm turned down the speed for power consumption?

From the look of this code. I am guessing YES.

PS: I don't have a Pre YET. My contract doesn't expire until the end of August. Damn. I wish I had one now.
vijayd is offline  
Old 06/10/2009, 07:48 PM   #506 (permalink)
Member
 
sudoer's Avatar
 
Join Date: Nov 2002
Location: Boston, MA, USA (but in America's Dairyland for an extended visit)
Posts: 1,727
Likes Received: 0
Thanks: 1,508
Thanked 369 Times in 302 Posts
Default

I think I'm going to Pre my pants! :-)

Just in case people don't know, the *.class files can be decompiled from java byte code (.class) back into source (.java) files. I've used a program named "jad" (JAva Decompiler) to do this in the past.

jad can be downloaded from here:
JAD Java Decompiler Download Mirror | Tomas Varaneckas

Then you run a command like the following to traverse the class tree and to create a parallel src tree containing the "java" files. (Sorry, this won't have all the interesting comments from the original source but it will be a head start in understanding what we have here!)

jad -o -r -sjava -dsrc com/**/*.class


--
Bob
__________________
I'm both super! ... and a doer!
sudoer is offline  
Old 06/10/2009, 07:49 PM   #507 (permalink)
Member
 
Join Date: Apr 2009
Posts: 90
Likes Received: 1
Thanks: 66
Thanked 37 Times in 11 Posts
Default

Quote:
Originally Posted by eddieroger View Post
I think his point is that they want to be more gray hat (or black hat) than webos-internals. We're trying to stay completely legit, as is the predev wiki.


What can be done thats shady?

I thought his was all open source.
AdidasNYR is offline  
Old 06/10/2009, 07:59 PM   #508 (permalink)
Member

 
Join Date: Apr 2003
Location: Boston-area
Posts: 6,973
Likes Received: 116
Thanks: 418
Thanked 1,252 Times in 710 Posts
Default

Quote:
Originally Posted by vijayd View Post
Someone has posted this in the Forum:
-----------------------------------------------------
Default CPU Frequency 500Mhz (from /etc/init.d/bootmisc.sh)

#
# Set default cpufreq (BUG: need to set twice!)
#
echo 600000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
echo 500000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
-----------------------------------------------------------

This is what I am wondering:

Why 600MHz first then set it to 500 MHz? Is Pre capable of running at 600MHz?

What if, we change the second line to 600000. Will it result in higher clock speed?

Has Palm turned down the speed for power consumption?

From the look of this code. I am guessing YES.

PS: I don't have a Pre YET. My contract doesn't expire until the end of August. Damn. I wish I had one now.
From what I understand from reading about the Cortex A8 at the OpenPandora site, it's capable of up to 1GHz, but generally clocked at 600mHz. If Palm is running at 500mHz, it's either for power consumption reasons, or so they have a secret weapon against the iPhone 3GS.
jhoff80 is offline  
Old 06/10/2009, 08:01 PM   #509 (permalink)
Member
 
Join Date: Jun 2009
Posts: 22
Likes Received: 0
Thanks: 1
Thanked 4 Times in 1 Post
Default

Quote:
Originally Posted by AdidasNYR View Post
What can be done thats shady?

I thought his was all open source.
WebOS is not open source. If it was, we wouldn't be dissecting the ROM.
KBLOM is offline  
Old 06/10/2009, 08:28 PM   #510 (permalink)
Member
 
Join Date: May 2008
Posts: 51
Likes Received: 0
Thanks: 4
Thanked 3 Times in 3 Posts
Default

Has anyone tried to fix the EAS without ssl issue?
jbern8 is offline  
Old 06/10/2009, 08:30 PM   #511 (permalink)
Member
 
Join Date: Jun 2009
Posts: 32
Likes Received: 0
Thanks: 1
Thanked 13 Times in 4 Posts
Default

Quote:
Originally Posted by jbern8 View Post
Has anyone tried to fix the EAS without ssl issue?
The interesting EAS stuff seems to be in complied java code, not accessible with what we have right now.
lostshootingstar is offline  
Old 06/10/2009, 08:38 PM   #512 (permalink)
Member
 
Join Date: Aug 2007
Location: Denver, CO
Posts: 33
Likes Received: 0
Thanks: 5
Thanked 20 Times in 5 Posts
Default

I was able to get root using VirtualBox on Linux. Not a great solution, but it might help anyone with a Windows XP VM available.

In VBox I had to disable USB2.0 support and in Windows I had to upgrade to SP2
fish199902 is offline  
Old 06/10/2009, 08:40 PM   #513 (permalink)
Member
 
Join Date: Jun 2009
Posts: 32
Likes Received: 0
Thanks: 1
Thanked 13 Times in 4 Posts
Default

Quote:
Originally Posted by fish199902 View Post
I was able to get root using VirtualBox on Linux. Not a great solution, but it might help anyone with a Windows XP VM available.

In VBox I had to disable USB2.0 support and in Windows I had to upgrade to SP2
Once you get it rooted, and setup the backdoor, you don't need windows anymore, which is a good thing.
lostshootingstar is offline  
Old 06/10/2009, 08:56 PM   #514 (permalink)
Developer
 
rwhitby's Avatar
 
Join Date: Apr 2003
Location: Adelaide, Australia - follow @webosinternals on Twitter visit www.webos-internals.org and www.facebook.com/webosinternals
Posts: 10,220
Likes Received: 546
Thanks: 90
Thanked 8,534 Times in 2,806 Posts
Default

Quote:
Originally Posted by eddieroger View Post
So why did the IRC room go invite only?
It was an access perms typo on my part. There is no intent to make it invite only, but we do have moderators equipped to enforce the legality aspect of the channel now. We're serious about #webos-internals staying legit.

-- Rod
rwhitby is offline  
Old 06/10/2009, 08:58 PM   #515 (permalink)
Developer
 
rwhitby's Avatar
 
Join Date: Apr 2003
Location: Adelaide, Australia - follow @webosinternals on Twitter visit www.webos-internals.org and www.facebook.com/webosinternals
Posts: 10,220
Likes Received: 546
Thanks: 90
Thanked 8,534 Times in 2,806 Posts
Default

Quote:
Originally Posted by lostshootingstar View Post
How do we get access to the wiki?
Just ask in the #webos-internals IRC channel, the password is available to anyone who wants to contribute (but will not be posted publicly, to try and prevent spammers).

-- Rod
rwhitby is offline  
Old 06/10/2009, 09:11 PM   #516 (permalink)
Member
 
sudoer's Avatar
 
Join Date: Nov 2002
Location: Boston, MA, USA (but in America's Dairyland for an extended visit)
Posts: 1,727
Likes Received: 0
Thanks: 1,508
Thanked 369 Times in 302 Posts
Default

Quote:
Originally Posted by ShinAli View Post
Quick update.

Seems to be there are several states; BOOTLOADER, INSTALLER, and OS.

Right now I'm stuck in the BOOTLOADER state, unable to run any linux commands obviously enough.
I'm still catching up on reading through the thread. Before starting to read throug all the messages in this thread, I untarred the jar file and ran jad (java dissasembler) on the com/* subdir in order to get a java sources. You should be able to look at the code in the subdir below (after running jad) to get an idea of what the operational stages are and what they do.

$ pwd
/users/rclancy/Downloads/webosdoctorp100ewwsprint/src/com/palm
$ find nova/installer/core/stages
nova/installer/core/stages
nova/installer/core/stages/BaseStage.java
nova/installer/core/stages/ChargeBatteryStage.java
nova/installer/core/stages/CustomizationStage.java
nova/installer/core/stages/EnableNovacomUsbByDefaultStage.java
nova/installer/core/stages/GoIntoUpdateModeStage.java
nova/installer/core/stages/ModemUpdateStage.java
nova/installer/core/stages/RamdiskLoadingStage.java
nova/installer/core/stages/RdxUploadStage.java
nova/installer/core/stages/SoftwareUpdateSiteStage.java
nova/installer/core/stages/TouchPanelUpdateStage.java
nova/installer/core/stages/TrenchcoatStage.java
nova/installer/core/stages/VerifyRomStage.java
$

Hope this helps - (back to catching up on what you all are saying in this thread now)

-- Bob
__________________
I'm both super! ... and a doer!
sudoer is offline  
Old 06/10/2009, 09:12 PM   #517 (permalink)
Member
 
ToniCipriani's Avatar
 
Join Date: Apr 2009
Location: Toronto, ON
Posts: 3,688
Likes Received: 266
Thanks: 185
Thanked 429 Times in 336 Posts
Default

Quote:
Originally Posted by agentsmith View Post
That's only if they choose a similarly capable radio to go along with the UMTS drivers. Presence of UMTS doesn't necessarily mean it'll be 7.2 HSDPA.
If I'm not mistaken the files seems to point that the GSM Pre will have the MSM6260, which only does 3.6Mbps HSDPA.
__________________
Palm IIIc -> Sony CLI T650C -> Sony TJ-37 -> Palm TX -> Palm Centro -> Palm Pre Bell -> Palm Pre Plus Bell/Verizon Hybrid -> HP Veer -> HP Pre 3 NA

[i]Pry my keyboard from my stone dead hands. I dare you. Death to all slates./i]

Need OEM Palm Pre parts? See here
ToniCipriani is offline  
Old 06/10/2009, 09:33 PM   #518 (permalink)
Member
 
sudoer's Avatar
 
Join Date: Nov 2002
Location: Boston, MA, USA (but in America's Dairyland for an extended visit)
Posts: 1,727
Likes Received: 0
Thanks: 1,508
Thanked 369 Times in 302 Posts
Default

Quote:
Originally Posted by scm6079 View Post
# jobfile for busybox crond, with pre-start commands to create the
# directory and files it wants by default. That there's not 'start
# on' stanza is intentional: it's for development use only. We can
# turn it on later if we need it, e.g. to keep the clock synced. It
# does work.
FWIW (in case some of you don't know what busybox is), busybox is an embedded Linux. I have it in my actiontec (Verizon) DSL modem. It's probably here so that our phones can call the mother ship to see if updates are available. (I wouldn't be surprised if this either controls or gets called by the logic that knows when our phone has a high-bandwidth network connection which it considers safe for OTA updates.) - I'm still catching up on this thread, so bear with me if this was "already" suggested and I'm just "behind" in my reading!

-- Bob
__________________
I'm both super! ... and a doer!
sudoer is offline  
Old 06/10/2009, 09:36 PM   #519 (permalink)
Member
 
Join Date: Jun 2009
Posts: 14
Likes Received: 0
Thanks: 8
Thanked 6 Times in 5 Posts
Default my very first palm pre mod

thank you guys for everything. i just finished my first tweak -- adding reddit.com to the global search! if anyone wants to know how let me know and ill add it to the wiki.

since this is my first post i cant add a link to the screen shot, but if you PM me ill send you one. i'm also posting the screenshot on the programming subreddit.
arjuan is offline  
Old 06/10/2009, 09:54 PM   #520 (permalink)
Member
 
sudoer's Avatar
 
Join Date: Nov 2002
Location: Boston, MA, USA (but in America's Dairyland for an extended visit)
Posts: 1,727
Likes Received: 0
Thanks: 1,508
Thanked 369 Times in 302 Posts
Default

Quote:
Originally Posted by ydaraishy View Post
They don't have any source, just binaries ...
BullCrAP! We probably don't have the kernel source, but all the java code is easily reverse (de)compiled. (See my other post on how to do this.)

Regarding some people's concern about viruses being more prevalent, the opposite is true for open-source code. Many eyeballs can spot security vulnerabilities faster than a single team can. Typically, when these are discovered, the person discovering it tries to raise the attention of someone who can fix it. If they're unsuccessful at that, the next step is to publish the vulnerability on the Internet. Publishing the vulnerability creates an "emergency" for the vendor to patch the vulnerability before an exploit occurs. In this case, Palm would just make the fix and push it out with an OTA update. Nothing to worry about here. Having the source available to scruiting is really a good thing in this case!

-- Bob
__________________
I'm both super! ... and a doer!
sudoer is offline  
Closed Thread

 

Thread Tools
Display Modes


LinkBacks (?)
LinkBack to this Thread: http://forums.webosnation.com/webos-development/184378-ok-rom-comes.html
Posted By For Type Date
webos - Gizmodo This thread Refback 05/15/2010 08:41 PM
Noticias Palm Pre en español Post #0 Refback 06/22/2009 06:05 AM
Palm Pre Hacked - Enable Developer Mode and Gain Root Access! This thread Refback 06/22/2009 01:47 AM
Palm Pre -- Engadget Japanese This thread Refback 06/21/2009 10:39 PM
Who's getting a Palm Pre - Page 5 - Rage3D Discussion Area This thread Refback 06/20/2009 10:35 AM
WebOS File System Contents - Colin Charles - FriendFeed This thread Refback 06/18/2009 11:02 PM
Recent palmpre Bookmarks on Delicious This thread Refback 06/18/2009 09:56 PM
'Hello World!' to Palm Pre - M for Mature Forums This thread Refback 06/18/2009 08:56 PM
Palm Pre Gets Its First Homebrew App, WebOS "Easy to Modify" [Palm Pre] - Download Monkey - VOD Discussion This thread Refback 06/18/2009 08:08 PM
jwz - Palm Pre This thread Refback 06/18/2009 04:52 AM
VIDEO: OMG! Original Doom game running near perfectly on Palm Pre | PalmTwit Best source of Palm Pre news This thread Refback 06/17/2009 01:22 PM
Slashdot Mobile Story | Palm Pre Does Not Get US Tethering Either This thread Refback 06/17/2009 06:47 AM
Slashdot | Palm Pre Does Not Get US Tethering Either This thread Refback 06/16/2009 11:28 PM
Slashdot Mobile Story | Palm Pre Does Not Get US Tethering Either This thread Refback 06/16/2009 11:21 PM
Please, Please...Develop for the Pre! This thread Refback 06/16/2009 10:06 PM
Palm Pre coming June 6 - Page 7 - AppleNova Forums This thread Refback 06/16/2009 08:14 PM
Slashdot Comments | Palm Pre Does Not Get US Tethering Either This thread Refback 06/16/2009 08:13 PM
The Pre/preDevCamp thread - StartupKC | Google Groups This thread Refback 06/16/2009 03:51 PM
Captains Log: 11 Juni 2009 This thread Refback 06/16/2009 02:19 PM
WebOs -- Engadget Mobile This thread Refback 06/16/2009 01:46 PM
Palm Pre Gets Its First Homebrew App, WebOS "Easy to Modify" | Gamingaisle This thread Refback 06/16/2009 01:34 PM
OK ROM comes - Page 15 - PreCentral Forums - Mobile This thread Refback 06/16/2009 11:02 AM
Palmista Blog: Konami Code: způsob jak "hacknout" Palm Pre This thread Refback 06/16/2009 08:05 AM
Pre Hacking - Palm Pre Development Talk | Google Groups This thread Refback 06/14/2009 08:42 AM
Palm's WebOS-ROM - xda-developers This thread Refback 06/14/2009 05:34 AM
ミニーの独り言 (´○`)はぁ~ This thread Refback 06/14/2009 05:03 AM
Palm Pre Apps - Gizmodo This thread Refback 06/14/2009 12:29 AM
Engadget 中文版 This thread Refback 06/13/2009 11:20 PM
Groundspeak Forums > Palm Pre Phone This thread Refback 06/13/2009 09:58 PM
honer123's Bookmarks on Delicious This thread Refback 06/13/2009 08:37 PM
programming This thread Refback 06/13/2009 04:39 PM
Portátiles, móviles y otros gadgets. Gizig - Pgina 2 This thread Refback 06/13/2009 02:27 PM
Palm Pre Really Needs TAKEphONE and 2Day! This thread Refback 06/13/2009 09:08 AM
ijվ ǵվ - Palm Pre,webOS - [Ѱɡ]Palm Pre̳ Palm Pre,QWERTY,ȫֻ,ֻ,Palm Treo,Centro,iPhone,blackberry - Powered by Discuz! This thread Refback 06/13/2009 07:02 AM
ミニーの独り言 (´○`)はぁ~ This thread Refback 06/13/2009 04:56 AM
胖梨Palm Pre 的秘密 - Konami code This thread Refback 06/13/2009 02:46 AM
Engadget 中国版 This thread Refback 06/13/2009 02:22 AM
Palm Twit Best source of Palm Pre news This thread Refback 06/13/2009 12:02 AM
pre dev wiki: Global Search Addons Collection This thread Refback 06/12/2009 11:03 PM
Engadget en español This thread Refback 06/12/2009 09:49 PM
Let the hacking commence This thread Refback 06/12/2009 08:23 PM
Rodfather - FriendFeed This thread Refback 06/12/2009 06:15 PM
Engadget This thread Refback 06/12/2009 04:10 PM
Engadget 中文版 This thread Refback 06/12/2009 03:37 PM
WebOSMania! El futuro Palm Pre GSM será 3.5G: 7.2Mbps This thread Refback 06/12/2009 03:32 PM
Please, Please...Develop for the Pre! This thread Refback 06/12/2009 01:57 PM
AnandTech This thread Refback 06/12/2009 01:38 PM
Alltop - Top Macintosh News This thread Refback 06/12/2009 12:35 PM
pre dev wiki: Change the default notification.wav Sound This thread Refback 06/12/2009 12:27 PM
Mobile Phones on I4U News This thread Refback 06/12/2009 11:59 AM


 


Content Relevant URLs by vBSEO 3.6.0