Re: how to add...

2010-09-16 Thread matthias
you can put it in a kernel module. have a read at http://lwn.net/Kernel/LDD3/ it's a bit outdate, but should do for the first steps. 2010/9/14 mohit verma mohit89m...@gmail.com: hi all, it is my first time , i am wiriting a simple interrupt handler .how to add it to system? i mean ,how can i

Re: how to add...

2010-09-16 Thread arshad hussain
On 9/16/2010 4:40 PM, matthias wrote: you can put it in a kernel module. have a read at http://lwn.net/Kernel/LDD3/ it's a bit outdate, but should do for the first steps. 2010/9/14 mohit vermamohit89m...@gmail.com: hi all, it is my first time , i am wiriting a simple interrupt handler .how

how to add...

2010-09-14 Thread mohit verma
hi all, it is my first time , i am wiriting a simple interrupt handler .how to add it to system? i mean ,how can i compile and run this ? do i need to attach it in kernel source code and make changes and then compile and run kernel each time or is there any other way to add this without whole

Re: how to add anther file format interpreter to the kernel?

2010-07-15 Thread Pei Lin
在 2010年7月10日 上午10:11,Hei Xia heixia...@gmail.com 写道: Actually I want to make a loader to load an ELF file. The kernel ocupy the upper 1G space.If the loader is in userspace,it will occupy the userspace(from about 0x804800 ),howerver the elf that'll be loaded also wants to occupy the

Re: how to add anther file format interpreter to the kernel?

2010-07-10 Thread Hei Xia
Thank you very much. I'll learn the misc interpreter. the upper 1G space == I mean the kernel space. 2010/7/10 Greg KH g...@kroah.com On Sat, Jul 10, 2010 at 10:11:45AM +0800, Hei Xia wrote: How does wine do it? The misc interpreter, which is there for whatever you can think

Re: how to add anther file format interpreter to the kernel?

2010-07-09 Thread Hei Xia
Actually I want to make a loader to load an ELF file. The kernel ocupy the upper 1G space.If the loader is in userspace,it will occupy the userspace(from about 0x804800 ),howerver the elf that'll be loaded also wants to occupy the userspace(from 0x804800 too ) so as not to be relocated so

Re: how to add anther file format interpreter to the kernel?

2010-07-09 Thread Mulyadi Santosa
2010/7/10 Hei Xia heixia...@gmail.com: Actually I want to make a loader to load an ELF file. The kernel ocupy the upper 1G space.If the loader is in userspace,it will pardon me, upper 1G? upper in which area? overall address space? How does wine do it? i mean, Wine is registered

Re: how to add anther file format interpreter to the kernel?

2010-07-09 Thread Greg KH
On Sat, Jul 10, 2010 at 10:11:45AM +0800, Hei Xia wrote: How does wine do it? The misc interpreter, which is there for whatever you can think of. good luck, greg k-h -- To unsubscribe from this list: send an email with unsubscribe kernelnewbies to ecar...@nl.linux.org Please read the FAQ

Re: How to add uart driver for /dev/ttyS1

2009-07-14 Thread Martyn Welch
vichy wrote: 2009/7/14, Martyn Welch martyn.we...@gefanuc.com: vichy wrote: Dear all: while tracing 8250.c, serial8250_init, I find all the ports are assigned with the same uart_driver 8250 as below: static struct uart_driver serial8250_reg = { .owner = THIS_MODULE,

how to add my own module in menconfig

2008-04-08 Thread Daniel Baluta
Hello , Can you tell me how to add a new entry in the menuconfig that selects for compiling as a module a piece of code written by me. thx.

Re: how to add my own module in menconfig

2008-04-08 Thread Robert P. J. Day
On Tue, 8 Apr 2008, Daniel Baluta wrote: Hello , Can you tell me how to add a new entry in the menuconfig that selects for compiling as a module a piece of code written by me. pick a sample directory, and take a look at what you need to do in the files Kconfig and Makefile. it's fairly

Re: how to add my own module in menconfig

2008-04-08 Thread ANOOP
On Tue, Apr 8, 2008 at 5:04 PM, Daniel Baluta [EMAIL PROTECTED] wrote: Hello , Can you tell me how to add a new entry in the menuconfig that selects for compiling as a module a piece of code written by me. You need to have a look at Kconfig for other modules. You can add your entries