[android-kernel] Re: Android Kernel source code

2011-04-13 Thread Dark Knight
You will have to check out the branch ... if you are using repo command to check out completely then in your local manifest file add this: or otherwise , if you are using GIT directly then. after cloning the repository checkout "archive/android-2.6.32" For finding out other branchs, use git bran

[android-kernel] Re: USB cdc_acm was not recognized by host

2011-04-13 Thread Squall.Hung
Hi Jagan, No, you need to assign correct values into bMasterInterface0 and bSlaveInterface0 instead of values generated dynamically. There is an easy way can avoid this problem and lets you continuing your work. You can try to re-range items in array, "usb_functions" like sample make acm to be fir

Re: [android-kernel] Booting 2.6.39 kernel

2011-04-13 Thread Ravi Chemudugunta
does your target support thumb? On Thu, Apr 14, 2011 at 3:42 AM, Mario wrote: > Hello > I'm trying to boot my board with linux kernel 2.6.39 but I'm getting > this message: > > "Kernel panic - not syncing: Attempted to kill init!" > > The kernel is taken from git://android.git.kernel.org/kernel/

Re: [android-kernel] Device Reboots suddenly, When i open camera & increase/decrease the volume Key

2011-04-13 Thread Jon Pry
I saw something like that when using armv6 and JIT. On Wed, Apr 13, 2011 at 2:33 PM, jagan <402ja...@gmail.com> wrote: > Hi All, > > I am working on android device with GB upgrade. > > My device suddenly reboots, When i open camera & operate the volume > key [increase/decrease]. > > Can any one t

[android-kernel] Device Reboots suddenly, When i open camera & increase/decrease the volume Key

2011-04-13 Thread jagan
Hi All, I am working on android device with GB upgrade. My device suddenly reboots, When i open camera & operate the volume key [increase/decrease]. Can any one tell me the valuable pointers to this issue. Thanks in advance Jagan. -- unsubscribe: android-kernel+unsubscr...@googlegroups.com w

Re: [android-kernel] Re: Iptables

2011-04-13 Thread biAji
I believe most froyo device have at least partial netfiler mod built-in. Or there is no way to enable tether feature. ^_^ On Apr 14, 2011 12:24 AM, "Rodrigo Chiossi" wrote: > > It is true that in order to use iptables on Emulator you will need to generate a custom kernel with the netfilter option

RE: [android-kernel] Iptables

2011-04-13 Thread Alex Castilio dos Santos
Thank you all for the suggestions. I'll try that all and then I post back here if any of it worked out. Date: Tue, 12 Apr 2011 11:49:23 -0700 Subject: Re: [android-kernel] Iptables From: tohits...@gmail.com To: android-kernel@googlegroups.com why not just use the busybox binary? Ive found it's

[android-kernel] Booting 2.6.39 kernel

2011-04-13 Thread Mario
Hello I'm trying to boot my board with linux kernel 2.6.39 but I'm getting this message: "Kernel panic - not syncing: Attempted to kill init!" The kernel is taken from git://android.git.kernel.org/kernel/common.git, branch remotes/origin/android-2.6.39, and I already provided to enable the follo

[android-kernel] Android Kernel source code

2011-04-13 Thread sowmya l s
Hi, How to get Android-kernel 2.6.32. if i do the following :: git clone git://android.git.kernel.org/kernel/common.git android- kernel latest kernel 2.6.36 is getting downloading. -- unsubscribe: android-kernel+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-kernel

Re: [android-kernel] Iptables

2011-04-13 Thread t0hitsugu
why not just use the busybox binary? Ive found it's saved me from a few headaches when working in c On Apr 12, 2011 11:03 AM, "Glauco Junquera" wrote: > What Android version are you using on emulator? > I had a similar problem with Android 2.3 > > Try to use iptables 1.4.7 instead of 1.3.7 and pro

Re: [android-kernel] Re: Iptables

2011-04-13 Thread Rodrigo Chiossi
It is true that in order to use iptables on Emulator you will need to generate a custom kernel with the netfilter options enabled. As for real devices, you may be able to find devices on the market with netfilter enabled kernel. As far as i remember, the Galaxy S used to ship with netfilter support

[android-kernel] Re: Iptables

2011-04-13 Thread biAji
On Apr 11, 2:01 am, Alex Castilio dos Santos wrote: > Hi people, > > I have a university project using Android. I need iptables on Android > emulator, so I can test my project program on the PC. But I'm having some > trouble with that. I'll explain what I have done. > > I remounted / using "mo

[android-kernel] Re: Bluez HID

2011-04-13 Thread Kenneth Skovhede
> > Can I request AID_NET_RAW permission > > from a manifest file? And if so, how? > > But you must request it for the hci0 interface isn't it > Can you do that ? I'm not sure what you mean, I would like the caller (i.e. my app user) to be a member of the AID_NET_RAW / "net_raw" group so it

Re: [android-kernel] Re: USB cdc_acm was not recognized by host

2011-04-13 Thread jagan
means can i remove the comments on bMasterInterface0 & bSlaveInterface0. is that the solution. On Wed, Apr 13, 2011 at 2:17 PM, Squall.Hung wrote: > Thanks All, > > I found the root cause and solved it on device side. > In my cause bMasterInterface and bSlaveInterface of usb_cdc_union_desc > are

Re: [android-kernel] Re: Bluez HID

2011-04-13 Thread Pavan Savoy
On Wed, Apr 13, 2011 at 2:49 PM, Kenneth Skovhede wrote: > Yes, that must be it. > > Can I request AID_NET_RAW permission > from a manifest file? And if so, how? But you must request it for the hci0 interface isn't it Can you do that ? > I looked at the permissions, but none seem to map to

[android-kernel] Re: Bluez HID

2011-04-13 Thread Kenneth Skovhede
Yes, that must be it. Can I request AID_NET_RAW permission from a manifest file? And if so, how? I looked at the permissions, but none seem to map to AID_NET_RAW: http://developer.android.com/reference/android/Manifest.permission.htm Regards, Kenneth -- unsubscribe: android-kernel+unsubscr...@

[android-kernel] Re: USB cdc_acm was not recognized by host

2011-04-13 Thread Squall.Hung
Thanks All, I found the root cause and solved it on device side. In my cause bMasterInterface and bSlaveInterface of usb_cdc_union_desc are not correctly mapped to host side (usb interface generation). Temporary I changed the sequence of usb function initialization (make acm be as first one initia

Re: [android-kernel] Re: Bluez HID

2011-04-13 Thread Pavan Savoy
On Sat, Apr 9, 2011 at 8:08 PM, Kenneth Skovhede wrote: > I have struck on the same problem, from another angle. > > The problem for me is permissions. > If I run the same line as root, all works fine. > > I have tried a number of different permission settings, > but to no avail. isn't this becau