[android-porting] Can I use generic/ramdisk.img for my target board?

2009-02-10 Thread ebmajor
Hi all, I'm using ARM926EJ-S target board - almost like mainstone board. When I compile android full source using only 'make' command, I can get the 3 images ramdisk.img, system.img, userdata.img under the target/.../generic directory. So can I use these 3 files for my target board? or, should

[android-porting] Re: Can I use generic/ramdisk.img for my target board?

2009-02-10 Thread Mark Wang
it depends on the File system configuration of your board. ramdisk.img is the root FS with ramdisk format. system.img and data.img will be mounted under /system, /data by default. Of course, images will be built by the cross-compilers attached the Android package. ABI will ensure the system call

[android-porting] video recorder only can capture 2s ?

2009-02-10 Thread forest
when set DEBUG=true in packages/apps/Camera/src/com/android/camera/ VideoCamera.java,VideoRecorder works well,but it has no audio, when set DEBUG=false, only the first 2 second has video&audio information,the left has only audio. SoundRecorder works well. who can tell me why,thanks~ --~--~--

[android-porting] Re: Zygote process died due to SIGSEGV

2009-02-10 Thread सरोज
Hello rajesh, I tried this command "/system/bin/strace -ff -F -tt -s 200 -o /dev/null /init" It gives the following error message: init: log_fd value=3<6>init: log init=/dev//dev/__kmsg__ init: reading config file init: device init init: open_uevent_socket=4 init: device_init...fd = 4 init: coldb

[android-porting] Re: Zygote process died due to SIGSEGV

2009-02-10 Thread Rajesh N
kindly format u r SDcard with EXT2 filesystem , it will work Rajesh On Tue, Feb 10, 2009 at 3:04 PM, Saroj (सरोज) wrote: > Hello rajesh, > > I tried this command "/system/bin/strace -ff -F -tt -s 200 -o /dev/null > /init" > It gives the following error message: > > init: log_fd value=3<6>init:

[android-porting] i.MX31 Touch screen co-ordinate transformation problem

2009-02-10 Thread Rajesh N
Dear All, I have ported Android on i.MX31 platform , touch screen is working but , co-ordinates seems to be problem in co-ordinates ! Screen seems to have shifted in halfs, anything which is pressed in center is working but pressing icon on *extreem left* will enable icon in *extreem Right*!!!

[android-porting] Quality & Affordable Jewelry, Cosmetics, Skin Care, Clothing

2009-02-10 Thread wcl...@gmail.com
Online Shopping! Jewelry, Cosmetics, Skin Care Products, Hair Care Products, Health & Wellness Products, Clothing, Shoes, Housewares, and Childrens Products Available. we take PAYPAL as the method of payment! please kindly visite our website: http://www.cnnshoe.com msn: cnnshoe2...@hotmail.com e

[android-porting] Re: Unable to open connection to wpa_supplicant error

2009-02-10 Thread Sean McNeil
There is a bug in the wpa_supplicant for wext. The values returned from the linux kernel are actually unsigned byte for signal strength and bias (I think that is the other one) whereas the wext driver treats them as unsigned. I have a small patch I've been meaning to submit to fix that. On Tue, Fe

[android-porting] Two Stage Camera Key

2009-02-10 Thread steve2641
Hi, I'm trying to understand how to implement a solution for a two stage camera key. There is an "autoFocus()" call in the Java world which translates down to an "autoFocus()" call CameraHardwareInterface. This seems to be the proper place to direct the camera key half press event, but how is th

[android-porting] Re: Porting to MIPS

2009-02-10 Thread mcuelenaere
My guesses would be bionic and dalvik needs porting (and perhaps other stuff, but that seems like the most important ones). Can I ask you to what device you're planning to port Android (as I'm also possibly interested in an Android MIPS port)? --~--~-~--~~~---~--~~

[android-porting] Re: Understanding LOCAL_SHARED_LIBRARIES

2009-02-10 Thread Ajith
Thanks. That answered my question. Ajith On Feb 9, 5:42 pm, freedom wrote: > that's for 'ld'. To see what are being executed, try >   $ cd $YOUR_ANROID_ROOT_DIR >   $ REMOVE libril objects (e.g., rm -rf out/target/product/generic/obj/ > SHARED_LIBRARIES/libril_intermediates/) >   $ . build/envse

[android-porting] Re: Two Stage Camera Key

2009-02-10 Thread Dave Sparks
When you call autoFocus(), you get a callback after focus is completed with a success or fail indicator. This is where you would display your in-focus indicator in the view finder. If the user releases the shutter button, then the app does nothing. If the user presses the shutter button, you call

[android-porting] Re: video recorder only can capture 2s ?

2009-02-10 Thread Dave Sparks
You are posting in the android-porting list. You need to be more explicit about your situation. Which hardware platform? Which branch of the Android tree? Do you have a log? On Feb 10, 12:40 am, forest wrote: > when set DEBUG=true in packages/apps/Camera/src/com/android/camera/ > VideoCamera.ja

[android-porting] AudioFlinger query

2009-02-10 Thread anand b
Hi, I have some questions on AudioFlinger working. From the code, it looks like all mixing is being done in AudioFlinger on user side. Is is possible to bypass this for some routes? For example, what happens if voice call is to be routed to BT headset? Does AudioFlinger mix this pcm data which

[android-porting] Re: AudioFlinger query

2009-02-10 Thread Dave Sparks
No, SCO output is not routed through AudioFlinger. On Feb 10, 10:38 am, anand b wrote: > Hi, > I have some questions on AudioFlinger working. From the code, it > looks like all mixing is being done in AudioFlinger on user side. > > Is is possible to bypass this for some routes? For example, wh

[android-porting] Re: Zygote process died due to SIGSEGV

2009-02-10 Thread Rizvan S
Use below script to start android processes rather than init directly. Switch to android fs from your rootfs before running this script. Make sure you can read/write on mounted sd card partition before starting this script. #!/system/bin/sh -x export PATH=/sbin:/system/sbin:/system/bin:$PATH exp

[android-porting] Re: Two Stage Camera Key

2009-02-10 Thread steve2641
Dave, I think you are slightly missing my point. This query is not related to continuous auto focus. Let me try to explain again. Say for instance you have a hardware platform with an auto focus module that requires power to hold the lens in position (except for the infinity position). When a

[android-porting] Re: Can I use generic/ramdisk.img for my target board?

2009-02-10 Thread Peter Oh
Thanks a lot for the reply, Mark. Now I got it understood. I can log in the console on my target board using ramdisk.img files generated using only 'make'. So at least for my target board(ARM926EJ-S), it is compatible with default compiling environment. Thanks. Peter Oh Device Software Engineer

[android-porting] Re: Porting to MIPS

2009-02-10 Thread David Turner
You should start by porting the C library, which would involve: - modifying the tools used to generate the syscalls stubs to emit MIPS assembler fragments, and the SYSCALLS.TXT input file for them - probably grab a few OpenBSD mips-related arch-specific header files for configuration purposes - re

[android-porting] Re: Unable to open connection to wpa_supplicant error

2009-02-10 Thread >> Jith911
Thanks Pavan, I will check it. On Feb 10, 3:51 pm, pavan savoy wrote: > hi, > > non-existance of DRIVER START/STOP RSSI, LINKSPEED, doesn't really stop > anyone from using the WLAN chip. > Our chip required a ifconfig up on the interface, before starting off the > dhcpcd. > > basically add a ser

[android-porting] How to use initramfs for root filesystem?

2009-02-10 Thread ebmajor
Dear all, I'm trying to understand how initramfs, especially 'init' program is used as a root filesystem. Usually I've used 'root=/dev/mtdblock0 rootfstype=jffs2' in kernel command line for root filesystem and my 'init' program is laid in mtdblock0 so kernel can find where the 'init' program exis

[android-porting] Re: Two Stage Camera Key

2009-02-10 Thread Dave Sparks
Got it. That's a new requirement. Write up a bug and we'll try to include it in a future release. On Feb 10, 11:45 am, steve2641 wrote: > Dave, > > I think you are slightly missing my point. This query is not related > to continuous auto focus. Let me try to explain again. > > Say for instance

[android-porting] Re: AudioFlinger query

2009-02-10 Thread anand b
Thanks Dave, Can you point me to a place in the AudioFlinger code to identify this kind of bypass? On Wed, Feb 11, 2009 at 12:27 AM, Dave Sparks wrote: > > No, SCO output is not routed through AudioFlinger. > > On Feb 10, 10:38 am, anand b wrote: >> Hi, >> I have some questions on AudioFlinger

[android-porting] Re: about epc android driver

2009-02-10 Thread Jackie Wu
The ALSA audio support has been added into Android projects. (Check http://android.git.kernel.org/, alsa_sound and alsa-lib). You can get it and make your audio work. The kernel already include ALSA driver. For the camera, you may need the uvcvideo kernel driver first. Then you need to write a Cam

[android-porting] IdeaCom touch screen

2009-02-10 Thread Troy Bennett
I managed to get android to boot on a device similar to the Aigo MID using the guide at http://wiki.androidx86.org Now I'm trying to get the touch screen to work. It uses the IdeaCom UTS6680. Anyone have any hints? --~--~-~--~~~---~--~~ unsubscribe: android-porting+

[android-porting] "(fix?) We're on the simulator; assuming data is connected" ???

2009-02-10 Thread eric_mellon
dear all: i have try to build android for eee_701, with follow make command: make TARGET_ARCH=x86 TARGET_PRODUCT=eee_701 DISABLE_DEXPREOPT=true -j2 installer_img TARGET_SIMULATOR=false TARGET_BUILD_TYPE=release and then install it to eeepc, and then i got the follow log: ... ... I/RIL ( 202

[android-porting] Re: IdeaCom touch screen

2009-02-10 Thread freedom
this could be quite time consuming. if your platform is same with Aigo MID (aka Gigabyte M528 or Compal Jax10), then the 6680 uses PS/2 port (i.e., you can access it via /dev/psaux). Since IdeaCom doesn't have source code or spec available to the public, the way you can get the touch screen to wo

[android-porting] Re: Zygote process died due to SIGSEGV

2009-02-10 Thread saroj
Hello Rajesh, I formated my USB pendrive and create an EXT2 filesystem on it. I load a fresh android filesystem on the pendrive. Then i start the android init using the following command: /system/bin/strace -ff -F -tt -s 200 -o /dev/null /init & The logcat display the following message: I/Parcel

[android-porting] Re: AudioFlinger query

2009-02-10 Thread Dave Sparks
There is no bypass. The uplink/downlink audio never reaches the application processor, it is routed in the radio layer. On Feb 10, 5:37 pm, anand b wrote: > Thanks Dave, Can you point me to a place in the AudioFlinger code to > identify this kind of bypass? > > On Wed, Feb 11, 2009 at 12:27 AM,

[android-porting] Re: about epc android driver

2009-02-10 Thread bo wang
Dear jackis , I think i have use the sound driver. cat /proc/asound/version Advanced Linux Sound Architectrue Driver Version 1.0.16rc2 i find the 701Sd use realtek ALC269 and the 701 use realtek ALC662. why it not work ?i need recompile ? Thanks Sam 2009/2/11 Jackie Wu > The ALSA audio s

[android-porting] Re: Unable to open connection to wpa_supplicant error

2009-02-10 Thread >> Jith911
Hi Sean McNeil, I had done those changes to driver_wext.c. Thanks, Jithu. On Feb 11, 7:44 am, ">> Jith911" wrote: > Thanks Pavan, I will check it. > > On Feb 10, 3:51 pm, pavan savoy wrote: > > > hi, > > > non-existance of DRIVER START/STOP RSSI, LINKSPEED, doesn't really stop > > anyone fro

[android-porting] ^^^^^^^^^^^^^^^ HOT AUNTY SWAPNA WET BOOBS ^^^^^^^^^^^^^^^

2009-02-10 Thread R Geetha
TAMIL HOT MASALA AUNTY SWAPNA --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: Zygote process died due to SIGSEGV

2009-02-10 Thread saroj
Hello Rizvan, runtime binary is missing in my android 1.0 filesystem. How you build it ??? Regards, Saroj On Feb 11, 12:34 am, Rizvan S wrote: > Use below script to start android processes rather than init directly. > Switch to android fs from your rootfs before running this script. > Make s

[android-porting] Re: Can I use generic/ramdisk.img for my target board?

2009-02-10 Thread Mark Wang
you are welcome! ^_^ On Tue, Feb 10, 2009 at 8:01 AM, Peter Oh wrote: > Thanks a lot for the reply, Mark. > > > > Now I got it understood. > > I can log in the console on my target board using ramdisk.img files > generated using only 'make'. > > So at least for my target board(ARM926EJ-S), it

[android-porting] Re: about epc android driver

2009-02-10 Thread bo wang
hi , this is my load drivers , lsmod fbcon i95 drm cfbcopyarea cfbillrect cfbimgblt font bitblit softcurosor atl2 maybe i need uvcvedio... Thanks , Sam 2009/2/11 bo wang > Dear jackis , > > I think i have use the sound driver. > cat /proc/asound/version > Advanced Linux Sound Architectrue

[android-porting] Re: Porting to MIPS

2009-02-10 Thread Androidphan
At the moment I'm just doing research in how much effort it takes to port it to a MIPS or PPC. A MIPS platform would be the Bestlink Alpha 400. For a PPC I would go for the Sam440-EP. I think porting Bionic would take a lot of effort. I'm a student, I've been doing embedded Linux for a year and a