From patchwork Wed Jun 18 06:43:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 361286 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 7323A14009A for ; Wed, 18 Jun 2014 16:50:59 +1000 (EST) Received: from localhost ([::1]:55276 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wx9hx-00021i-ON for incoming@patchwork.ozlabs.org; Wed, 18 Jun 2014 02:50:57 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54562) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wx9bn-0000da-2O for qemu-devel@nongnu.org; Wed, 18 Jun 2014 02:44:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wx9bg-00030y-Ks for qemu-devel@nongnu.org; Wed, 18 Jun 2014 02:44:35 -0400 Received: from mail-wg0-x233.google.com ([2a00:1450:400c:c00::233]:48739) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wx9bg-00030i-Eb for qemu-devel@nongnu.org; Wed, 18 Jun 2014 02:44:28 -0400 Received: by mail-wg0-f51.google.com with SMTP id x12so336138wgg.10 for ; Tue, 17 Jun 2014 23:44:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=anztIvwrLuzjydvaUt9rrUHwAFda5tMexKhQ8GPcwGM=; b=tcvymOmgfyDPaLnXJJnNd6niMNFCrTnjByHOfbVrx2tBxLs4KqPlbt0V4ytfBybqCA hmJIDe5uQEuTaIfBi7NOGCYZxqyELFHkWu94tIR+7koXWCiIcdfzkkFg1n3pOBUA3zY3 gIxXisR2VrxiEGzxEnsZ/XWBqgouFaENWuaiNpimgZeQwZW2xWa50XHeVZ4HhxEbtDVN JenlQIiQ2hCm9qNee2kgryIVWw2js7lIb2ggwNYvZejV3xZ59uZz0E3N7oFac5B3D/qT s1Wzo67HRd1tzhaSV/JtjUkAXGKhQa4JlrZuK/ssEB8UXRKM4abQds1vBrPoxFpFj507 z3gw== X-Received: by 10.180.211.36 with SMTP id mz4mr2424373wic.20.1403073867640; Tue, 17 Jun 2014 23:44:27 -0700 (PDT) Received: from yakj.station (net-37-117-140-88.cust.vodafonedsl.it. [37.117.140.88]) by mx.google.com with ESMTPSA id o49sm3303341eew.30.2014.06.17.23.44.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Jun 2014 23:44:27 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Wed, 18 Jun 2014 08:43:32 +0200 Message-Id: <1403073840-32603-9-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1403073840-32603-1-git-send-email-pbonzini@redhat.com> References: <1403073840-32603-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c00::233 Cc: wenchaoqemu@gmail.com, lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH 2.1 08/36] qapi: add new schema file qapi-event.json X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Wenchao Xia Signed-off-by: Wenchao Xia Signed-off-by: Paolo Bonzini --- Makefile | 3 ++- qapi-event.json | 0 qapi-schema.json | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 qapi-event.json diff --git a/Makefile b/Makefile index f473cf5..7d0c8ec 100644 --- a/Makefile +++ b/Makefile @@ -247,7 +247,8 @@ $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) " GEN $@") qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \ - $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json + $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \ + $(SRC_PATH)/qapi-event.json qapi-types.c qapi-types.h :\ $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) diff --git a/qapi-event.json b/qapi-event.json new file mode 100644 index 0000000..e69de29 diff --git a/qapi-schema.json b/qapi-schema.json index 3d23042..26e0278 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3140,3 +3140,5 @@ 'btn' : 'InputBtnEvent', 'rel' : 'InputMoveEvent', 'abs' : 'InputMoveEvent' } } + +{ 'include': 'qapi-event.json' }