diff options
author | Lukas Bulwahn <lukas.bulwahn@gmail.com> | 2021-12-29 14:15:53 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-12-30 00:20:38 +0300 |
commit | d6f12f83989bb356ac6880a954f62c7667e35066 (patch) | |
tree | dc86614c7af94b93651b9d47178841964b78c4ff /arch | |
parent | fc74e0a40e4f9fd0468e34045b0c45bba11dcbb2 (diff) | |
download | linux-d6f12f83989bb356ac6880a954f62c7667e35066.tar.xz |
x86/build: Use the proper name CONFIG_FW_LOADER
Commit in Fixes intends to add the expression regex only when FW_LOADER
is enabled - not FW_LOADER_BUILTIN. Latter is a leftover from a previous
patchset and not a valid config item.
So, adjust the condition to the actual name of the config.
[ bp: Cleanup commit message. ]
Fixes: c8dcf655ec81 ("x86/build: Tuck away built-in firmware under FW_LOADER")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20211229111553.5846-1-lukas.bulwahn@gmail.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/tools/relocs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/tools/relocs.c b/arch/x86/tools/relocs.c index c736cf2ac76b..e2c5b296120d 100644 --- a/arch/x86/tools/relocs.c +++ b/arch/x86/tools/relocs.c @@ -68,7 +68,7 @@ static const char * const sym_regex_kernel[S_NSYMTYPES] = { "(__parainstructions|__alt_instructions)(_end)?|" "(__iommu_table|__apicdrivers|__smp_locks)(_end)?|" "__(start|end)_pci_.*|" -#if CONFIG_FW_LOADER_BUILTIN +#if CONFIG_FW_LOADER "__(start|end)_builtin_fw|" #endif "__(start|stop)___ksymtab(_gpl)?|" |