Hi All,Could you please review below patch, I have successfully tested patch on ARM Versatile Express V2P Board.From: Yogesh Tillu <tillu.yogesh@gmail.com>Date: Thu, 5 Sep 2013 17:07:55 +0530Subject: [PATCH] [ PATCH ] Added Support for ARMv7 Big EndianSigned-off-by: Yogesh Tillu <tillu.yogesh@gmail.com>---src/util/virarch.c | 1 +src/util/virarch.h | 1 +2 files changed, 2 insertions(+)diff --git a/src/util/virarch.c b/src/util/virarch.cindex 81558e5..b4e06da 100644--- a/src/util/virarch.c+++ b/src/util/virarch.c@@ -37,6 +37,7 @@ static const struct virArchData {{ "alpha", 64, VIR_ARCH_BIG_ENDIAN },{ "armv6l", 32, VIR_ARCH_LITTLE_ENDIAN },{ "armv7l", 32, VIR_ARCH_LITTLE_ENDIAN },+ { "armv7b", 32, VIR_ARCH_BIG_ENDIAN },{ "cris", 32, VIR_ARCH_LITTLE_ENDIAN },{ "i686", 32, VIR_ARCH_LITTLE_ENDIAN },diff --git a/src/util/virarch.h b/src/util/virarch.hindex 0d8ae25..dd25679 100644--- a/src/util/virarch.h+++ b/src/util/virarch.h@@ -29,6 +29,7 @@ typedef enum {VIR_ARCH_ALPHA, /* Alpha 64 BE http://en.wikipedia.org/wiki/DEC_Alpha */VIR_ARCH_ARMV6L, /* ARMv6 32 LE http://en.wikipedia.org/wiki/ARM_architecture */VIR_ARCH_ARMV7L, /* ARMv7 32 LE http://en.wikipedia.org/wiki/ARM_architecture */+ VIR_ARCH_ARMV7B, /* ARMv7 32 BE http://en.wikipedia.org/wiki/ARM_architecture */VIR_ARCH_CRIS, /* ETRAX 32 LE http://en.wikipedia.org/wiki/ETRAX_CRIS */VIR_ARCH_I686, /* x86 32 LE http://en.wikipedia.org/wiki/X86 */--1.8.1.2Test Performed:# virsh nodeinfoCPU model: armv7bCPU(s): 1CPU frequency: 48 MHzCPU socket(s): 1Core(s) per socket: 5Thread(s) per core: 1NUMA cell(s): 1Memory size: 1029784 KiBRegards,
Yogesh Tillu