From da93318a9f0ff83e4a93e8755fa92291f9b8cc1b Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Wed, 8 Feb 2012 05:41:37 +0000 Subject: qemu-option: Add support for merged QemuOptsLists Add support for option lists which are merged together, so that "-listname foo=bar -listname bar=baz" is equivalent to "-listname foo=bar,bar=baz" rather than generating two separate lists of options. Signed-off-by: Peter Maydell Signed-off-by: Andrzej Zaborowski --- qemu-option.h | 1 + 1 file changed, 1 insertion(+) (limited to 'qemu-option.h') diff --git a/qemu-option.h b/qemu-option.h index e6f61e6..3ca00c3 100644 --- a/qemu-option.h +++ b/qemu-option.h @@ -100,6 +100,7 @@ typedef struct QemuOptDesc { struct QemuOptsList { const char *name; const char *implied_opt_name; + bool merge_lists; /* Merge multiple uses of option into a single list? */ QTAILQ_HEAD(, QemuOpts) head; QemuOptDesc desc[]; }; -- cgit v1.1