summarylogtreecommitdiffstats
path: root/0408-bootsplash.patch
diff options
context:
space:
mode:
authorJeka2022-10-26 14:14:45 +0300
committerJeka2022-10-26 14:14:45 +0300
commit5e6f6fec39965f5452c3b1617f8a4387c9986bc0 (patch)
treec90d21e00a66dc00fe428c2bd5af95a846c694d0 /0408-bootsplash.patch
downloadaur-5e6f6fec39965f5452c3b1617f8a4387c9986bc0.tar.gz
release kernel 6.0.4
Diffstat (limited to '0408-bootsplash.patch')
-rw-r--r--0408-bootsplash.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/0408-bootsplash.patch b/0408-bootsplash.patch
new file mode 100644
index 000000000000..8a3b715ce46a
--- /dev/null
+++ b/0408-bootsplash.patch
@@ -0,0 +1,21 @@
+diff --git a/drivers/tty/sysrq.c b/drivers/tty/sysrq.c
+index 3ffc1ce29023..bc6a24c9dfa8 100644
+--- a/drivers/tty/sysrq.c
++++ b/drivers/tty/sysrq.c
+@@ -49,6 +49,7 @@
+ #include <linux/syscalls.h>
+ #include <linux/of.h>
+ #include <linux/rcupdate.h>
++#include <linux/bootsplash.h>
+
+ #include <asm/ptrace.h>
+ #include <asm/irq_regs.h>
+@@ -104,6 +105,8 @@ static void sysrq_handle_SAK(int key)
+ {
+ struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
+ schedule_work(SAK_work);
++
++ bootsplash_disable();
+ }
+ static struct sysrq_key_op sysrq_SAK_op = {
+ .handler = sysrq_handle_SAK,