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

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