You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
882 B
34 lines
882 B
7 years ago
|
From 8831a9810ef95acb596f7096b9325e1db9b08cce Mon Sep 17 00:00:00 2001
|
||
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
||
|
Date: Wed, 15 May 2013 13:53:48 -0400
|
||
|
Subject: [PATCH 105/237] Don't print GNU GRUB header
|
||
|
|
||
|
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
|
||
|
index 85d2a28..3777cd2 100644
|
||
|
--- a/grub-core/normal/main.c
|
||
|
+++ b/grub-core/normal/main.c
|
||
|
@@ -212,6 +212,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
||
|
|
||
|
grub_term_cls (term);
|
||
|
|
||
|
+#if 0
|
||
|
msg_formatted = grub_xasprintf (_("GNU GRUB version %s"), PACKAGE_VERSION);
|
||
|
if (!msg_formatted)
|
||
|
return;
|
||
|
@@ -235,6 +236,7 @@ grub_normal_init_page (struct grub_term_output *term,
|
||
|
grub_putcode ('\n', term);
|
||
|
grub_putcode ('\n', term);
|
||
|
grub_free (unicode_msg);
|
||
|
+#endif
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
--
|
||
|
2.9.3
|
||
|
|