2005-04-16 16:24:48 -06:00
|
|
|
/*
|
|
|
|
* This supplies .note.* sections to go into the PT_NOTE inside the vDSO text.
|
|
|
|
* Here we can supply some information useful to userland.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/version.h>
|
2007-07-17 19:37:03 -06:00
|
|
|
#include <linux/elfnote.h>
|
2005-04-16 16:24:48 -06:00
|
|
|
|
2007-07-17 19:37:03 -06:00
|
|
|
/* Ideally this would use UTS_NAME, but using a quoted string here
|
|
|
|
doesn't work. Remember to change this when changing the
|
|
|
|
kernel's name. */
|
|
|
|
ELFNOTE_START(Linux, 0, "a")
|
2005-04-16 16:24:48 -06:00
|
|
|
.long LINUX_VERSION_CODE
|
2007-07-17 19:37:03 -06:00
|
|
|
ELFNOTE_END
|