[android-porting] minimum ram to run Android 2.2

2010-08-26 Thread Tung Dang
Hi all, Do you know what is the minimum of RAM to run Android 2.2 ? Rgs, Tung -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] USB Host Support (USB mass storage)

2010-08-26 Thread Ashish
Hi, Does Android support USB host (Mass storage,so as to access data in the USB stick by plugging it into the device.) Is thr any way to support this. Ashish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] USB Host Support (USB mass storage)

2010-08-26 Thread PREMRAJ SV
Yes you can use usb disk for booting purpose. But be sure that there is usb slot in your target board. If yes compile your kernel image with usb mass storage support and usb support- ohci support which is used to interface your usb drive with target board. -- unsubscribe: android-porting+unsubscr

Re: [android-porting] USB Host Support (USB mass storage)

2010-08-26 Thread Ashish pareek
Actually I don;t really want to boot from USB. My requirement is to have access to data on USB stick from within Android application. On Thu, Aug 26, 2010 at 5:03 PM, PREMRAJ SV wrote: > Yes you can use usb disk for booting purpose. But be sure that there is usb > slot in your target board. If y

[android-porting] wifi scan

2010-08-26 Thread guru
Hi all what is the default time gap between successive scan request in wifi.? can we increase it? Thanks Gururaja B O -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] wifi scan

2010-08-26 Thread Irfan Sheriff
Look at WifiSettings & WifiStateTracker. Its more frequent when you are in the settings (6s) than otherwise (15s). The WifiManager API allows initiatiation of scans at the rate an app wants to. On Thu, Aug 26, 2010 at 5:20 AM, guru wrote: > Hi all > > what is the default time gap between succe

Re: [android-porting] wifi scan

2010-08-26 Thread Gururaj BO
Hi Irfan, I am looking where they are specifying 6s when we are in settings? and where we set this time when initiating the scan? packages/apps/Settings/src/com/android/settings/wifi/WifiSettings.java frameworks/base/wifi/java/android/net/wifi/WifiStateTracker.java I looked these files. Thanks

[android-porting] Re: JNI ioctl problem

2010-08-26 Thread Geetha
Hi Deva, Thanks for your reply. I tried 'chmod 777 /system/bin/ifconfig but still I am facing same permisssion denied problem. Could you please reply me immediately. Thanks, Geetha On Aug 26, 1:29 am, Deva R wrote: > try 'chmod 777 ' for the file you are accessing via ioctl., > > On Wed, Aug 2

[android-porting] Possible to only kernel upgrade?

2010-08-26 Thread Build account
Hello. I just started build cupcake with kernel 2.6.27 and it was successful. Can I only upgrade Kernel to 2.6.29? I has tried to checkout 2.6.29 source based on compiled cupcake objects(?). and built. But not working with below error message on the screen. - kernel compile with ramdisk support

[android-porting] can't run a passion build on android 2.1

2010-08-26 Thread sping_comes
I'm trying to port android 2.1 to Nexus One Platform. I should run a 'passion' build but the corresponding choice doesn't exit in the in the lunch menu $ source build/envsetup.sh ... $ lunch ... Lunch menu... pick a combo: 1. generic-eng 2. simulator 3. aosp_emulator_us-eng 4.

Re: [android-porting] Possible to only kernel upgrade?

2010-08-26 Thread Ashwin Bihari
If this is a new port you are doing or starting of..you should try at least Eclair with 2.6.32. That way you're going to be in a good position to transition to FroYo with 2.6.35.. Regards -- Ashwin On Thu, Aug 26, 2010 at 4:07 AM, Build account wrote: > Hello. > > I just started build cupcake

Re: [android-porting] Re: unable to set system property

2010-08-26 Thread Robert Greenwalt
I don't think we want a huge number of system properties - there are lots of other ways to pass info around and I think many of our use cases are abuses of the system properties mechanism. If you really need more system properties, you can certainly do this on your builds. R On Wed, Aug 25, 2010

[android-porting] Re: minimum ram to run Android 2.2

2010-08-26 Thread Brad Davis
Can't give an exact answer but 64m is too little, 128m may work (depending on what is running) and 192m is suggested (especially for a slow processor). On Aug 26, 5:02 am, Tung Dang wrote: > Hi all, > > Do you know what is the minimum of RAM to run Android 2.2 ? > > Rgs, > Tung -- unsubscribe:

[android-porting] Porting on Toshiba portege g900

2010-08-26 Thread yuzyin
I am also looking Toshiba g900 port for android. I found some videos with Haret booting, is there any port for this device. It is a giant device but windows sucks on it. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Re: unable to set system property

2010-08-26 Thread Deva R
>If we try to store more than this we can not set the value. > In my phone it is already reached this value, so not able to set the vlaues. Hm, not sure what's holding still.. you can debug bionic with gdb/lauterbach(its native library only)/or trace prints, On Thu, Aug 26, 2010 at 9:13 PM, Robe

Re: [android-porting] minimum ram to run Android 2.2

2010-08-26 Thread Dianne Hackborn
I would recommend at least 128MB available to the *kernel*. In many architectures, a big chunk of RAM will be dedicated to the radio, so you need to take that into account, and the 128MB recommendation does not cover that. Also if your architecture allocates graphics surfaces in user space, bump

Re: [android-porting] Re: Porting an existing Linux device driver to the Android platform

2010-08-26 Thread John Koshi
Hi Vince, Since the Makefile found in /kernel/ is used for the build of a module, just as in Linux, that must be the correct path in the make command line. I had not done the configuration and a "make oldconfig" of the kernel I had downloaded (I''ll be using the pre-built kernel's config file from

Re: [android-porting] Re: Porting an existing Linux device driver to the Android platform

2010-08-26 Thread Vince Pascuzzi
Ok, no problem. I will give you some assistance tomorrow. Sorry, all, for not "replying to all". Vince On 2010-08-26 9:44 PM, "John Koshi" wrote: Hi Vince, Since the Makefile found in /kernel/ is used for the build of a module, just as in Linux, that must be the correct path in the make comma

[android-porting] about the mms sending

2010-08-26 Thread Weber
Hi ,I used pppd_gprs to start the pppd for GPRS ,and the board can access Internet through ppp0. but it can not send a mms. the logcat : D/ConnectivityService( 121): startUsingNetworkFeature for net 0: enableMMS D/ConnectivityService( 121): special network already active E/SendTransaction( 261):

Re: [android-porting] minimum ram to run Android 2.2

2010-08-26 Thread Tung Dang
Thank you HackBod !! Very good and clearly advise :) On Fri, Aug 27, 2010 at 4:36 AM, Dianne Hackborn wrote: > I would recommend at least 128MB available to the *kernel*. In many > architectures, a big chunk of RAM will be dedicated to the radio, so you > need to take that into account, and the

Re: [android-porting] Re: minimum ram to run Android 2.2

2010-08-26 Thread Tung Dang
Hi Davis, Thanks for your feedback :) On Fri, Aug 27, 2010 at 1:35 AM, Brad Davis wrote: > Can't give an exact answer but 64m is too little, 128m may work > (depending on what is running) and 192m is suggested (especially for a > slow processor). > > > On Aug 26, 5:02 am, Tung Dang wrote: > > H

[android-porting] Re: wifi scan

2010-08-26 Thread guru
Hi Irfan, Thanks! I got piece of code where they are setting to 6 seconds. packages/apps/Settings/src/com/android/settings/wifi/WifiLayer.java /** The delay between scans when we're continually scanning. */ private static final int CONTINUOUS_SCAN_DELAY_MS = 1; it was 6000. to cross ch

Re: [android-porting] Re: Google OMX Core

2010-08-26 Thread Lakshman
Hi David Sparks, Is there any roadmap by google to develop openMax IL core?? Thanks and regards, -Lakshman On Wed, Aug 25, 2010 at 12:44 AM, Dave Sparks wrote: > Stagefright already supports OMX codecs in the Froyo release. This is > how we integrate hardware codecs and 3rd party codecs. > >