Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Android on Nokia n810 (OMAP2420)
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 26 - 50 of 160 - Collapse all  -  Translate all to Translated (View all originals) < Older  Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
sim0nx  
View profile  
 More options Apr 5 2008, 7:35 am
From: sim0nx <Georges.T...@gmail.com>
Date: Sat, 5 Apr 2008 04:35:05 -0700 (PDT)
Local: Sat, Apr 5 2008 7:35 am
Subject: Re: Android on Nokia n810 (OMAP2420)
I can't believe it !!!
Android runs on the maemo n810 !!!

After reading this:
http://groups.google.lu/group/android-internals/browse_thread/thread/...
for the 100th time, and following the instructions on the mentioned
link:
http://nemustech.blogspot.com/2007/12/android-porting-to-real-target-...
it works.

Here are the specifics I've implemented:
* patch /etc/init.rc
---- begin : init.rc
....
## qemu-init {
## exec /etc/qemu-init.sh
## }
network-property {
exec /etc/set_network.sh

}

/bin/chmod -R a+rw /data /tmp
/bin/chmod a+rw .
/bin/chmod -R a+rw data

# rm /dev/log (if you have)
# mkdir /dev/log;touch /dev/log/{main,events,radio}
* you can see usefull infos from strace log and /dev/log/main

and instead of:
chroot . /a.sh
I execute the android init process:
chroot . /init

Not sure yet what exactly of those steps solved the problem (maybe the
qemu one), but it does work.
After a quick try I see that the touchscreen doesn't work (the
keyboard does though), but that shouldn't be too hard to fix.

BTW, this is using an m5 kernel, and binder.c


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stolzi  
View profile  
(1 user)  More options Apr 10 2008, 2:18 am
From: stolzi <sebastian.stolzenb...@googlemail.com>
Date: Wed, 9 Apr 2008 23:18:36 -0700 (PDT)
Local: Thurs, Apr 10 2008 2:18 am
Subject: Re: Android on Nokia n810 (OMAP2420)
Great, congrats!!! I will try it on N800 as soon as I find some time
for it.

Regarding the touch screen problems:
The existing touchscreen driver propably needs to be replaced by one
that can work on fb level. See this site for details:
http://qtablet.laginen.net/doku.php. Its about porting Qt to Maemo,
but the problems are similar.

Cheers,
Sebastian

On 5 Apr., 13:35, sim0nx <Georges.T...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 10 2008, 6:48 pm
From: Georges Toth <georges.t...@gmail.com>
Date: Fri, 11 Apr 2008 00:48:25 +0200
Local: Thurs, Apr 10 2008 6:48 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Hi,

> Great, congrats!!! I will try it on N800 as soon as I find some time
> for it.

Thanks :-)

> Regarding the touch screen problems:
> The existing touchscreen driver propably needs to be replaced by one
> that can work on fb level. See this site for details:
> http://qtablet.laginen.net/doku.php. Its about porting Qt to Maemo,
> but the problems are similar.

Thanks for the link...I'll check that out soon !

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mizmit1222  
View profile  
 More options Apr 10 2008, 10:35 pm
From: mizmit1222 <mizmit1...@gmail.com>
Date: Thu, 10 Apr 2008 19:35:19 -0700 (PDT)
Local: Thurs, Apr 10 2008 10:35 pm
Subject: Re: Android on Nokia n810 (OMAP2420)
Hi,

Big congraturations! Great job!

I learned that OMAP 2420 has 3D hardware accelelator. Can you find
/dev/hw3d in your system? If there, how fast is your Kube running?

Kube applet is in [Demo App] - [Graphics] - [OpenGL|ES].

On my Zaurus C3000, which doesn't have any accelaletor, Kube
turns a bit slower than emulator on PC.

If /dev/hw3d is working, I guess Kube turns a lot faster than
emulator.
I should buy an N810 myself to play with Android...

By the way, regarding touchscreen issue, this discussion might be
interesting.

Android Zaurus: Touchscreen Driver - a small improvement
http://androidzaurus.seesaa.net/article/90045743.html#comment

>> Maybe you don't have /sys/class/input/input1/. Android looks for drivers in /sys.

>> I guess you'd better to platform_driver_register() in your dev_init() and let the
>> probe function do the current mxc_ts_init() job. Your keyboard driver or
>> corgi_ts.c would be helpful.

Regards,

On Apr 11, 7:48 am, Georges Toth <georges.t...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 11 2008, 12:15 pm
From: Georges Toth <georges.t...@gmail.com>
Date: Fri, 11 Apr 2008 18:15:16 +0200
Local: Fri, Apr 11 2008 12:15 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Hi,

mizmit1222 wrote:
> Hi,

> Big congraturations! Great job!

Thanks :-)

> I learned that OMAP 2420 has 3D hardware accelelator. Can you find
> /dev/hw3d in your system? If there, how fast is your Kube running?

Are you sure the n800/810 has 3d hardware acceleration ?
At least there is no such device node.
Anyway it runs smoothly...

> On my Zaurus C3000, which doesn't have any accelaletor, Kube
> turns a bit slower than emulator on PC.

Can't compare that right now... I'll be replying in private with a video
I just captured.... :-)

> By the way, regarding touchscreen issue, this discussion might be
> interesting.

> Android Zaurus: Touchscreen Driver - a small improvement
> http://androidzaurus.seesaa.net/article/90045743.html#comment

Thanks... I already read that page but I'm not sure if that will help me
much, I'll see next week.

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan  
View profile  
 More options Apr 11 2008, 3:20 pm
From: Mohan <surut...@gmail.com>
Date: Fri, 11 Apr 2008 12:20:10 -0700 (PDT)
Local: Fri, Apr 11 2008 3:20 pm
Subject: Re: Android on Nokia n810 (OMAP2420)
What kernel version are you using ? Did you use the n800 kernel and
ported the android specific changes ?

thanks
mohan

On Apr 5, 4:35 am, sim0nx <Georges.T...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 12 2008, 4:58 am
From: Georges Toth <georges.t...@gmail.com>
Date: Sat, 12 Apr 2008 10:58:40 +0200
Local: Sat, Apr 12 2008 4:58 am
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Mohan wrote:
> What kernel version are you using ? Did you use the n800 kernel and
> ported the android specific changes ?

I've used the latest nokia patched kernel and backported the
android-m5-rc14 kernel patch

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan Parthasarathy  
View profile  
 More options Apr 12 2008, 7:20 pm
From: "Mohan Parthasarathy" <surut...@gmail.com>
Date: Sat, 12 Apr 2008 16:20:58 -0700
Local: Sat, Apr 12 2008 7:20 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)

Thanks. Is it okay to take the user space (data, system) from rc15 ?

regards
mohan

On Sat, Apr 12, 2008 at 1:58 AM, Georges Toth <georges.t...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 13 2008, 6:28 am
From: Georges Toth <georges.t...@gmail.com>
Date: Sun, 13 Apr 2008 12:28:02 +0200
Local: Sun, Apr 13 2008 6:28 am
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Mohan Parthasarathy wrote:
> Thanks. Is it okay to take the user space (data, system) from rc15 ?

No it is not because the m5-rcX userspace expects the framebuffer driver
to support page-flipping which the framebuffer driver for the n8xx
currently does not support.
So you'll only get a blank screen.

http://elinux.org/Android_on_OMAP#Page_flipping_frame_buffer

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stolzi  
View profile  
 More options Apr 13 2008, 6:55 pm
From: stolzi <sebastian.stolzenb...@googlemail.com>
Date: Sun, 13 Apr 2008 15:55:55 -0700 (PDT)
Local: Sun, Apr 13 2008 6:55 pm
Subject: Re: Android on Nokia n810 (OMAP2420)
Hi,

I finally found the time to try your tips on my N800 and after some
hazzling it also works.
The actual trick was using my patched m5 kernel with the m3 file
system.

Georges, have you already updated the keyboard mapping in the android
config files? If yes, could please post them?

Have you tried the other touchscreen driver, I mentioned?

Regarding HW acceleration:
The OMAP 2420 has some graphics acceleration available but it has not
been utilized in N800 and N810. Because of that there are no
respective drivers running. But there should drivers available.

Regards,
Sebastian


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan Parthasarathy  
View profile  
 More options Apr 14 2008, 4:33 am
From: "Mohan Parthasarathy" <surut...@gmail.com>
Date: Mon, 14 Apr 2008 01:33:00 -0700
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)

So, with the fix there, is it okay to use m5-rc15 user space ?

thanks
mohan

On Sun, Apr 13, 2008 at 3:28 AM, Georges Toth <georges.t...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 14 2008, 4:59 am
From: Georges Toth <georges.t...@gmail.com>
Date: Mon, 14 Apr 2008 10:59:02 +0200
Local: Mon, Apr 14 2008 4:59 am
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Mohan Parthasarathy wrote:
> So, with the fix there, is it okay to use m5-rc15 user space ?

No as that fix does not work on the n8xx

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 14 2008, 6:50 am
From: Georges Toth <georges.t...@gmail.com>
Date: Mon, 14 Apr 2008 12:50:15 +0200
Local: Mon, Apr 14 2008 6:50 am
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Hi,

stolzi wrote:
> I finally found the time to try your tips on my N800 and after some
> hazzling it also works.
> The actual trick was using my patched m5 kernel with the m3 file
> system.

Good :-)
Did you use init to start android ?

> Georges, have you already updated the keyboard mapping in the android
> config files? If yes, could please post them?

I haven't had time last week for working on this any further.
Last time I worked on this I was stuck trying to figure out a way to get
the keycodes.
I'll hope to be able to work on this again this week :-(

> Have you tried the other touchscreen driver, I mentioned?

I checked that website but the only thing I could find regarding
touchscreen was that tslib.
Android used the event device directly, so this won't help.

The zaurus touchscreen driver might help to adapt the n8xx one for
working with android:
http://androidzaurus.seesaa.net/article/90045743.html#comment

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stolzi  
View profile  
 More options Apr 18 2008, 4:57 am
From: stolzi <sebastian.stolzenb...@googlemail.com>
Date: Fri, 18 Apr 2008 01:57:40 -0700 (PDT)
Local: Fri, Apr 18 2008 4:57 am
Subject: Re: Android on Nokia n810 (OMAP2420)
> Did you use init to start android ?

My setup is slightly different. I am going to describe it in detail at
the project pages.
As mentioned earlier I'm using a multiboot initfs which lets me choose
from which drive (flash, mmc1, mmc2) to boot. On the mmc I have the
Android filesystem and a small script eventually starting android's
init.

Regards,
Sebastian


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan  
View profile  
 More options Apr 19 2008, 12:14 pm
From: Mohan <surut...@gmail.com>
Date: Sat, 19 Apr 2008 09:14:11 -0700 (PDT)
Local: Sat, Apr 19 2008 12:14 pm
Subject: Re: Android on Nokia n810 (OMAP2420)
I am using the m3-rc37 tools and the corresponding kernel on N810. The
red
cylon keeps swinging but nothing happens after that. From the trace i
can see
the following errors:

15:53:39.584808 open("/dev/alarm", O_RDWR|O_LARGEFILE) = 6
15:53:39.590454 ioctl(6, 0x40086104, 0xbeef5bd0) = -1 ENOIOCTLCMD
(Unknown error 515)
15:53:39.593597 writev(3, [{"\5", 1}, {"runtime\0", 8}, {"Unable to
read rtc, No such file or directory\n\0", 47}], 3) = 56
15:53:39.602172 writev(3, [{"\5", 1}, {"runtime\0", 8}, {"Invalid time
detected, 1 set to 1167652800\n\0", 44}], 3) = 53
15:53:39.607421 ioctl(6, 0x40086105, 0xbeef5bd0) = -1 ENOIOCTLCMD
(Unknown error 515)
15:53:39.611022 writev(3, [{"\5", 1}, {"runtime\0", 8}, {"Unable to
set rtc to 1167652800: No such file or directory\n\0", 60}], 3) = 69

And later

[pid  1426] 15:53:39.820434 writev(3, [{"\4", 1}, {"ServiceManager\0",
15}, {"ServiceManager: waiting for service SurfaceFlinger\n\0", 52}],
3 <unfinished ...>
[pid  1429] 15:53:39.826965 getpid( <unfinished ...>

Is the first error fatal ? Why isn't the SurfaceFlinger starting. I do
see

15:53:39.680603 writev(3, [{"\4", 1}, {"ServiceManager\0", 15},
{"ServiceManager: addService(ui_hardware, 0x1357c)\n\0", 50}], 3) = 66

I am wondering why the SurfaceFlinger is not starting and is this the
reason for not seeing any
progress beyond red cyclon swinging ? Any clues would be
appreciated ?  i have set the permissions
to 0666 on most of the stuff. I am using ext2 filesystem on a SD card.
As i am using m3, i am using
the the driver/binder.

thanks
mohan

On Apr 18, 1:57 am, stolzi <sebastian.stolzenb...@googlemail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
PowerGUI  
View profile  
 More options Apr 20 2008, 12:32 am
From: PowerGUI <powergui...@gmail.com>
Date: Sat, 19 Apr 2008 21:32:24 -0700 (PDT)
Local: Sun, Apr 20 2008 12:32 am
Subject: Re: Android on Nokia n810 (OMAP2420)
  Can n810 make a telephone call? it seems that
this product have not sell in china now.does somebody
know whethere this product can make a telphone call in china?

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cary Harper  
View profile  
 More options Apr 20 2008, 1:39 am
From: "Cary Harper" <cary.har...@gmail.com>
Date: Sat, 19 Apr 2008 22:39:32 -0700
Local: Sun, Apr 20 2008 1:39 am
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)

The N810 is not a phone, the only way it can make a phone call is via VIOP
software when its connected to a wireless network.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guiyong Zhu  
View profile  
 More options Apr 20 2008, 11:49 pm
From: Guiyong Zhu <strong...@gmail.com>
Date: Sun, 20 Apr 2008 20:49:31 -0700 (PDT)
Local: Sun, Apr 20 2008 11:49 pm
Subject: Re: Android on Nokia n810 (OMAP2420)
Hi,

I select kernel options:

CONFIG_RTC_CLASS=y
CONFIG_ANDROID_POWER=y
CONFIG_ANDROID_POWER_STAT=y
CONFIG_ANDROID_LOGGER=y

but after n810 has bootup, the /proc/misc file shows no alarm device
available in kernel:
Nokia-N810-51-3:/sys# cat /proc/misc
 59 log_radio
 60 log_events
 61 log_main
200 tun
130 watchdog
 62 retu
 63 tahvo
Nokia-N810-51-3:/sys#

Could somebody give some hints about how to add android's alarm device
in kernel. BTW, I am using m3 kernel with m3 root file system.

On Apr 5, 7:35 pm, sim0nx <Georges.T...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan Parthasarathy  
View profile  
 More options Apr 21 2008, 12:07 pm
From: "Mohan Parthasarathy" <surut...@gmail.com>
Date: Mon, 21 Apr 2008 09:07:59 -0700
Local: Mon, Apr 21 2008 12:07 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)

This is exactly the problem i am having since yesterday. I am debugging
currently..
Also, i use m3 kernel and m3 filesystem and i see the same entries in
/proc/misc
entries. Let me know if you find something or someone has clues..

-thx
mohan


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 21 2008, 1:12 pm
From: Georges Toth <georges.t...@gmail.com>
Date: Mon, 21 Apr 2008 19:12:45 +0200
Local: Mon, Apr 21 2008 1:12 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Hi,

Mohan Parthasarathy wrote:
> This is exactly the problem i am having since yesterday. I am
> debugging currently..
> Also, i use m3 kernel and m3 filesystem and i see the same entries in
> /proc/misc
> entries. Let me know if you find something or someone has clues..

> -thx
> mohan

Use the m5 kernel instead.
If you don't see a binder entry in /proc/misc it for sure won't work...
(there also has to be a node in /dev of course..)
Also checkout elinux.org and http://code.google.com/p/android-on-n8xx/  ...

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan Parthasarathy  
View profile  
 More options Apr 21 2008, 2:09 pm
From: "Mohan Parthasarathy" <surut...@gmail.com>
Date: Mon, 21 Apr 2008 11:09:16 -0700
Local: Mon, Apr 21 2008 2:09 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)

Hi George,

I fixed the alarm driver problem. At least, it looks like the misc_register
should be called in __init and
not in late_init. Interestingly, i get other errors which i did not get
before :-) runtime seems to get
EINVALs and coredumps.

in my reading of this thread, i thought m5 filesystem had issues with n810.
Is that right ? Are you
suggesting to use both m5 filesystem and m5 kernel ? I tried this early on
and then reverted to
m3. In the pointer below, the versions are not mentioned.

thanks
mohan

On Mon, Apr 21, 2008 at 10:12 AM, Georges Toth <georges.t...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 21 2008, 3:06 pm
From: Georges Toth <georges.t...@gmail.com>
Date: Mon, 21 Apr 2008 21:06:59 +0200
Local: Mon, Apr 21 2008 3:06 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Hi,

> in my reading of this thread, i thought m5 filesystem had issues with
> n810. Is that right ? Are you
> suggesting to use both m5 filesystem and m5 kernel ? I tried this
> early on and then reverted to
> m3. In the pointer below, the versions are not mentioned.

m5 userspace does not work with the n8xx ... that's right.
There's an issue with the framebuffer driver...

I'm suggesting that you use the m5-rc14 kernel with the m3 userspace.
That combination does work fine.

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges Toth  
View profile  
 More options Apr 21 2008, 3:09 pm
From: Georges Toth <georges.t...@gmail.com>
Date: Mon, 21 Apr 2008 21:09:02 +0200
Local: Mon, Apr 21 2008 3:09 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Hey Mohan,

If you're actively working on this ... maybe you want to join the
android-on-n8xx as well, in order to document your findings on that
website and add your patches etc, for other people to find ?

Just let me know...

( http://code.google.com/p/android-on-n8xx/ )

--
regards,

Georges Toth


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan Parthasarathy  
View profile  
 More options Apr 21 2008, 3:14 pm
From: "Mohan Parthasarathy" <surut...@gmail.com>
Date: Mon, 21 Apr 2008 12:14:49 -0700
Local: Mon, Apr 21 2008 3:14 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Ok, let me try that. The main difference i guess is the binder driver.
Right ? Anything else to look for ?

On 4/21/08, Georges Toth <georges.t...@gmail.com> wrote:

--
Sent from Gmail for mobile | mobile.google.com

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mohan Parthasarathy  
View profile  
 More options Apr 21 2008, 3:16 pm
From: "Mohan Parthasarathy" <surut...@gmail.com>
Date: Mon, 21 Apr 2008 12:16:38 -0700
Local: Mon, Apr 21 2008 3:16 pm
Subject: Re: [android-internals] Re: Android on Nokia n810 (OMAP2420)
Sure. I am actively working  to get this working. I will document my
experience once i am successful

On 4/21/08, Georges Toth <georges.t...@gmail.com> wrote:

--
Sent from Gmail for mobile | mobile.google.com

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 26 - 50 of 160 < Older  Newer >
« Back to Discussions « Newer topic     Older topic »

Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google