diff options
author | Anssi Hannula <anssi@mandriva.org> | 2009-09-06 11:54:09 +0000 |
---|---|---|
committer | Anssi Hannula <anssi@mandriva.org> | 2009-09-06 11:54:09 +0000 |
commit | 740154e3a286d2a77be779772efc63d1ed14cd55 (patch) | |
tree | 1cf1181688b01aedd99293a2b6a863f0768588bd | |
parent | a2e81eb2b00365d83f5ed484017aa0170764e23d (diff) | |
download | monitor-edid-740154e3a286d2a77be779772efc63d1ed14cd55.tar monitor-edid-740154e3a286d2a77be779772efc63d1ed14cd55.tar.gz monitor-edid-740154e3a286d2a77be779772efc63d1ed14cd55.tar.bz2 monitor-edid-740154e3a286d2a77be779772efc63d1ed14cd55.tar.xz monitor-edid-740154e3a286d2a77be779772efc63d1ed14cd55.zip |
monitor-get-edid-using-vbe: show all options in --help output
-rw-r--r-- | monitor-get-edid-using-vbe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/monitor-get-edid-using-vbe.c b/monitor-get-edid-using-vbe.c index 753b46e..567433e 100644 --- a/monitor-get-edid-using-vbe.c +++ b/monitor-get-edid-using-vbe.c @@ -40,7 +40,8 @@ int main(int argc, char **argv) else if (strcmp(arg, "--use-cpuemu") == 0) hd_data.flags.cpuemu = 1; else if (strcmp(arg, "-h") == 0 || strcmp(arg, "--help") == 0) { - printf("usage: monitor-get-edid [-v] [--port <0-3>]\n"); + printf("usage: monitor-get-edid [-v] [--port <0-3>] [--try-in-console]\n" + "[--map-bios-vram] [--check-bios-crc] [--use-cpuemu]\n"); exit(1); } } |