Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kbuild-fixes-v5.17' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull Kbuild fixes from Masahiro Yamada:

- Bring include/uapi/linux/nfc.h into the UAPI compile-test coverage

- Revert the workaround of CONFIG_CC_IMPLICIT_FALLTHROUGH

- Fix build errors in certs/Makefile

* tag 'kbuild-fixes-v5.17' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
certs: Fix build error when CONFIG_MODULE_SIG_KEY is empty
certs: Fix build error when CONFIG_MODULE_SIG_KEY is PKCS#11 URI
Revert "Makefile: Do not quote value for CONFIG_CC_IMPLICIT_FALLTHROUGH"
usr/include/Makefile: add linux/nfc.h to the compile-test coverage

+3 -4
+1 -1
Makefile
··· 778 778 KBUILD_CFLAGS += $(stackp-flags-y) 779 779 780 780 KBUILD_CFLAGS-$(CONFIG_WERROR) += -Werror 781 - KBUILD_CFLAGS += $(KBUILD_CFLAGS-y) $(CONFIG_CC_IMPLICIT_FALLTHROUGH:"%"=%) 781 + KBUILD_CFLAGS += $(KBUILD_CFLAGS-y) $(CONFIG_CC_IMPLICIT_FALLTHROUGH) 782 782 783 783 ifdef CONFIG_CC_IS_CLANG 784 784 KBUILD_CPPFLAGS += -Qunused-arguments
+2 -2
certs/Makefile
··· 68 68 endif # CONFIG_MODULE_SIG_KEY 69 69 70 70 # If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it 71 - ifneq ($(filter-out pkcs11:%, %(CONFIG_MODULE_SIG_KEY)),) 71 + ifneq ($(filter-out pkcs11:%, $(CONFIG_MODULE_SIG_KEY)),) 72 72 X509_DEP := $(CONFIG_MODULE_SIG_KEY) 73 73 endif 74 74 75 75 $(obj)/system_certificates.o: $(obj)/signing_key.x509 76 76 77 77 $(obj)/signing_key.x509: $(X509_DEP) $(obj)/extract-cert FORCE 78 - $(call if_changed,extract_certs,$(if $(X509_DEP),$<,$(CONFIG_MODULE_SIG_KEY))) 78 + $(call if_changed,extract_certs,$(if $(CONFIG_MODULE_SIG_KEY),$(if $(X509_DEP),$<,$(CONFIG_MODULE_SIG_KEY)),"")) 79 79 endif # CONFIG_MODULE_SIG 80 80 81 81 targets += signing_key.x509
-1
usr/include/Makefile
··· 34 34 no-header-test += linux/ivtv.h 35 35 no-header-test += linux/kexec.h 36 36 no-header-test += linux/matroxfb.h 37 - no-header-test += linux/nfc.h 38 37 no-header-test += linux/omap3isp.h 39 38 no-header-test += linux/omapfb.h 40 39 no-header-test += linux/patchkey.h