From f87f8c66131ddb3153c62122080714795ba92c6e Mon Sep 17 00:00:00 2001 From: Timo Teräs Date: Thu, 9 Aug 2018 22:05:13 +0300 Subject: main/busybox: fix fbsplash console switching Fixes #9215 This was broken in commit dc6cfb7cebc64cdb which just removed opt_complementary (due to that being removed in bb). Add proper getopt flag to get correct behaviour. --- main/busybox/0007-fbsplash-support-console-switching.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/busybox/0007-fbsplash-support-console-switching.patch') diff --git a/main/busybox/0007-fbsplash-support-console-switching.patch b/main/busybox/0007-fbsplash-support-console-switching.patch index ef226d00967..7d76d4f1f45 100644 --- a/main/busybox/0007-fbsplash-support-console-switching.patch +++ b/main/busybox/0007-fbsplash-support-console-switching.patch @@ -75,7 +75,7 @@ index 5b2e5ac56..bc80f728c 100644 fifo_filename = NULL; - bCursorOff = 1 & getopt32(argv, "cs:d:i:f:", - &G.image_filename, &fb_device, &cfg_filename, &fifo_filename); -+ bCursorOff = 1 & getopt32(argv, "cs:d:i:f:T:", ++ bCursorOff = 1 & getopt32(argv, "cs:d:i:f:T:+", + &G.image_filename, &fb_device, &cfg_filename, &fifo_filename, + &G.silent_tty); -- cgit v1.2.3