Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b28242e7e3c08072251da6d7bc4895fbd3e58299
Commit:     b28242e7e3c08072251da6d7bc4895fbd3e58299
Parent:     1de564bbf8b630ab356571cdbd15b7d5adb1c20d
Author:     Sam Ravnborg <[EMAIL PROTECTED]>
AuthorDate: Tue May 29 23:09:35 2007 +0200
Committer:  Sam Ravnborg <[EMAIL PROTECTED]>
CommitDate: Mon Jul 16 22:41:47 2007 +0200

    kbuild: ignore section mismatch warnings originating from .note section
    
    .note* sections are ELF notes, which are typically used by external
    tools to examine the kernel image.  Since this is removed from any
    runtime consideration, it's OK to reference any section from a .note*
    section.
    
    Signed-off-by: Jeremy Fitzhardinge <[EMAIL PROTECTED]>
    Cc: "Eric W. Biederman" <[EMAIL PROTECTED]>
    Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
---
 scripts/mod/modpost.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index ece09c5..9c35f30 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -1152,6 +1152,7 @@ static int init_section_ref_ok(const char *name)
                ".debug",
                ".parainstructions",
                ".rodata",
+               ".note",                /* ignore ELF notes - may contain 
anything */
                NULL
        };
        /* part of section name */
@@ -1228,6 +1229,7 @@ static int exit_section_ref_ok(const char *name)
        /* Start of section names */
        const char *namelist2[] = {
                ".debug",
+               ".note",                /* ignore ELF notes - may contain 
anything */
                NULL
        };
        /* part of section name */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to