Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread hedwin
Check if console and android.console point to the correct serial device. Both a kernel parameters sent by u-boot. Cheers, Hedwin On Thu, Jul 14, 2011 at 9:45 PM, Manish Shakya wrote: > > Hi , > > I am wondering what are the changes to be made if I have to make to port > rowboat to gumstix overo

[android-porting] why sysfs interface of RTC is not working on android?

2011-07-15 Thread rao
Hi, I'm trying to set alarm on my development board with honeycomb. root@...# ./adb shell echo "" > /sys/class/rtc/rtc0/wakealarm root@...# ./adb shell echo "+20" > /sys/class/rtc/rtc0/wakealarm root@...# ./adb shell echo standby > /sys/power/state However, am not seeing any alarm getting set ei

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread manish shakya
Yes, Both console and android.console is pointing to correct serial device i.e. ttyS2. My uboot args is console=ttyS2,115200n8 androidboot.console=ttyS2 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait init=/init vram=12M omapfb.mode=dvi:480x272MR-16@60omapdss.def_disp=lcd43 Isn't this correct?

[android-porting] Re: audio problem with record

2011-07-15 Thread amr.has
diego, thank for u help but i have audio sound working when i try musicplayer, but when i try #alsa_aplay not found alsa_aplay #alsa_amixer not found alsa_amixer but i think the problem in asound.conf is thier a way how to modify it here my asound.conf ctl.AndroidOut { type hw

[android-porting] Re: audio problem with record

2011-07-15 Thread amr.has
thanks for ur reply i wounder how i have sound working but the mic cannot work , when i use #alsa_aplay it give me :"cannot found alsa_aplay" i think the problem in asound.conf here what i modify accoriding to : http://www.alsa-project.org/alsa-doc/alsa-lib/pcm_plugins.html http://alsa.opensrc.or

[android-porting] Android Froyo+DSP on DM37x

2011-07-15 Thread lizi_85
Hello, I am trying to do the porting of Android Froyo 2.2 on a platform with DM37 (512M DRAM= 2 banks of 256M) . Even though I have configured the kernel to see both DRAM banks, Android starts and then freezes repeating a message: request_suspend_state: wakeup (#-># ) at ### init: untracked

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread hedwin
Do you use froyo or gingerbread? On Fri, Jul 15, 2011 at 3:57 PM, manish shakya wrote: > Yes, Both console and android.console is pointing to correct serial device > i.e. ttyS2. > > My uboot args is > > console=ttyS2,115200n8 androidboot.console=ttyS2 root=/dev/mmcblk0p2 rw > rootfstype=ext3 ro

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Manish Shakya
Right now I am trying to move from linux kernel 2.6.32 to 2.6.37 and use gingerbread 2.3.4. With linux kernel 2.6.32, froyo and gb 2.3.3 are working fine. I used same uboot arg as in earlier mail. On Fri, Jul 15, 2011 at 11:22 AM, hedwin wrote: > Do you use froyo or gingerbread? > > > > On Fri,

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread hedwin
in gingerbread ttyS changed to ttyO Hedwin On Fri, Jul 15, 2011 at 5:44 PM, Manish Shakya wrote: > Right now I am trying to move from linux kernel 2.6.32 to 2.6.37 and use > gingerbread 2.3.4. > > With linux kernel 2.6.32, froyo and gb 2.3.3 are working fine. I used same > uboot arg as in earlie

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Manish Shakya
What do you mean? so now uboot args should look something like this console=ttyS2,115200n8 androidboot.console=ttyO2 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait init=/init vram=12M omapfb.mode=dvi:480x272MR-16@ 60 omapdss.def_disp=lcd43 Is this change in gingerbread 2.3.4 only? Manish On F

[android-porting] Re: ALSA recording audio on Donut problem

2011-07-15 Thread Diego
On Jul 13, 6:38 pm, Diego Rondini wrote: > I don't get while I see the "err = ..." line multiple times, and it's not > clear to me what's happening in this method. Can anybody help me? > Ok, found out some more: the "err = ..." line is present several times because the function is recursive, and

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Manish Shakya
Thanks.Yes, you were right. I tried replacing with O with S. Now I can see logs in the console. Can you tell me where in the source code it says use ttyO instead of ttyS? I couldn't find in the source. Manish On Fri, Jul 15, 2011 at 11:53 AM, Manish Shakya wrote: > > What do you mean? > > so no

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread hedwin
yes, replace ttyS1 with ttyO1 it is a change in the kernel. the kernel now uses omap specific serial driver and the serial devices are now designated ttyO The ttyS are reserved for 825x based serial devices the once used originally in a PC. Hedwin On Fri, Jul 15, 2011 at 5:53 PM, Manish Shakya w

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread hedwin
its in omap-serial.h in arch/arm/plat-omap/include/plat On Fri, Jul 15, 2011 at 7:58 PM, Manish Shakya wrote: > Thanks.Yes, you were right. I tried replacing with O with S. Now I can see > logs in the console. > > Can you tell me where in the source code it says use ttyO instead of ttyS? > I cou

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Manish Shakya
Thanks got it. I think, this changes should be wrote in rowboat wiki. I wasted 2/3 days. On Fri, Jul 15, 2011 at 2:04 PM, hedwin wrote: > its in omap-serial.h in arch/arm/plat-omap/include/plat > > > On Fri, Jul 15, 2011 at 7:58 PM, Manish Shakya > wrote: > >> Thanks.Yes, you were right. I t

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Amit Pundir
Yes I agree that it should have clearly been put in the wiki. But I remember that the day Rowboat introduced 2.6.37 kernel branch, a mail was put on Rowboat mailing list notifying all these necessary changes. Regards, Amit Pundir On 7/15/11, Manish Shakya wrote: > Thanks got it. > > I think, t

Re: [android-porting] Android Froyo+DSP on DM37x

2011-07-15 Thread Amit Pundir
Hi, Please check Rowboat project, arowboat.org which already has both Froyo and Gingerbread Android port on DM37. Regards, Amit Pundir On 7/15/11, lizi_85 wrote: > Hello, > > I am trying to do the porting of Android Froyo 2.2 on a platform with > DM37 (512M DRAM= 2 banks of 256M) . Even thoug

[android-porting] Re: Android Froyo+DSP on DM37x

2011-07-15 Thread lizi_85
Hello Amit, thanks for the reply.My fault, I didn't specify I was following exactly the guide of the rowboat project and working on the sources taken from the git repository of the project. I haven't found any reference to a DM37 with 512M DDR. Is there any possibility that the prebuilt filesystem

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Manish Shakya
Amit, Can you send me link of the thread that notifies all the necessary changes? Right now, libaudio and surface flinger is crashing. I am planning to use AUDIO stub and increase size of the mem in uboot. I know I am almost there. On Fri, Jul 15, 2011 at 2:41 PM, Amit Pundir wrote: > Yes I a

Re: [android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-15 Thread Manish Shakya
Now 2.6.37 kernel + SGX v 1.7 + Android-2.3.4 is up and running in Overo Fire Gumstix. Touch screen in not running though. Increasing memory solved surface flinger problem. Got help from this thread http://groups.google.com/group/rowboat/browse_thread/thread/6e6d7fa1f14add58/e9ed143e7e9d0676?pli

[android-porting] Unable to get the webcamear working for 4G Asus EEE PC

2011-07-15 Thread Thomas
Hi I had download this version of Android and I am unable to get the webcamear working, any idea as I need to establish skype with Android 2.2 at my 4G Asus EEE PC. Please do advise. android-x86-2.2-r2-eeepc.iso -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.

[android-porting] Using 4G Asus EEE PC , web camera not working

2011-07-15 Thread Thomas
Hi I am using the Asus 4G EEE PC, with the download of this version Android 2.2 I am unable to get the webcamear up and running for skype. Please do advise. Thank you. android-x86-2.2-r2-eeepc.iso -- Send by Push Email Exchange Technology Important Notice: Confidentiality Message: This elec