diff options
author | Markus Armbruster <armbru@redhat.com> | 2019-02-14 16:22:41 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-02-18 14:44:04 +0100 |
commit | 61eb9e80d5ac9d51d3bfbe4e6ca234f57e747d2b (patch) | |
tree | 63b7ca19d7c08a1a07a4511485e33de0d55716d8 /qapi/target.json | |
parent | 88554a200590008a5846461d82b8c7967f74139f (diff) | |
download | qemu-61eb9e80d5ac9d51d3bfbe4e6ca234f57e747d2b.zip qemu-61eb9e80d5ac9d51d3bfbe4e6ca234f57e747d2b.tar.gz qemu-61eb9e80d5ac9d51d3bfbe4e6ca234f57e747d2b.tar.bz2 |
qapi: New module target.json
We can't add appropriate target-specific conditionals to misc.json,
because that would make all of misc.json unusable in
target-independent code. To keep misc.json target-independent, we
need to split off target-dependent target.json.
This commit doesn't actually split off anything, it merely creates the
empty module. The next few patches will move stuff from misc.json
there.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20190214152251.2073-9-armbru@redhat.com>
Diffstat (limited to 'qapi/target.json')
-rw-r--r-- | qapi/target.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qapi/target.json b/qapi/target.json new file mode 100644 index 0000000..8054926 --- /dev/null +++ b/qapi/target.json @@ -0,0 +1,13 @@ +# -*- Mode: Python -*- +# + +## +# = Target-specific commands & events +## + +## +# @TARGET-TEMPORARY-DUMMY: +# Will go away in the next commit. Needed in this one because empty +# modules don't generate anything, defeating this commit's purpose. +## +{ 'event': 'TARGET-TEMPORARY-DUMMY' } |