Skip to content

Commit 9008a67

Browse files
committed
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 <[email protected]> Reviewed-by: Mickaël Salaün <[email protected]> Reviewed-by: Jarkko Sakkinen <[email protected]>
1 parent 3234649 commit 9008a67

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

MAINTAINERS

-1
Original file line numberDiff line numberDiff line change
@@ -4718,7 +4718,6 @@ L: [email protected]
47184718
S: Maintained
47194719
F: Documentation/admin-guide/module-signing.rst
47204720
F: certs/
4721-
F: scripts/check-blacklist-hashes.awk
47224721
F: scripts/sign-file.c
47234722
F: tools/certs/
47244723

certs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ CFLAGS_blacklist_hashes.o := -I $(obj)
1313

1414
quiet_cmd_check_and_copy_blacklist_hash_list = GEN $@
1515
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; \
1717
cat $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST) > $@
1818

1919
$(obj)/blacklist_hash_list: $(CONFIG_SYSTEM_BLACKLIST_HASH_LIST) FORCE
File renamed without changes.

0 commit comments

Comments
 (0)