Blame SOURCES/0084-grub-core-commands-efi-lsefisystab.c-grub_cmd_lsefis.patch

4fe85b
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
4fe85b
From: Stephane Rochoy <sheda>
4fe85b
Date: Sun, 22 Jun 2014 01:34:57 +0200
4fe85b
Subject: [PATCH] * grub-core/commands/efi/lsefisystab.c
4fe85b
 (grub_cmd_lsefisystab): Show EFI system table physical address.
4fe85b
4fe85b
---
4fe85b
 grub-core/commands/efi/lsefisystab.c | 1 +
4fe85b
 ChangeLog                            | 5 +++++
4fe85b
 2 files changed, 6 insertions(+)
4fe85b
4fe85b
diff --git a/grub-core/commands/efi/lsefisystab.c b/grub-core/commands/efi/lsefisystab.c
4fe85b
index eda8c5ff3f3..8717db91ea2 100644
4fe85b
--- a/grub-core/commands/efi/lsefisystab.c
4fe85b
+++ b/grub-core/commands/efi/lsefisystab.c
4fe85b
@@ -52,6 +52,7 @@ grub_cmd_lsefisystab (struct grub_command *cmd __attribute__ ((unused)),
4fe85b
   grub_efi_configuration_table_t *t;
4fe85b
   unsigned int i;
4fe85b
 
4fe85b
+  grub_printf ("Address: %p\n", st);
4fe85b
   grub_printf ("Signature: %016" PRIxGRUB_UINT64_T " revision: %08x\n",
4fe85b
 	       st->hdr.signature, st->hdr.revision);
4fe85b
   {
4fe85b
diff --git a/ChangeLog b/ChangeLog
4fe85b
index b5521130874..abf8f4b2716 100644
4fe85b
--- a/ChangeLog
4fe85b
+++ b/ChangeLog
4fe85b
@@ -1,3 +1,8 @@
4fe85b
+2014-06-21  Stephane Rochoy <sheda>
4fe85b
+
4fe85b
+	* grub-core/commands/efi/lsefisystab.c (grub_cmd_lsefisystab): Show
4fe85b
+	EFI system table physical address.
4fe85b
+
4fe85b
 2014-06-21  Trevor Woerner <trevor.woerner@linaro.org>
4fe85b
 
4fe85b
 	* util/grub-gen-asciih.c (add_glyph): Fix uninitialised variable.