diff options
-rw-r--r-- | scripts/x86-relocs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/x86-relocs.c b/scripts/x86-relocs.c index 02914706e5b9..74e16bb15dc4 100644 --- a/scripts/x86-relocs.c +++ b/scripts/x86-relocs.c | |||
@@ -62,6 +62,13 @@ static const char * const sym_regex_kernel[S_NSYMTYPES] = { | |||
62 | 62 | ||
63 | static const char * const sym_regex_realmode[S_NSYMTYPES] = { | 63 | static const char * const sym_regex_realmode[S_NSYMTYPES] = { |
64 | /* | 64 | /* |
65 | * These symbols are known to be relative, even if the linker marks them | ||
66 | * as absolute (typically defined outside any section in the linker script.) | ||
67 | */ | ||
68 | [S_REL] = | ||
69 | "^pa_", | ||
70 | |||
71 | /* | ||
65 | * These are 16-bit segment symbols when compiling 16-bit code. | 72 | * These are 16-bit segment symbols when compiling 16-bit code. |
66 | */ | 73 | */ |
67 | [S_SEG] = | 74 | [S_SEG] = |