mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
kbuild: support modules_sign for external modules as well
The modules_sign target is currently only available for in-tree modules, but it actually works for external modules as well. Move the modules_sign rule to the common part. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
This commit is contained in:
@@ -11,7 +11,7 @@ include $(srctree)/scripts/Kbuild.include
|
||||
|
||||
install-y :=
|
||||
|
||||
ifeq ($(KBUILD_EXTMOD)$(modules_sign_only),)
|
||||
ifeq ($(KBUILD_EXTMOD)$(sign-only),)
|
||||
|
||||
# remove the old directory and symlink
|
||||
$(shell rm -fr $(MODLIB)/kernel $(MODLIB)/build)
|
||||
@@ -104,7 +104,7 @@ quiet_cmd_sign = SIGN $@
|
||||
cmd_sign = scripts/sign-file $(CONFIG_MODULE_SIG_HASH) "$(sig-key)" certs/signing_key.x509 $@ \
|
||||
$(if $(KBUILD_EXTMOD),|| true)
|
||||
|
||||
ifeq ($(modules_sign_only),)
|
||||
ifeq ($(sign-only),)
|
||||
|
||||
# During modules_install, modules are signed only when CONFIG_MODULE_SIG_ALL=y.
|
||||
ifndef CONFIG_MODULE_SIG_ALL
|
||||
|
||||
Reference in New Issue
Block a user