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

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