From d378b245e5f36f73e9902a9ac43af45c650e0ce2 Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Wed, 28 Oct 2015 11:39:55 -0500 Subject: [PATCH] kpatch-gcc: add libstub to ignore list The firmware libstub library isn't a part of the proper runtime kernel and can be safely ignored. Fixes: #518 --- kpatch-build/kpatch-gcc | 1 + 1 file changed, 1 insertion(+) diff --git a/kpatch-build/kpatch-gcc b/kpatch-build/kpatch-gcc index 41f6e96..9e42275 100755 --- a/kpatch-build/kpatch-gcc +++ b/kpatch-build/kpatch-gcc @@ -31,6 +31,7 @@ if [[ "$TOOLCHAINCMD" = "gcc" ]] ; then kernel/system_certificates.o|\ arch/x86/vdso/*|\ arch/x86/entry/vdso/*|\ + drivers/firmware/efi/libstub/*|\ .*.o) break ;;