summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Binacchi <dario.binacchi@amarulasolutions.com>2022-09-09 09:05:52 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2022-11-16 13:40:34 +0100
commit75fbff1326674b768cee66f32e3799d5bff5e194 (patch)
tree96af0a82ee849ff73acdfae9edcf5f7ed8c9eb67
parente8dfa0c1bedf69783e54b5a7798fb14dcaeb0434 (diff)
downloadbusybox-75fbff1326674b768cee66f32e3799d5bff5e194.tar.gz
fbset: support setting pixel clock rate
Only in case the FEATURE_FBSET_FANCY configuration is enabled. function old new delta fbset_main 733 766 +33 Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--util-linux/fbset.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index 0eaa7c0a6..768ab80eb 100644
--- a/util-linux/fbset.c
+++ b/util-linux/fbset.c
@@ -518,6 +518,9 @@ int fbset_main(int argc, char **argv)
case CMD_DEPTH:
var_set.bits_per_pixel = xatou32(argv[1]);
break;
+ case CMD_PIXCLOCK:
+ var_set.pixclock = xatou32(argv[1]);
+ break;
#endif
default:
bb_perror_msg_and_die("option '%s' not handled",