mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-16 03:41:26 +00:00
* Initial commit for kernel boot splash * Add startup files to disable bootlog when system is up / down * Update logo, remove deprecated one * Introduce new u-boot variable bootlogo * Adjust kernel config * Make logo possible on Odroid XU4 - add legacy and current upstream patches - delete xu4 environment since its not used * Cleanup C2,C4, both tested, logo works on mainline, - adding legacy upstream patches for c4 * Enable bootlogo by default on Odroid N2 * Enable logo on RK3399 desktop images * Cleanup the rest of the environment files * Add initrd hook that copy splash file to initrd. * Missing logo bits for one boot scripts * Enable boot logo on Pinebook A64 * Enable bootlogo on Teres * Update config
21 lines
734 B
Diff
21 lines
734 B
Diff
diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
|
|
index 9a39a6fcfe98..8a9c67e1c5d8 100644
|
|
--- a/drivers/video/fbdev/core/fbcon.c
|
|
+++ b/drivers/video/fbdev/core/fbcon.c
|
|
@@ -1343,6 +1343,16 @@ static void fbcon_cursor(struct vc_data *vc, int mode)
|
|
int y;
|
|
int c = scr_readw((u16 *) vc->vc_pos);
|
|
|
|
+ /*
|
|
+ * Disable the splash here so we don't have to hook into
|
|
+ * vt_console_print() in drivers/tty/vt/vt.c
|
|
+ *
|
|
+ * We'd disable the splash just before the call to
|
|
+ * hide_cursor() anyway, so this spot is just fine.
|
|
+ */
|
|
+ if (oops_in_progress)
|
|
+ bootsplash_disable();
|
|
+
|
|
ops->cur_blink_jiffies = msecs_to_jiffies(vc->vc_cur_blink_ms);
|
|
|
|
if (fbcon_is_inactive(vc, info) || vc->vc_deccm != 1)
|