qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 04/13] target-arm: Add secure qemu machine optio


From: Greg Bellows
Subject: Re: [Qemu-devel] [PATCH 04/13] target-arm: Add secure qemu machine option
Date: Fri, 5 Dec 2014 09:33:23 -0600



On 5 December 2014 at 09:18, Peter Maydell <address@hidden> wrote:
On 3 December 2014 at 20:05, Greg Bellows <address@hidden> wrote:
> Added 'secure' qemu boolean option to qemu_machine_opts[].
>
> Signed-off-by: Greg Bellows <address@hidden>
> ---
>  vl.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/vl.c b/vl.c
> index eb89d62..5d640f7 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -387,6 +387,10 @@ static QemuOptsList qemu_machine_opts = {
>              .name = "iommu",
>              .type = QEMU_OPT_BOOL,
>              .help = "Set on/off to enable/disable Intel IOMMU (VT-d)",
> +        },{
> +            .name = "secure",
> +            .type = QEMU_OPT_BOOL,
> +            .help = "Set on/off to enable/disable secure state",
>          },

If patch 5 adds 'secure' as a machine property for only those
boards where it makes sense, why do we need this global switch?


That is what I thought as well, but this is apparently needed as we get an invalid machine property otherwise.  Below is the error, I'll look again, but it appeared all machine properties were defined here.

qemu-system-aarch64: -machine type=vexpress-a15,secure=off: Invalid parameter 'secure'
 
thanks
-- PMM


reply via email to

[Prev in Thread] Current Thread [Next in Thread]