Re: linux booting

2010-02-18 Thread Kalpesh Rathod
Hi, bootm 0xaddr What is the significance of this address ? Is this has any correlation with lds file ? or i can use any random address ? This is the entry point of the uImage. You can find it by objdump vmlinux -x | grep start address where, vmlinux is the image from which uImage was

ieee papers

2010-02-18 Thread Krushnaal Pai
Anybody got any full sample ieee papers/abstracts?... Plz mail me guyz..

Re: linux booting

2010-02-18 Thread Shankar Ganesh
On Thu, Feb 18, 2010 at 3:44 AM, Kalpesh Rathod kalpeshrat...@gmail.comwrote: Hi, bootm 0xaddr What is the significance of this address ? Is this has any correlation with lds file ? or i can use any random address ? This is the entry point of the uImage. You can find it by

Re: linux booting

2010-02-18 Thread Jigar Jajal
On 2/18/2010 5:05 PM, Shankar Ganesh wrote: On Thu, Feb 18, 2010 at 3:44 AM, Kalpesh Rathod kalpeshrat...@gmail.com mailto:kalpeshrat...@gmail.com wrote: Hi, bootm 0xaddr What is the significance of this address ? Is this has any correlation with lds file ? or

/sys file system not created

2010-02-18 Thread J.Hwan.Kim
Hi, everyone I'm using AT91SAM9260 and kernel patched by ATMEL. The version is 2.6.27. But Kernel does not have /sys file system. My .config file tells CONFIG_SYSFS = y. How can I use /sys file in my system. Thanks in advance. Best Regards, J.Hwan Kim -- To unsubscribe from this list: send an

Re: /sys file system not created

2010-02-18 Thread Bernd Petrovitsch
Hi! On Don, 2010-02-18 at 22:09 +0900, J.Hwan.Kim wrote: [...] But Kernel does not have /sys file system. My .config file tells CONFIG_SYSFS = y. How can I use /sys file in my system. You must mount it just as any other filesystem. Bernd -- Bernd Petrovitsch Email :

how to know what files build in one module?

2010-02-18 Thread loody
Dear all: I have one question how do I figure out what files build withing a module? Kcnofig helps to define each CONFIG. Makefile determine which file will be compiled. But how does the kernle finally know what is the name of module and how many files are linked in this module? appreciate your

Re: ieee papers

2010-02-18 Thread Mulyadi Santosa
On Thu, Feb 18, 2010 at 4:24 PM, Krushnaal Pai krisonea...@gmail.com wrote: Anybody got any full sample ieee papers/abstracts?... Plz mail me guyz.. Since when kernelnewbies becomes the new place to ask for IEEE paper? PS: Rik, could these things happen

Re: linux booting

2010-02-18 Thread shankarGanesh
there is no relation between this address and address specified in lds, please CMIIW. Thanks for your help . Regards, Shankar -- To unsubscribe from this list: send an email with unsubscribe kernelnewbies to ecar...@nl.linux.org Please read the FAQ at

Re: ieee papers

2010-02-18 Thread Denis Kirjanov
Recently there are too many messages not related to the Linux kernel topic. And this is a bad sign :/ On Thu, Feb 18, 2010 at 7:04 PM, Mulyadi Santosa mulyadi.sant...@gmail.comwrote: On Thu, Feb 18, 2010 at 4:24 PM, Krushnaal Pai krisonea...@gmail.com wrote: Anybody got any full sample ieee

Re: ieee papers

2010-02-18 Thread Krushnaal Pai
OK... SORRY FOR USING UR PORTAL FOR IEEE PAPERS WONT DO IT AGAIN On Thu, Feb 18, 2010 at 11:29 PM, Denis Kirjanov kirja...@gmail.com wrote: Recently there are too many messages not related to the Linux kernel topic. And this is a bad sign :/ On Thu, Feb 18, 2010 at

Re: how to know what files build in one module?

2010-02-18 Thread Joel Fernandes
Makefile determine which file will be compiled. Makefile also determines which objects are linked together to produce your final relocatable kernel module. But how does the kernle finally know what is the name of module and The module name comes IMO from the final object-name.ko. how many

Re: how to know what files build in one module?

2010-02-18 Thread Joel Fernandes
But how does the kernle finally know what is the name of module and The module name comes IMO from the final object-name.ko. More precisely the module name is specified in the Makefile. For example for the ext2 kernel module, the ext2-y and ext2.o entries in the Makefile tells the kernel build

Schedule() call in driver context.

2010-02-18 Thread StephanT
Hello all, Why would a linux driver call schedule() ? The LDD proposes this method to fight systems hangs caused by an infinite loop in the driver. In this case the schedule() call would be a workaround. I think better fix the infinite loop and abstain to call schedule()... I found more than

lost bounds.h in include/linux

2010-02-18 Thread loody
Dear all: I try to build external modules with 2.6.31.19-generic headers in my ubuntu9.10. I type make clean in the 2.6.31.19-generic-headers and that delete my bounds.h. From website, http://bbs.archlinux.org/viewtopic.php?pid=695783, I try to use make prepare to save it back, and I get error

can we build external module with generic header?

2010-02-18 Thread vichy
Dear all: I use Ubuntu 9.10 with kernel 2.6.31.19 and I try to build drivers/media/video in 2.6.31.12 with kernel header 2.6.31.19 that I apt-get intall from web. ( I successfully build drivers/media/video in 2.6.31.12 source code. But I find the insmod told me the version is wrong. So I rebuild