mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
pvapconfig is a new tool for automatically configuring the APQNs within an Secure Execution KVM guest with AP pass-through support. Based on a given AP configuration it tries to find a matching APQN and bind and associate it with the correct secret. Signed-off-by: Harald Freudenberger <freude@linux.ibm.com> Reviewed-by: Ingo Franzki <ifranzki@linux.ibm.com> Reviewed-by: Holger Dengler <dengler@linux.ibm.com> Reviewed-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
20 lines
617 B
TOML
20 lines
617 B
TOML
[package]
|
|
name = "pvapconfig"
|
|
description = "A tool to configure the AP resources inside a SE guest based on UV secrets and an AP config file."
|
|
authors = ["Harald Freudenberger <freude@linux.ibm.com>"]
|
|
version = "0.9.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version ="4.1", features = ["derive", "wrap_help"]}
|
|
lazy_static = "1.1"
|
|
openssl = { version = "0.10" }
|
|
openssl-sys = { version = "0.9" }
|
|
pv = { path = "../pv", features = ["uvsecret", "request"] }
|
|
rand = "0.8"
|
|
regex = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
utils = { path = "../utils" }
|