dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Sam Ravnborg 2006-06-08 20:37:30 +02:00
parent 35899c5751
commit 909252d279
1 changed files with 2 additions and 0 deletions

View File

@ -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 */