Re: [android-kernel] Re: complie samsung kernel error

2011-01-27 Thread 杨竹
I just use the s3c6410 soc , and make the 6400config file in the /arch/arm/configs/ there is no problem in the 2.6.29 kernel.only the 2.6.35 kernel has the error. 2011/1/28 Srikant : > My be you're using a wrong config file. > > Which CPU/board you're using? > > > > On Jan 27, 9:51 am, 杨竹 wrote:

Re: [android-kernel] the bootloader used for the linux kernel

2011-01-27 Thread Arun K. Singh
It has to be u-boot or a proprietary enhancement of same at best... implementing a proprietary boot loader for Linux doesn't make much sense ... Best Regards, Arun K. Singh www.crazydaks.com On Fri, Jan 28, 2011 at 12:38 PM, Earlence wrote: > 1. What bootloader is used for the Linux kernel o

[android-kernel] the bootloader used for the linux kernel

2011-01-27 Thread Earlence
1. What bootloader is used for the Linux kernel on android phones? 2. where can I get its source code? 3. Is it vendor specific and closed source? 4. If so, how do these guys on XDA manage to replace it with another bootloader? 5. Keeping the above point in mind, is it possible to use an open sourc

[android-kernel] Re: How to hook up Linux Device Driver in Android Framework?

2011-01-27 Thread Chris Stratton
There are tons of different ways you could potentially do this and make it work, several of which are used for different features already. The challenge is more that if you hope to get the result of your project through google CTS testing to become a google experience device, you'll have to find a

[android-kernel] Re: creating a Linux device driver

2011-01-27 Thread Chris Stratton
And there are no acceptable generic methods for arbitrary purposes? On Jan 28, 12:15 am, Greg KH wrote: > On Thu, Jan 27, 2011 at 9:01 PM, Chris Stratton wrote: > > He clearly stated his need, which was to transfer an array of data > > into the driver. > > How to do this all depends on what type

Re: [android-kernel] Re: creating a Linux device driver

2011-01-27 Thread Greg KH
On Thu, Jan 27, 2011 at 9:01 PM, Chris Stratton wrote: > He clearly stated his need, which was to transfer an array of data > into the driver. How to do this all depends on what type of driver it is. That is the important thing as the kernel has standard interfaces to userspace that depend on th

[android-kernel] Re: creating a Linux device driver

2011-01-27 Thread Chris Stratton
He clearly stated his need, which was to transfer an array of data into the driver. On Jan 27, 9:38 pm, Greg KH wrote: > On Thu, Jan 27, 2011 at 5:10 PM, jon.schell wrote: > > The data is not static.  Yes, I know there are examples, I would like > > to see one of them. > > What is wrong with all

[android-kernel] Re: complie samsung kernel error

2011-01-27 Thread Srikant
My be you're using a wrong config file. Which CPU/board you're using? On Jan 27, 9:51 am, 杨竹 wrote: > I'm git clone get the android samsung kernel 2.6.35 ,build the > s3c6400config but get the error: > > arch/arm/plat-samsung/pm.c:33:33: error: plat/irq-eint-group.h: No > such file or director

Re: [android-kernel] Re: creating a Linux device driver

2011-01-27 Thread Greg KH
On Thu, Jan 27, 2011 at 5:10 PM, jon.schell wrote: > The data is not static.  Yes, I know there are examples, I would like > to see one of them. What is wrong with all of the examples provided in the book you read, and in the kernel itself? > You can say what file it would be in in the > kernel

[android-kernel] Re: creating a Linux device driver

2011-01-27 Thread jon.schell
The data is not static. Yes, I know there are examples, I would like to see one of them. You can say what file it would be in in the kernel source. My problem is that I don't know where to look or what search terms to use in order to find these examples. On Jan 27, 5:24 am, Robert Beckett wrot

[android-kernel] OTG on Nexus S

2011-01-27 Thread Steve Modica
I've been trying to get my Nexus S to act as a host via OTG. I've discovered that plugging in a microB to female A adapter that has the ID pin grounded kicks the OTG code. The s3c_udc driver kicks out a message that it's initializing and it attempts to bring up vbus power. That's where it sto

Re: [android-kernel] Re: gldfish kernel and goldfish kernel

2011-01-27 Thread Virgil Mihailovici
I'm pretty sure that's a typo. And I was trying to get an answer for your other question too, however, I'm afraid the answer would be that .29 is the latest one available, I would like to see a confirmation of that though. Cheers, Virgil On 1/27/11 8:25 AM, "Apoorva Iyer" wrote: >Ok, I feel tha

Re: [android-kernel] Re: ARM TrustZone features

2011-01-27 Thread Abhinayak Mishra
Motorola does. I would expect even Apple to be using it. Just that the code would not be in the open domain. Regards, Abhi On Wed, Jan 26, 2011 at 11:16 PM, Earlence wrote: > I dont think any of the android phone vendors are doing anything with > TrustZone. > So, I'm doing a bit of my own resea

[android-kernel] lrzsz on android

2011-01-27 Thread Anshuman
Has anyone got lrzsz to work on android? I tried cross compiling lrzsz-0.12.20 for android but it has some library dependencies which I do not want to get deeper into as of now. -- unsubscribe: android-kernel+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-kernel

[android-kernel] How to hook up Linux Device Driver in Android Framework?

2011-01-27 Thread parth shah
Hello Guys, I'm new to android but i know how to develop device driver in Linux. Can anybody guide me on how android middle ware basically call driver? where i have to make the change if i want to make the link between Linux Device Driver and android middle ware? Regards, Parth -- unsubscribe

[android-kernel] USB: android gadget: issue in interface_number while using USB CV.

2011-01-27 Thread Maulik Mankad
Hello, I am using Android Froyo on the android device. I have the following query. While running USB CV MSC tests I found that the wIndex parameter sent by the USB CV application is not matching the fsg->interface_number in function fsg_setup() for USB_BULK_RESET_REQUEST and USB_BULK_GET_MAX_LUN_

Re: [android-kernel] NDK Toolchain and "Unknown symbol _GLOBAL_OFFSET_TABLE_" in kernel module

2011-01-27 Thread Steven Coutts
On Tuesday 25 Jan 2011 21:50:32 Alessio Bianchi wrote: > Hi, I used the NDK toolchain (arm-linux-androideabi-*) to build a custom > kernel for the Nexus One. The kernel compiled and works perfectly on the > device, but when I try to insert the bcm4329 kernel module for the > wireless interface, I g

[android-kernel] complie samsung kernel error

2011-01-27 Thread 杨竹
I'm git clone get the android samsung kernel 2.6.35 ,build the s3c6400config but get the error: arch/arm/plat-samsung/pm.c:33:33: error: plat/irq-eint-group.h: No such file or directory arch/arm/plat-samsung/pm.c: In function 's3c_pm_enter': arch/arm/plat-samsung/pm.c:371: error: 'S5P_WAKEUP_STAT

[android-kernel] Re: gldfish kernel and goldfish kernel

2011-01-27 Thread Apoorva Iyer
Ok, I feel that I wasn't being clear about my first question. Why is 2.6.29 called gldfish? Is it a typo? On Jan 27, 11:24 am, Apoorva Iyer wrote: > Hi all, > > I'm new to Android Kernel development. I'm currently trying to build a > kernel for the emulator. A question that I have is, what's the

[android-kernel] gldfish kernel and goldfish kernel

2011-01-27 Thread Apoorva Iyer
Hi all, I'm new to Android Kernel development. I'm currently trying to build a kernel for the emulator. A question that I have is, what's the difference between "android-gldfish-2.6.29" and "android- goldfish-2.6.27" besides the increment in version numbers. Also, why are there no goldfish kernel

Re: [android-kernel] creating a Linux device driver

2011-01-27 Thread Robert Beckett
if it is static data, that isnt going to change, then I would do that as a firmware binary blob. You can put the data in a file, and use the firmware_class functionality to get it from userland in to the kernel. e.g. struct firmware * fw; request_firmware(&fs, ", ); The data from the file is

Re: [android-kernel] Motorola Charm

2011-01-27 Thread Tiago Maluta
On Tue, Jan 25, 2011 at 9:45 PM, Фьодор wrote: > > I know about "erasesize" > > But where i can get definition for > BOARD_FLASH_BLOCK_SIZE > > > # #dev:    size   erasesize  name > # #mtd0: 0018 0002 "pds" > # #mtd1: 0006 0002 "cid" > # #mtd2: 000a 0002 "logo" > # #mtd3: 0