|
|
5975ab |
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
5975ab |
From: Daniel Kiper <daniel.kiper@oracle.com>
|
|
|
5975ab |
Date: Tue, 2 Oct 2018 22:36:43 +0200
|
|
|
5975ab |
Subject: [PATCH] verifiers: Rename verify module to pgp module
|
|
|
5975ab |
|
|
|
5975ab |
Just for clarity. No functional change.
|
|
|
5975ab |
|
|
|
5975ab |
Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
|
|
|
5975ab |
Reviewed-by: Ross Philipson <ross.philipson@oracle.com>
|
|
|
5975ab |
(cherry picked from commit b07feb8746c3bb845e3f0d33d37c0bded704d14d)
|
|
|
5975ab |
Signed-off-by: Daniel Axtens <dja@axtens.net>
|
|
|
5975ab |
---
|
|
|
5975ab |
grub-core/Makefile.core.def | 4 ++--
|
|
|
5975ab |
grub-core/commands/{verify.c => pgp.c} | 0
|
|
|
5975ab |
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
5975ab |
rename grub-core/commands/{verify.c => pgp.c} (100%)
|
|
|
5975ab |
|
|
|
5975ab |
diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def
|
|
|
030dc3 |
index 29c3bf6cd66..809f11feaef 100644
|
|
|
5975ab |
--- a/grub-core/Makefile.core.def
|
|
|
5975ab |
+++ b/grub-core/Makefile.core.def
|
|
|
5975ab |
@@ -915,8 +915,8 @@ module = {
|
|
|
5975ab |
};
|
|
|
5975ab |
|
|
|
5975ab |
module = {
|
|
|
5975ab |
- name = verify;
|
|
|
5975ab |
- common = commands/verify.c;
|
|
|
5975ab |
+ name = pgp;
|
|
|
5975ab |
+ common = commands/pgp.c;
|
|
|
5975ab |
cflags = '$(CFLAGS_POSIX)';
|
|
|
5975ab |
cppflags = '-I$(srcdir)/lib/posix_wrap';
|
|
|
5975ab |
};
|
|
|
5975ab |
diff --git a/grub-core/commands/verify.c b/grub-core/commands/pgp.c
|
|
|
5975ab |
similarity index 100%
|
|
|
5975ab |
rename from grub-core/commands/verify.c
|
|
|
5975ab |
rename to grub-core/commands/pgp.c
|