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

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