From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UBTec-0008Tf-LH for qemu-devel@nongnu.org; Fri, 01 Mar 2013 12:21:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UBTea-0001V8-L5 for qemu-devel@nongnu.org; Fri, 01 Mar 2013 12:21:54 -0500 Received: from mel.act-europe.fr ([194.98.77.210]:57008) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UBTea-0001Tu-Eu for qemu-devel@nongnu.org; Fri, 01 Mar 2013 12:21:52 -0500 From: Fabien Chouteau Date: Fri, 1 Mar 2013 18:21:44 +0100 Message-Id: <1362158507-19310-2-git-send-email-chouteau@adacore.com> In-Reply-To: <1362158507-19310-1-git-send-email-chouteau@adacore.com> References: <1362158507-19310-1-git-send-email-chouteau@adacore.com> Subject: [Qemu-devel] [PATCH 1/4] 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