mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add generation of shell autocompletion scripts to chzcrypt, lszcrypt and zcryptstats. Acked-by: Steffen Eiden <seiden@linux.ibm.com> Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com> Signed-off-by: Szabina Korbai <szkorbai@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
75 lines
1.7 KiB
C
75 lines
1.7 KiB
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright IBM Corp.
|
|
*/
|
|
|
|
#ifndef LSZCRYPT_CLI_H
|
|
#define LSZCRYPT_CLI_H
|
|
|
|
#include "lib/util_opt.h"
|
|
|
|
/*
|
|
* Configuration of command line options
|
|
*/
|
|
|
|
#define OPT_ACCELONLY 0x81
|
|
#define OPT_CCAONLY 0x82
|
|
#define OPT_EP11ONLY 0x83
|
|
#define OPT_CARDONLY 0x84
|
|
#define OPT_QUEUEONLY 0x85
|
|
|
|
static struct util_opt lszcrypt_opt_vec[] = {
|
|
{
|
|
.option = {"bus", 0, NULL, 'b'},
|
|
.desc = "Show AP bus attributes then exit",
|
|
},
|
|
{
|
|
.option = { "capability", required_argument, NULL, 'c'},
|
|
.argument = "DEVICE_ID",
|
|
.desc = "Show the capabilities of a cryptographic device",
|
|
},
|
|
{
|
|
.option = {"domains", 0, NULL, 'd'},
|
|
.desc = "Show the configured AP usage and control domains",
|
|
},
|
|
{
|
|
.option = {"verbose", 0, NULL, 'V'},
|
|
.desc = "Print verbose messages",
|
|
},
|
|
{
|
|
.option = {"accelonly", 0, NULL, OPT_ACCELONLY},
|
|
.flags = UTIL_OPT_FLAG_NOSHORT,
|
|
.desc = "Show only information from cards/queues in Accelerator mode",
|
|
},
|
|
{
|
|
.option = {"ccaonly", 0, NULL, OPT_CCAONLY},
|
|
.flags = UTIL_OPT_FLAG_NOSHORT,
|
|
.desc = "Show only information from cards/queues in CCA-Coprocessor mode",
|
|
},
|
|
{
|
|
.option = {"ep11only", 0, NULL, OPT_EP11ONLY},
|
|
.flags = UTIL_OPT_FLAG_NOSHORT,
|
|
.desc = "Show only information from cards/queues in EP11-Coprocessor mode",
|
|
},
|
|
{
|
|
.option = {"cardonly", 0, NULL, OPT_CARDONLY},
|
|
.flags = UTIL_OPT_FLAG_NOSHORT,
|
|
.desc = "Show only information from cards but no queue info",
|
|
},
|
|
{
|
|
.option = {"queueonly", 0, NULL, OPT_QUEUEONLY},
|
|
.flags = UTIL_OPT_FLAG_NOSHORT,
|
|
.desc = "Show only information from queues but no card info",
|
|
},
|
|
{
|
|
.option = {"serial", 0, NULL, 's'},
|
|
.desc = "Show the serial numbers for CCA and EP11 crypto cards",
|
|
},
|
|
UTIL_OPT_HELP,
|
|
UTIL_OPT_VERSION,
|
|
UTIL_OPT_END
|
|
};
|
|
|
|
#endif
|