[android-porting] Re: Android 1.0 Release Ported to Nokia N810

2008-12-09 Thread Peter McDermott
Mohan, One question: Did you reformat your internal mmc card as an ext3 filesystem as per the instructions? Solca has made a port of Android to the N810 all on his own -- independent of what we did at NthCode. Additionally, unlike us, he's ported it to a newer kernel (2.6.28) and enabled

Re: Fwd: [android-porting] Re: Android porting problem - LCD BPP

2008-12-09 Thread FlyCry
Thank you, Mathias! I have succeed in 18 bpp display at andriod with your great help. On 12月9日, 下午12时40分, FlyCry [EMAIL PROTECTED] wrote: Thanks a lot! I'll try it. On 12月9日, 上午11时00分, Mathias Agopian [EMAIL PROTECTED] wrote: Hi, On Mon, Dec 8, 2008 at 6:19 PM, FlyCry [EMAIL

[android-porting] android repo armv6 build on a omap2430 successfully running

2008-12-09 Thread Manav Gautama
Dear droids, I could get a 2.6.27 kernel ported to omap2430 based board along with android changes. Also compiled android using armv6 toolchain and could tazer it up successfully on the machine. I faced issues on the touch side of the device. Hacked ads7864.c according to

[android-porting] Re: To test the integrated codec

2008-12-09 Thread Dave Sparks
You could hack up a parser that takes a stream of raw WMA frames. I'd probably start from the WAVE file parser. On Dec 8, 9:04 pm, Yogi [EMAIL PROTECTED] wrote: Hi All, I have integrated WMA codec onto android i.e compiled successfully but i want to test that integrated codec without parser.

[android-porting] Re: Android 1.0 Release Ported to Nokia N810

2008-12-09 Thread Mohan Parthasarathy
On Tue, Dec 9, 2008 at 12:16 AM, Peter McDermott [EMAIL PROTECTED] wrote: Mohan, One question: Did you reformat your internal mmc card as an ext3 filesystem as per the instructions? Yes. Solca has made a port of Android to the N810 all on his own -- independent of what we did at NthCode.

[android-porting] Re: Android 1.0 Release Ported to Nokia N810

2008-12-09 Thread Mohan Parthasarathy
I created mmcblk0p3, created ext3, flashed the kernel and the kernel still does not come up. I did use the Debug Kernel but i can't see any message on the screen. It is hard to see what is going wrong.. Am i missing any steps ? -mohan On Tue, Dec 9, 2008 at 10:08 AM, Meizirkki [EMAIL PROTECTED]

[android-porting] Re: GPRS in my Android doesn't work .....

2008-12-09 Thread David Turner
On Tue, Dec 9, 2008 at 3:10 PM, Maxime Petazzoni [EMAIL PROTECTED] wrote: Hi, Could you explain what steps you had to go through to get GPRS working on your Android port? From what I understand, one needs at least: - a SIM card to a wireless provider with a data plan (of course) - a

[android-porting] How to use Qwerty keyboard to select icon and menu

2008-12-09 Thread Jinjun
Hi, I am using PXA270 as my development board for Android and have some difficult to use my keyboard to select icons and menus on the LCD screen. I tried to use left, right, up and down arrow key to select icon. Sometimes there is no response at all and if it does response, the second icon next

[android-porting] Re: wpa_supplicaent

2008-12-09 Thread Richard Zhao
static int control_supplicant(int startIt) { char supp_status[PROPERTY_VALUE_MAX] = {'\0'}; const char *ctrl_prop = (startIt ? ctl.start : ctl.stop); const char *desired_status = (startIt ? running : stopped); int count = 20; /* wait at most 20 seconds for completion */ if

[android-porting] Re: To test the integrated codec

2008-12-09 Thread Yogi
I have seen some test unit in android. Can I used any of that to test codec only(without parser)? On Dec 9, 9:23 pm, Dave Sparks [EMAIL PROTECTED] wrote: You could hack up a parser that takes a stream of raw WMA frames. I'd probably start from the WAVE file parser. On Dec 8, 9:04 pm, Yogi

[android-porting] how to use the rild on OMAP2430

2008-12-09 Thread teju
hi v hav ported android on OMAP2430 hardware. Can anyone tell me how to use the rild which is available. We tried to run ... rild -l /system/lib/librild.so -p /dev/ttyS1 it just hangs. Can anyone help pls --~--~-~--~~~---~--~~ unsubscribe: [EMAIL PROTECTED]

[android-porting] how to use the rild on OMAP2430

2008-12-09 Thread teju
hi v hav ported android on OMAP2430 hardware. Can anyone tell me how to use the rild which is available. We tried to run ... rild -l /system/lib/librild.so -p /dev/ttyS1 it just hangs. Can anyone help pls --~--~-~--~~~---~--~~ unsubscribe: [EMAIL PROTECTED]

[android-porting] Re: Audio support

2008-12-09 Thread Brian Swetland
[Brian Code [EMAIL PROTECTED]] You will need to either download them separately using a git-clone operation, or by editing the platform/manifest.git default.xml file. We have added the ALSA stuff to the Openmoko Freerunner port at http://git.koolu.org. The example manifest git can be found

[android-porting] Re: Building OpenCore

2008-12-09 Thread getandroid
I did those steps and built the whole android again, but still i get the same problem: ./pvplayer_engine_test ./pvplayer_engine_test: 1: Syntax error: ( unexpected I dont get any errors while building. I use ubuntu machine for building android and trying the test app on emulator. # adb.exe

[android-porting] Re: Audio support

2008-12-09 Thread Misael Lopez
[Brian Code [EMAIL PROTECTED]] You will need to either download them separately using a git-clone operation, or by editing the platform/manifest.git default.xml file. We have added the ALSA stuff to the Openmoko Freerunner port at http://git.koolu.org. The example manifest git can be found

[android-porting] Re: Building OpenCore

2008-12-09 Thread getandroid
may be I've built the whole android by chosing generic and not sim (when prompted by lunch) as joe suggested. As I'm trying to run the executable on simulator, is it that i've to build for sim and not generic??? On Dec 10, 10:34 am, getandroid [EMAIL PROTECTED] wrote: I did those steps and

[android-porting] Re: wpa_supplicaent

2008-12-09 Thread Richard Zhao
I see property_set(ctrl_prop, SUPPLICANT_NAME) is starting the wpa_supplicant service. I tried to run setprop ctrl.start wpa_supplicant manually, but wpa_supplicant is not run. I've added something in init.rc: service wpa_supplicant /system/bin/wpa_supplicant -Dwext -i eth1

[android-porting] Re: wpa_supplicaent

2008-12-09 Thread nagamatu
setprop uses property_set library included in system/core/libutil/ properties.c this api will send property information for init process through socket. with the latest init source code, init shows error message when fails to start service. check existance of /dev/socket/property_service and

[android-porting] Re: wpa_supplicaent

2008-12-09 Thread Richard Zhao
# ls /dev/socket/property_service /dev/socket/property_service I can't see any error message. init I'm using is compiled out from android 1.0 source. Thanks Richard 2008/12/10 nagamatu [EMAIL PROTECTED]: setprop uses property_set library included in system/core/libutil/ properties.c this