mirror of
https://github.com/dynup/kpatch
synced 2025-03-25 04:16:39 +00:00
kpatch-gcc: update ignorelist to avoid foo/.lib_exports.o files
Upstream kernel commit 7f2084fa55e6 ("[kbuild] handle exports in lib-y objects reliably") (v4.9+) added temporary dummy .lib_exports.o objects to the kernel build. As these ephemeral files don't contain any code, update the kpatch-gcc glob pattern to ignore them. (glob pattern suggested by flaming-toast) Fixes #686.
This commit is contained in:
parent
1308787995
commit
d526805619
@ -32,7 +32,7 @@ if [[ "$TOOLCHAINCMD" = "gcc" ]] ; then
|
||||
arch/x86/vdso/*|\
|
||||
arch/x86/entry/vdso/*|\
|
||||
drivers/firmware/efi/libstub/*|\
|
||||
.*.o)
|
||||
*.*.o)
|
||||
break
|
||||
;;
|
||||
*.o)
|
||||
|
Loading…
Reference in New Issue
Block a user