aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-15 18:14:25 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-15 18:14:25 +0000
commit0d3a02eba76772e59c7832da6108776f576e9f1c (patch)
tree48d31f686c050abe08cce28c6a1e25c5695c2b3f /util-linux
parent670bea210e924b46b7cefc7036550dfb20437f5e (diff)
downloadbusybox-0d3a02eba76772e59c7832da6108776f576e9f1c.tar.gz
Update the documentation so examples are autoincluded in the output text.
Fix up docs/busybox.pod with the latest autogenerated output. -Erik
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/fbset.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index 80711ec9f..41c7f9796 100644
--- a/util-linux/fbset.c
+++ b/util-linux/fbset.c
@@ -42,7 +42,6 @@ static const int OPT_INFO = (1 << 1);
static const int OPT_READMODE = (1 << 2);
enum {
- CMD_HELP = 0,
CMD_FB = 1,
CMD_DB = 2,
CMD_GEOMETRY = 3,
@@ -138,7 +137,6 @@ static struct cmdoptions_t {
unsigned char code;
} g_cmdoptions[] = {
{
- "-h", 0, CMD_HELP}, {
"-fb", 1, CMD_FB}, {
"-db", 1, CMD_DB}, {
"-a", 0, CMD_ALL}, {
@@ -150,10 +148,8 @@ static struct cmdoptions_t {
"-vsync", 1, CMD_VSYNC}, {
"-laced", 1, CMD_LACED}, {
"-double", 1, CMD_DOUBLE}, {
- "-help", 0, CMD_HELP}, {
"-n", 0, CMD_CHANGE}, {
#ifdef BB_FEATURE_FBSET_FANCY
- "-help", 0, CMD_HELP}, {
"-all", 0, CMD_ALL}, {
"-xres", 1, CMD_XRES}, {
"-yres", 1, CMD_YRES}, {
@@ -356,8 +352,6 @@ extern int fbset_main(int argc, char **argv)
if (argc - 1 < g_cmdoptions[i].param_count)
show_usage();
switch (g_cmdoptions[i].code) {
- case CMD_HELP:
- show_usage();
case CMD_FB:
fbdev = argv[1];
break;