public inbox for linux-newbie@vger.kernel.org
 help / color / mirror / Atom feed
* List of kernel symbols in 2.6.5 kernel.
@ 2005-09-28  6:13 P.Manohar
  2005-09-28  8:00 ` Sergio Paracuellos
  0 siblings, 1 reply; 4+ messages in thread
From: P.Manohar @ 2005-09-28  6:13 UTC (permalink / raw)
  To: linux-newbie

hai all,

     In 2.4 kernels we have the complete list of kernel symbols with
"ksyms -a", but in 2.6.5 the list is incomplete , is there any mechanism 
for getting the complete list of kernel symbols and their associated memoy 
locations.

Any small help is appreciated.

Thanks & Regards,
P.Manohar.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: List of kernel symbols in 2.6.5 kernel.
  2005-09-28  6:13 List of kernel symbols in 2.6.5 kernel P.Manohar
@ 2005-09-28  8:00 ` Sergio Paracuellos
  2005-09-30  4:19   ` P.Manohar
  2005-12-31  6:46   ` keyboard driver's starting function P.Manohar
  0 siblings, 2 replies; 4+ messages in thread
From: Sergio Paracuellos @ 2005-09-28  8:00 UTC (permalink / raw)
  To: P.Manohar; +Cc: linux-newbie

El mié, 28-09-2005 a las 11:43 +0530, P.Manohar escribió:
> hai all,
> 
>      In 2.4 kernels we have the complete list of kernel symbols with
> "ksyms -a", but in 2.6.5 the list is incomplete , is there any mechanism 
> for getting the complete list of kernel symbols and their associated memoy 
> locations.
Hi,

You could try with:

	cat /proc/kallsyms

Cheers,

	Sergio
> 
> Any small help is appreciated.
> 
> Thanks & Regards,
> P.Manohar.
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: List of kernel symbols in 2.6.5 kernel.
  2005-09-28  8:00 ` Sergio Paracuellos
@ 2005-09-30  4:19   ` P.Manohar
  2005-12-31  6:46   ` keyboard driver's starting function P.Manohar
  1 sibling, 0 replies; 4+ messages in thread
From: P.Manohar @ 2005-09-30  4:19 UTC (permalink / raw)
  To: Sergio Paracuellos; +Cc: linux-newbie

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1412 bytes --]


thank you.  I tried with /proc/kallsyms.
In 2.6.9 if you set CONFIG_ALL_SYMBOLS  and recompile the kernel , then we 
can have all the kernel symbols list.
That option is not there in 2.6.5 kernels.
In the latter case we are unable to get the list of all symbols. Any 
suggestions on this.

thanks & regards,
P.manohar.

On Wed, 28 Sep 2005, Sergio Paracuellos wrote:

> El mié, 28-09-2005 a las 11:43 +0530, P.Manohar escribió:
>> hai all,
>>
>>      In 2.4 kernels we have the complete list of kernel symbols with
>> "ksyms -a", but in 2.6.5 the list is incomplete , is there any mechanism
>> for getting the complete list of kernel symbols and their associated memoy
>> locations.
> Hi,
>
> You could try with:
>
> 	cat /proc/kallsyms
>
> Cheers,
>
> 	Sergio
>>
>> Any small help is appreciated.
>>
>> Thanks & Regards,
>> P.Manohar.
>> -
>> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at http://www.linux-learn.org/faqs
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* keyboard driver's starting function
  2005-09-28  8:00 ` Sergio Paracuellos
  2005-09-30  4:19   ` P.Manohar
@ 2005-12-31  6:46   ` P.Manohar
  1 sibling, 0 replies; 4+ messages in thread
From: P.Manohar @ 2005-12-31  6:46 UTC (permalink / raw)
  To: Sergio Paracuellos; +Cc: P.Manohar, linux-newbie

Greetings,
        I have a small doubt in Linux kernel keyboard driver.
In 2.4 kernels the starting fuction of keyboard driver is 
"handle_scancode".  But in 2.6 kernels the keyboard interface is changed 
drastically.  If you familiar with that can you tell me the 
starting fuction of keyboard interace which gets the scancodes in 2.6 kernels.

Thanks In Advance
P.Manohar.


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-12-31  6:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-28  6:13 List of kernel symbols in 2.6.5 kernel P.Manohar
2005-09-28  8:00 ` Sergio Paracuellos
2005-09-30  4:19   ` P.Manohar
2005-12-31  6:46   ` keyboard driver's starting function P.Manohar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox