diff options
author | Philipp Brüschweiler <blei42@gmail.com> | 2013-03-30 15:18:49 +0100 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2013-04-01 21:45:00 -0400 |
commit | e14560e38161fa48d88b81d66fc1fcea43a5007c (patch) | |
tree | c46b2d6d4d98ac188e71b9a296dbf4df32902bd8 | |
parent | a83409cbff1cdcf3c7c51447af328c01bc363ebb (diff) |
compositor: add information about the fbdev backend to --help output
-rw-r--r-- | src/compositor.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/compositor.c b/src/compositor.c index 1617d964..a3d1ede8 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -3462,7 +3462,8 @@ usage(int error_code) "Core options:\n\n" " --version\t\tPrint weston version\n" " -B, --backend=MODULE\tBackend module, one of drm-backend.so,\n" - "\t\t\t\tx11-backend.so or wayland-backend.so\n" + "\t\t\t\tfbdev-backend.so, x11-backend.so or\n" + "\t\t\t\twayland-backend.so\n" " -S, --socket=NAME\tName of socket to listen on\n" " -i, --idle-time=SECS\tIdle time in seconds\n" " --modules\t\tLoad the comma-separated list of modules\n" @@ -3478,6 +3479,11 @@ usage(int error_code) " --current-mode\tPrefer current KMS mode over EDID preferred mode\n\n"); fprintf(stderr, + "Options for fbdev-backend.so:\n\n" + " --tty=TTY\t\tThe tty to use\n" + " --device=DEVICE\tThe framebuffer device to use\n\n"); + + fprintf(stderr, "Options for x11-backend.so:\n\n" " --width=WIDTH\t\tWidth of X window\n" " --height=HEIGHT\tHeight of X window\n" |