Re: gdb error for 32 bit Ubuntu No symbol table is loaded. Use the "file" command.

2010-08-31 Thread mayur nande
t; On Tue, Aug 31, 2010 at 4:56 PM, mayur nande wrote: >> Hello, >> >> I guess you need to load the uncompressed kernel image (vmlinux) >> instead of the compressed one (vmlinuz). > Ok so for that what do I need to do? > Do you mean to say I need to compile a

Re: gdb error for 32 bit Ubuntu No symbol table is loaded. Use the "file" command.

2010-08-31 Thread mayur nande
Hello, I guess you need to load the uncompressed kernel image (vmlinux) instead of the compressed one (vmlinuz). Best Regards Mayur On Tue, Aug 31, 2010 at 3:35 PM, Tapas Mishra wrote: > I tried to run gdb on a 32 bit kernel image. > gdb /boot/vmlinuz-2.6.28-11-generic /proc/kcore > > and tried

Re: compiling older kernel on newer machine

2009-12-31 Thread mayur nande
Good to know that...good luck for creating the cross-toolchain. Regards Mayur On Wed, Dec 30, 2009 at 4:29 PM, Anuz Pratap Singh Tomar wrote: > Thanks a tonne Mayur, > it works fine. > > -anuz > > On Tue, Dec 29, 2009 at 10:09 PM, mayur nande wrote: >> Hi Anuz, >&

Re: compiling older kernel on newer machine

2009-12-30 Thread mayur nande
Hi Anuz, It works perfectly fine for me. My local machine looks like: # cat /etc/redhat-release Fedora release 11 (Leonidas) # uname -a Linux kratos 2.6.30.9-96.fc11.i686.PAE #1 SMP Tue Nov 3 23:41:33 EST 2009 i686 i686 i386 GNU/Linux I have 2.6.22 kernel source on this machine I did: # make mrp

Re: kernel compilation help

2009-12-28 Thread mayur nande
Murali, Please go through the latest thread on this list "Getting started with kernel development" (and may be some old threads), you will find the information you need. Here is a very good link: http://www.kroah.com/lkn/ Have fun!!! Regards Mayur On Mon, Dec 28, 2009 at 10:27 PM, Murali N wro

Re: C question

2009-10-07 Thread mayur nande
Hi Rick, Some days ago i had the same question in my mind. While going through "The Linux Kernel Architecture" book (by Wolfgang Mauerer), i got the answer: The GNU compiler supports arithmetic with void pointers as well as function pointers. The increment step is 1 byte. These are used by the ke

Re: Bluetooth mouse drivers

2008-12-28 Thread mayur nande
Hi Yousef, AFAIK, BlueZ bluetooth implementation is official bluetooth stack and part of the mainline Linux kernel. The HID(Human Interface Devices) layer is handled via hidp.ko and "hidd" lets BlueZ handle input devices like the bluetooth mouse. Regards Mayur On Sun, Dec 28, 2008 at 6:48 AM, Yo

Re: Interrupts only on one core on a dual core machines.

2008-12-11 Thread mayur nande
Hi Ranjan, May be misconfigured interrupt SMP affinity.See if this link helps: http://www.alexandersandler.net/smp-affinity-and-proper-interrupt-handling-in-linux Regards Mayur On Thu, Dec 11, 2008 at 1:22 PM, Ranjan Sinha <[EMAIL PROTECTED]> wrote: > Hi, > > I had asked this question about a y

Re: Network monitor tool

2008-12-03 Thread mayur nande
Hi Shyam, You can go for Wireshark (formerly) ethereal: http://sourceforge.net/projects/wireshark/ Regards Mayur Nande On Wed, Dec 3, 2008 at 1:04 PM, Shyam Burkule <[EMAIL PROTECTED]>wrote: > Hi All, > > I need information on open source network monitor tool that can monito

Re: kernelnewbies

2008-10-24 Thread mayur nande
Hi Ajay, The steps i would suggest would be as follows: - learn basic and advanced C and data structures. Also, reading a good OS book(TANENBAUM) would be good. - be comfortable with application development(although this step is not compulsory, my take is it good to know this) - Linux kernel devel

Re: How to find my usb storage device mount point

2008-09-11 Thread mayur nande
I guess there are appropriate messages in /var/log/messages when you insert your USB drive. tail -n 20 /var/log/message should give you the mount point;for example sda or sdb. Reading this file may be a good idea. Regards Mayur On Thu, Sep 11, 2008 at 11:57 AM, Sandeep K Sinha <[EMAIL PROTECTED]>