aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fbset.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2016-11-29 11:26:45 +0000
committerRon Yorston <rmy@pobox.com>2016-11-29 11:26:45 +0000
commitbb8d79eadbba1942dbdb9f9cee5c47833afe269f (patch)
treeb8c517e9ca895d60d7227aef7177b6291df5e2cd /util-linux/fbset.c
parent9fa1e4990e655a85025c9d270a1606983e375e47 (diff)
parent7d877fc9312a742b06125927bb1d34bd35398c6c (diff)
downloadbusybox-w32-bb8d79eadbba1942dbdb9f9cee5c47833afe269f.tar.gz
busybox-w32-bb8d79eadbba1942dbdb9f9cee5c47833afe269f.tar.bz2
busybox-w32-bb8d79eadbba1942dbdb9f9cee5c47833afe269f.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'util-linux/fbset.c')
-rw-r--r--util-linux/fbset.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index b75ec1921..8a78c1ef9 100644
--- a/util-linux/fbset.c
+++ b/util-linux/fbset.c
@@ -11,6 +11,38 @@
11 * the GPL, and is (c) 1995-1999 by: 11 * the GPL, and is (c) 1995-1999 by:
12 * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) 12 * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be)
13 */ 13 */
14//config:config FBSET
15//config: bool "fbset"
16//config: default y
17//config: select PLATFORM_LINUX
18//config: help
19//config: fbset is used to show or change the settings of a Linux frame buffer
20//config: device. The frame buffer device provides a simple and unique
21//config: interface to access a graphics display. Enable this option
22//config: if you wish to enable the 'fbset' utility.
23//config:
24//config:config FEATURE_FBSET_FANCY
25//config: bool "Turn on extra fbset options"
26//config: default y
27//config: depends on FBSET
28//config: help
29//config: This option enables extended fbset options, allowing one to set the
30//config: framebuffer size, color depth, etc. interface to access a graphics
31//config: display. Enable this option if you wish to enable extended fbset
32//config: options.
33//config:
34//config:config FEATURE_FBSET_READMODE
35//config: bool "Turn on fbset readmode support"
36//config: default y
37//config: depends on FBSET
38//config: help
39//config: This option allows fbset to read the video mode database stored by
40//config: default as /etc/fb.modes, which can be used to set frame buffer
41//config: device to pre-defined video modes.
42
43//applet:IF_FBSET(APPLET(fbset, BB_DIR_USR_SBIN, BB_SUID_DROP))
44
45//kbuild:lib-$(CONFIG_FBSET) += fbset.o
14 46
15//usage:#define fbset_trivial_usage 47//usage:#define fbset_trivial_usage
16//usage: "[OPTIONS] [MODE]" 48//usage: "[OPTIONS] [MODE]"