diff options
Diffstat (limited to 'os-posix.c')
-rw-r--r-- | os-posix.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/os-posix.c b/os-posix.c index daf3d6f6f3..79fa2288e4 100644 --- a/os-posix.c +++ b/os-posix.c @@ -188,6 +188,11 @@ void os_parse_cmd_args(int index, const char *optarg) case QEMU_OPTION_daemonize: daemonize = 1; break; +#if defined(CONFIG_LINUX) + case QEMU_OPTION_enablefips: + fips_set_state(true); + break; +#endif } return; } |