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