From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:32851) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHubo-0003ZJ-JS for qemu-devel@nongnu.org; Tue, 19 Mar 2013 07:21:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHubk-0004rn-4q for qemu-devel@nongnu.org; Tue, 19 Mar 2013 07:21:36 -0400 Received: from mel.act-europe.fr ([194.98.77.210]:38018) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHubj-0004r9-L2 for qemu-devel@nongnu.org; Tue, 19 Mar 2013 07:21:31 -0400 From: Fabien Chouteau Date: Tue, 19 Mar 2013 12:21:25 +0100 Message-Id: <1363692087-28432-2-git-send-email-chouteau@adacore.com> In-Reply-To: <1363692087-28432-1-git-send-email-chouteau@adacore.com> References: <1363692087-28432-1-git-send-email-chouteau@adacore.com> Subject: [Qemu-devel] [PATCH V2 1/3] QAPI: Add ARMEB target-type List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, paul@codesourcery.com, afaerber@suse.de Signed-off-by: Fabien Chouteau --- qapi-schema.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 28b070f..0615715 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2993,10 +2993,11 @@ # Since: 1.2.0 ## { 'enum': 'TargetType', - 'data': [ 'alpha', 'arm', 'cris', 'i386', 'lm32', 'm68k', 'microblazeel', - 'microblaze', 'mips64el', 'mips64', 'mipsel', 'mips', 'or32', - 'ppc64', 'ppcemb', 'ppc', 's390x', 'sh4eb', 'sh4', 'sparc64', - 'sparc', 'unicore32', 'x86_64', 'xtensaeb', 'xtensa' ] } + 'data': [ 'alpha', 'arm', 'armeb','cris', 'i386', 'lm32', 'm68k', + 'microblazeel', 'microblaze', 'mips64el', 'mips64', 'mipsel', + 'mips', 'or32', 'ppc64', 'ppcemb', 'ppc', 's390x', 'sh4eb', + 'sh4', 'sparc64', 'sparc', 'unicore32', 'x86_64', 'xtensaeb', + 'xtensa' ] } ## # @TargetInfo: -- 1.7.9.5