Do a couple things here: - Split the mega-patches into individual patches. Should help with rebasing. - Make all patches 'git am' acceptable. There should be no functional or actual code differences from before
57 lines
1.5 KiB
Diff
57 lines
1.5 KiB
Diff
From b0c75b1839a0ccf645329a0ee2b268109300c2b0 Mon Sep 17 00:00:00 2001
|
|
From: "kernel-team@fedoraproject.org" <kernel-team@fedoraproject.org>
|
|
Date: Thu, 29 Jul 2010 16:46:31 -0700
|
|
Subject: [PATCH] silence fbcon logo
|
|
|
|
Bugzilla: N/A
|
|
Upstream-status: Fedora mustard
|
|
---
|
|
drivers/video/console/fbcon.c | 24 +++++++++++++++++-------
|
|
1 file changed, 17 insertions(+), 7 deletions(-)
|
|
|
|
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c
|
|
index 57b1d44acbfe..31048a85713d 100644
|
|
--- a/drivers/video/console/fbcon.c
|
|
+++ b/drivers/video/console/fbcon.c
|
|
@@ -638,13 +638,15 @@ static void fbcon_prepare_logo(struct vc_data *vc, struct fb_info *info,
|
|
kfree(save);
|
|
}
|
|
|
|
- if (logo_lines > vc->vc_bottom) {
|
|
- logo_shown = FBCON_LOGO_CANSHOW;
|
|
- printk(KERN_INFO
|
|
- "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
|
|
- } else if (logo_shown != FBCON_LOGO_DONTSHOW) {
|
|
- logo_shown = FBCON_LOGO_DRAW;
|
|
- vc->vc_top = logo_lines;
|
|
+ if (logo_shown != FBCON_LOGO_DONTSHOW) {
|
|
+ if (logo_lines > vc->vc_bottom) {
|
|
+ logo_shown = FBCON_LOGO_CANSHOW;
|
|
+ printk(KERN_INFO
|
|
+ "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
|
|
+ } else {
|
|
+ logo_shown = FBCON_LOGO_DRAW;
|
|
+ vc->vc_top = logo_lines;
|
|
+ }
|
|
}
|
|
}
|
|
#endif /* MODULE */
|
|
@@ -3625,6 +3627,14 @@ static int __init fb_console_init(void)
|
|
return 0;
|
|
}
|
|
|
|
+static int __init quiet_logo(char *str)
|
|
+{
|
|
+ logo_shown = FBCON_LOGO_DONTSHOW;
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+early_param("quiet", quiet_logo);
|
|
+
|
|
module_init(fb_console_init);
|
|
|
|
#ifdef MODULE
|
|
--
|
|
1.9.3
|
|
|