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.

certs: move scripts/check-blacklist-hashes.awk to certs/

This script is only used in certs/Makefile, so certs/ is a better
home for it.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Mickaël Salaün <mic@linux.microsoft.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>

+1 -2
-1
MAINTAINERS
··· 4718 4718 S: Maintained 4719 4719 F: Documentation/admin-guide/module-signing.rst 4720 4720 F: certs/ 4721 - F: scripts/check-blacklist-hashes.awk 4722 4721 F: scripts/sign-file.c 4723 4722 F: tools/certs/ 4724 4723
+1 -1
certs/Makefile
··· 13 13 14 14 quiet_cmd_check_and_copy_blacklist_hash_list = GEN $@ 15 15 cmd_check_and_copy_blacklist_hash_list = \ 16 - $(AWK) -f $(srctree)/scripts/check-blacklist-hashes.awk $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST) >&2; \ 16 + $(AWK) -f $(srctree)/$(src)/check-blacklist-hashes.awk $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST) >&2; \ 17 17 cat $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST) > $@ 18 18 19 19 $(obj)/blacklist_hash_list: $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST) FORCE
scripts/check-blacklist-hashes.awk certs/check-blacklist-hashes.awk