Adding --help option to flterm.
This commit is contained in:
parent
31956de790
commit
bc1450e4f2
|
@ -579,7 +579,8 @@ enum {
|
||||||
OPTION_CMDLINEADR,
|
OPTION_CMDLINEADR,
|
||||||
OPTION_INITRD,
|
OPTION_INITRD,
|
||||||
OPTION_INITRDADR,
|
OPTION_INITRDADR,
|
||||||
OPTION_LOG
|
OPTION_LOG,
|
||||||
|
OPTION_HELP,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct option options[] = {
|
static const struct option options[] = {
|
||||||
|
@ -638,6 +639,11 @@ static const struct option options[] = {
|
||||||
.has_arg = 1,
|
.has_arg = 1,
|
||||||
.val = OPTION_LOG
|
.val = OPTION_LOG
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "help",
|
||||||
|
.has_arg = 0,
|
||||||
|
.val = OPTION_HELP
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = NULL
|
.name = NULL
|
||||||
}
|
}
|
||||||
|
@ -753,6 +759,9 @@ int main(int argc, char *argv[])
|
||||||
free(log_path);
|
free(log_path);
|
||||||
log_path = strdup(optarg);
|
log_path = strdup(optarg);
|
||||||
break;
|
break;
|
||||||
|
case OPTION_HELP:
|
||||||
|
print_usage();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue