2014-06-24 15:18:06 +00:00
|
|
|
From e3cabcd95237fadbad8e6a0e36222d97d16b5365 Mon Sep 17 00:00:00 2001
|
2013-06-07 18:03:56 +00:00
|
|
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
2013-05-15 17:56:25 +00:00
|
|
|
Date: Wed, 15 May 2013 13:53:48 -0400
|
2014-09-29 15:48:01 +00:00
|
|
|
Subject: [PATCH 105/152] Don't print GNU GRUB header
|
2013-05-15 17:56:25 +00:00
|
|
|
|
|
|
|
No one cares.
|
|
|
|
---
|
|
|
|
grub-core/normal/main.c | 2 ++
|
|
|
|
1 file changed, 2 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
|
2014-03-13 18:02:22 +00:00
|
|
|
index 85d2a28..3777cd2 100644
|
2013-05-15 17:56:25 +00:00
|
|
|
--- a/grub-core/normal/main.c
|
|
|
|
+++ b/grub-core/normal/main.c
|
2014-03-13 18:02:22 +00:00
|
|
|
@@ -212,6 +212,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
2013-05-15 17:56:25 +00:00
|
|
|
|
|
|
|
grub_term_cls (term);
|
|
|
|
|
|
|
|
+#if 0
|
2014-01-06 16:39:16 +00:00
|
|
|
msg_formatted = grub_xasprintf (_("GNU GRUB version %s"), PACKAGE_VERSION);
|
2013-05-15 17:56:25 +00:00
|
|
|
if (!msg_formatted)
|
|
|
|
return;
|
2014-03-13 18:02:22 +00:00
|
|
|
@@ -235,6 +236,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
2013-05-15 17:56:25 +00:00
|
|
|
grub_putcode ('\n', term);
|
|
|
|
grub_putcode ('\n', term);
|
|
|
|
grub_free (unicode_msg);
|
|
|
|
+#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
--
|
2014-07-02 15:49:28 +00:00
|
|
|
1.9.3
|
2013-05-15 17:56:25 +00:00
|
|
|
|