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