Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 909252d2 authored by Sam Ravnborg's avatar Sam Ravnborg
Browse files

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: default avatarSam Ravnborg <sam@ravnborg.org>
parent 35899c57
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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 */