aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2006-06-08 20:37:30 +0200
committerSam Ravnborg <sam@mars.ravnborg.org>2006-06-08 20:37:30 +0200
commit909252d279dd5d47e44c125558e87bb44097289f (patch)
tree43a1a5add53e8fca6be8fb78dc6ed5644bdf0a9c /scripts
parent35899c57516be6eaa42cc27151767c52d75b2979 (diff)
kbuild: fix false section mismatch with ARCH=um build
Ignoring references to .init.text, .exit.text from the .plt section brought the false positives down to two warnings for a defconfig build of ARCH=um on x86_64. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mod/modpost.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 94047bc9996..a70f5ddb705 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -822,6 +822,7 @@ static int init_section_ref_ok(const char *name)
".pdr",
"__param",
".smp_locks",
+ ".plt", /* seen on ARCH=um build on x86_64. Harmless */
NULL
};
/* Start of section names */
@@ -894,6 +895,7 @@ static int exit_section_ref_ok(const char *name)
".eh_frame",
".stab",
".smp_locks",
+ ".plt", /* seen on ARCH=um build on x86_64. Harmless */
NULL
};
/* Start of section names */