diff options
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 36 |
1 files changed, 21 insertions, 15 deletions
@@ -320,24 +320,30 @@ void options_clear(options_t* opt) void options_print_usage() { printf("USAGE:\n"); - printf("switchctl [-h|--help] prints this...\n"); - printf(" [-D|--nodaemonize] don't run in background\n"); - printf(" [-u|--username] <username> change to this user\n"); - printf(" [-g|--groupname] <groupname> change to this group\n"); - printf(" [-C|--chroot] <path> chroot to this directory\n"); - printf(" [-P|--write-pid] <path> write pid to this file\n"); - printf(" [-L|--log] <target>:<level>[,<param1>[,<param2>..]]\n"); - printf(" add a log target, can be invoked several times\n"); - printf(" [-s|--command-sock] <unix sock> the command socket e.g. /var/run/rhctl/switchctl.sock\n"); #ifdef OPT_SWITCHCTL - printf(" [-f|--config] <file> the configuration file e.g. /etc/rhctl/switchctl.conf\n"); - printf(" [-d|--device] <tty> the tty the audio switch is connected to e.g. /dev/audioswitch\n"); - printf(" [-m|--mode] <mode> the initial mode to use e.g. master\n"); - printf(" [-c|--channel] <channel> the initial channel to use e.g. main\n"); + printf("switchctl\n"); #endif #ifdef OPT_SERIALCLIENT - printf(" [-d|--device] <tty> the tty to connect to e.g. /dev/ttyUSB0\n"); - printf(" [-t|--type] <type> use this client type\n"); + printf("serialclient\n"); +#endif + printf(" [-h|--help] prints this...\n"); + printf(" [-D|--nodaemonize] don't run in background\n"); + printf(" [-u|--username] <username> change to this user\n"); + printf(" [-g|--groupname] <groupname> change to this group\n"); + printf(" [-C|--chroot] <path> chroot to this directory\n"); + printf(" [-P|--write-pid] <path> write pid to this file\n"); + printf(" [-L|--log] <target>:<level>[,<param1>[,<param2>..]]\n"); + printf(" add a log target, can be invoked several times\n"); + printf(" [-s|--command-sock] <unix sock> the command socket e.g. /var/run/rhctl/switchctl.sock\n"); +#ifdef OPT_SWITCHCTL + printf(" [-f|--config] <file> the configuration file e.g. /etc/rhctl/switchctl.conf\n"); + printf(" [-d|--device] <tty> the tty the audio switch is connected to e.g. /dev/audioswitch\n"); + printf(" [-m|--mode] <mode> the initial mode to use e.g. master\n"); + printf(" [-c|--channel] <channel> the initial channel to use e.g. main\n"); +#endif +#ifdef OPT_SERIALCLIENT + printf(" [-d|--device] <tty> the tty to connect to e.g. /dev/ttyUSB0\n"); + printf(" [-t|--type] <type> use this client type\n"); #endif } |