Blame SOURCES/0105-Don-t-print-GNU-GRUB-header.patch
|
|
4fe85b |
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
4fe85b |
From: William Jon McCann <william.jon.mccann@gmail.com>
|
|
|
4fe85b |
Date: Wed, 15 May 2013 13:53:48 -0400
|
|
|
4fe85b |
Subject: [PATCH] Don't print GNU GRUB header
|
|
|
4fe85b |
|
|
|
4fe85b |
No one cares.
|
|
|
4fe85b |
---
|
|
|
4fe85b |
grub-core/normal/main.c | 2 ++
|
|
|
4fe85b |
1 file changed, 2 insertions(+)
|
|
|
4fe85b |
|
|
|
4fe85b |
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
|
|
|
4fe85b |
index 85d2a2862d4..3777cd22ce3 100644
|
|
|
4fe85b |
--- a/grub-core/normal/main.c
|
|
|
4fe85b |
+++ b/grub-core/normal/main.c
|
|
|
4fe85b |
@@ -212,6 +212,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
|
|
4fe85b |
|
|
|
4fe85b |
grub_term_cls (term);
|
|
|
4fe85b |
|
|
|
4fe85b |
+#if 0
|
|
|
4fe85b |
msg_formatted = grub_xasprintf (_("GNU GRUB version %s"), PACKAGE_VERSION);
|
|
|
4fe85b |
if (!msg_formatted)
|
|
|
4fe85b |
return;
|
|
|
4fe85b |
@@ -235,6 +236,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
|
|
4fe85b |
grub_putcode ('\n', term);
|
|
|
4fe85b |
grub_putcode ('\n', term);
|
|
|
4fe85b |
grub_free (unicode_msg);
|
|
|
4fe85b |
+#endif
|
|
|
4fe85b |
}
|
|
|
4fe85b |
|
|
|
4fe85b |
static void
|