summaryrefslogtreecommitdiffstats
path: root/os-posix.c
diff options
context:
space:
mode:
authorDaniel P. Berrangé2022-03-04 11:27:42 +0100
committerDaniel P. Berrangé2022-04-26 17:12:25 +0200
commitc6b310b37c3e3f898d56955646e6d49c60ef7a63 (patch)
tree7d7f62869dda93a821d258b3bdf6a3b9e3aa0528 /os-posix.c
parentMerge tag 'pull-block-2022-04-25' of https://gitlab.com/hreitz/qemu into staging (diff)
downloadqemu-c6b310b37c3e3f898d56955646e6d49c60ef7a63.tar.gz
qemu-c6b310b37c3e3f898d56955646e6d49c60ef7a63.tar.xz
qemu-c6b310b37c3e3f898d56955646e6d49c60ef7a63.zip
softmmu: remove deprecated --enable-fips option
Users requiring FIPS support must build QEMU with either the libgcrypt or gnutls libraries as the crytography backend. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'os-posix.c')
-rw-r--r--os-posix.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/os-posix.c b/os-posix.c
index faf6e6978b..1b746dba97 100644
--- a/os-posix.c
+++ b/os-posix.c
@@ -150,14 +150,6 @@ int os_parse_cmd_args(int index, const char *optarg)
case QEMU_OPTION_daemonize:
daemonize = 1;
break;
-#if defined(CONFIG_LINUX)
- case QEMU_OPTION_enablefips:
- warn_report("-enable-fips is deprecated, please build QEMU with "
- "the `libgcrypt` library as the cryptography provider "
- "to enable FIPS compliance");
- fips_set_state(true);
- break;
-#endif
default:
return -1;
}