[android-kernel] Re: Loadable Kernel Module

2009-12-15 Thread perumal316
Hi, I currently working on a monitoring tool in a form of LKM, which I want to use to monitor the system calls made and aruguments passed during the calls. I can access into the system call table and replace system calls (using the LKM) but this is only for one system call. Any idea how to captu

[android-kernel] USB ADB Device connected notification icon still present even after device removed

2009-12-15 Thread Giri
Hi, I am running USB ADB on my development platform, am using 2.6.29 kernel. If i insert the USB cable after kernel boot-up, after UI comes (after ADB daemon is started in the init.rc) , then ADB work perfectly fine and if i remove the cable, then disconnect event is notified properly to the ADB d

[android-kernel] Re: Compiling Android Kernel For X86

2009-12-15 Thread mundou
Are you sure you're building the Android kernel source codes? I downloaded the kernel from 'git://android.git.kernel.org/kernel/ common.git' and there is no /drivers/staging/ directory... I guess you are building the original Linux kernel... On 12月15日, 下午9时35分, Santosh Kadam wrote: > Hi there - >

[android-kernel] Re: strace

2009-12-15 Thread perumal316
Hi, I currently working on a monitoring tool in a form of LKM, which I want to use to monitor the system calls made and aruguments passed during the calls. I can access into the system call table and replace system calls (using the LKM) but this is only for one system call. Any idea how to captu

[android-kernel] Re: Does 2.6.32 support G43(GMA X4500) chipset ?

2009-12-15 Thread journeyer
Hi, greg k-h and people on this list Thank you for your answer. I will try your way soon. Have a good day On 12월16일, 오전2시37분, Greg KH wrote: > On Tue, Dec 15, 2009 at 2:12 AM, journeyer wrote: > > Hi, list > > > I am now working with Android-x86 project. > > I tested android-x86 iso image on g

Re: [android-kernel] Compiling Android Kernel For X86

2009-12-15 Thread Yi Sun
You can pick up android kernel with tested configuration from android-x86.org. We have both 2.6.29 and 2.6.32 kernels (the 2.6.32 is only hosted on a private git server for testing internal). Yi On Tue, 2009-12-15 at 09:35 -0800, Greg KH wrote: > On Tue, Dec 15, 2009 at 5:35 AM, Santosh Kadam wrot

Re: [android-kernel] Does 2.6.32 support G43(GMA X4500) chipset ?

2009-12-15 Thread Greg KH
On Tue, Dec 15, 2009 at 2:12 AM, journeyer wrote: > Hi, list > > I am now working with Android-x86 project. > I tested android-x86 iso image on general x86 systems. Among them, one > which has G43 as its chipset fails to bootup all the wat upto the > graphics UI. Console was able to use. > > I use

Re: [android-kernel] How to change kernel compression

2009-12-15 Thread Greg KH
On Mon, Dec 14, 2009 at 9:07 PM, SMAUG wrote: > I would like to change the compression method used in the kernel > section of a boot image. > Currently the kernel is compressed with gzip -9 and the ramdisk with > zlib -6. > I would like to have both compressed with zlib. Why? What problem are yo

Re: [android-kernel] Compiling Android Kernel For X86

2009-12-15 Thread Greg KH
On Tue, Dec 15, 2009 at 5:35 AM, Santosh Kadam wrote: > Hi there - > > I have downloaded the androind kernel from the following repository > > repo init -u git://android.git.kernel.org/platform/manifest.git > > .. > I executed make menuconfig and created a standard configuratin file. > > N

[android-kernel] When linux version 2.6.32 will be used?

2009-12-15 Thread journeyer
Hi, List I am working with Android-x86 project. The version of it is 2.6.29 (on donut). I installed android-x86(1.6 donut) on several PC and tested. And I found Intel G43 chipset is not supported. Only G31 chipset is supported now from my testing. I discussed this with people and they told me th

[android-kernel] Does 2.6.32 support G43(GMA X4500) chipset ?

2009-12-15 Thread journeyer
Hi, list I am now working with Android-x86 project. I tested android-x86 iso image on general x86 systems. Among them, one which has G43 as its chipset fails to bootup all the wat upto the graphics UI. Console was able to use. I used android-x86 donut with kernel 2.6.29 and 2.6.32. I guessed 2.6

Re: [android-kernel] strace

2009-12-15 Thread Alberto Panizzo
Hi Perumal Il giorno dom, 13/12/2009 alle 23.31 -0800, perumal316 ha scritto: > Hi, > > I want to trace the system calls (using strace) made by Android > Applications. I can do it using terminal emulator or adb shell. > > I wrote a simple Hello World app in C and the Cross-Compile it and adb > p

[android-kernel] Re: netfilter kernel module questions

2009-12-15 Thread mundou
As far as I know, you can compile your own kernel image with netfilter module configured on. The default kernel configuration does not have 'netfilter' built-in. You can add it while doing 'menu-config'. In the kernel source codes there does have netfilter implementations in \net \netfilter folder.

[android-kernel] Compiling Android Kernel For X86

2009-12-15 Thread Santosh Kadam
Hi there - I have downloaded the androind kernel from the following repository repo init -u git://android.git.kernel.org/platform/manifest.git .. I executed make menuconfig and created a standard configuratin file. Now, I am trying to build this kernel -- by the folling command. #make

[android-kernel] How to change kernel compression

2009-12-15 Thread SMAUG
I would like to change the compression method used in the kernel section of a boot image. Currently the kernel is compressed with gzip -9 and the ramdisk with zlib -6. I would like to have both compressed with zlib. Any suggestion on how to do this? Thanks -- unsubscribe: android-kernel+unsubscr

[android-kernel] Re: Internal module kernel

2009-12-15 Thread mundou
You just need to push your *.ko into the system and that's enough. There is no necessity to put source codes in. Or you just mean that you do not want '*.ko's represented? I think that's not possible, unless you build your module with the kernel together... On 12月11日, 上午12时02分, Ben Linus wrote: >

Re: [android-kernel] Internal module kernel

2009-12-15 Thread Alberto Panizzo
Hi Fabrizio..? Il giorno gio, 10/12/2009 alle 08.02 -0800, Ben Linus ha scritto: > Hi all, > sorry for my english, i would like to compile the driver for sd/mmc > (for emulator) as an internal module kernel and load it after the boot > up,through insmod command, but the module sources must be pres