From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id C171D21DFA91C for ; Wed, 29 Mar 2017 01:38:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490776710; x=1522312710; h=from:to:subject:date:message-id:references:in-reply-to: content-transfer-encoding:mime-version; bh=zznjVBpvEVH4cMBLz0KZzkNn0ylyNG+aMyw3eZrGIIs=; b=fACnvBVT9rI4GXhh9QcmOY14DLUjD+JJaPA7M1vu8KKof7EuNnIrWtud oSfCcjvGs20DuOQjLZfAFm8+y8VT4w==; Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Mar 2017 01:38:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,240,1486454400"; d="scan'208";a="1128398019" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga001.fm.intel.com with ESMTP; 29 Mar 2017 01:38:30 -0700 Received: from fmsmsx122.amr.corp.intel.com (10.18.125.37) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 29 Mar 2017 01:38:29 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx122.amr.corp.intel.com (10.18.125.37) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 29 Mar 2017 01:38:30 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.212]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.42]) with mapi id 14.03.0248.002; Wed, 29 Mar 2017 16:38:27 +0800 From: "Gao, Liming" To: Ard Biesheuvel , "edk2-devel@lists.01.org" , "Zeng, Star" , "Tian, Feng" Thread-Topic: [edk2] [PATCH] MdeModulePkg/DxeCore: add missing id-to-string mapping for AARCH64 Thread-Index: AQHSpuwexZoI1SJ110+AoB+eQR7CCaGrgcLQ Date: Wed, 29 Mar 2017 08:38:26 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14D706180@shsmsx102.ccr.corp.intel.com> References: <20170327111953.26732-1-ard.biesheuvel@linaro.org> In-Reply-To: <20170327111953.26732-1-ard.biesheuvel@linaro.org> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH] MdeModulePkg/DxeCore: add missing id-to-string mapping for AARCH64 X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Mar 2017 08:38:30 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Ard >Biesheuvel >Sent: Monday, March 27, 2017 7:20 PM >To: edk2-devel@lists.01.org; Zeng, Star ; Tian, Feng > >Cc: Ard Biesheuvel >Subject: [edk2] [PATCH] MdeModulePkg/DxeCore: add missing id-to-string >mapping for AARCH64 > >Add a mapping for EFI_IMAGE_MACHINE_AARCH64 to mMachineTypeInfo[] > >Contributed-under: TianoCore Contribution Agreement 1.0 >Signed-off-by: Ard Biesheuvel >--- > MdeModulePkg/Core/Dxe/Image/Image.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/MdeModulePkg/Core/Dxe/Image/Image.c >b/MdeModulePkg/Core/Dxe/Image/Image.c >index b22b0fc786fc..91d70d5b6053 100644 >--- a/MdeModulePkg/Core/Dxe/Image/Image.c >+++ b/MdeModulePkg/Core/Dxe/Image/Image.c >@@ -90,7 +90,8 @@ GLOBAL_REMOVE_IF_UNREFERENCED >MACHINE_TYPE_INFO mMachineTypeInfo[] =3D { > {EFI_IMAGE_MACHINE_IA32, L"IA32"}, > {EFI_IMAGE_MACHINE_IA64, L"IA64"}, > {EFI_IMAGE_MACHINE_X64, L"X64"}, >- {EFI_IMAGE_MACHINE_ARMTHUMB_MIXED, L"ARM"} >+ {EFI_IMAGE_MACHINE_ARMTHUMB_MIXED, L"ARM"}, >+ {EFI_IMAGE_MACHINE_AARCH64, L"AARCH64"} > }; > > UINT16 mDxeCoreImageMachineType =3D 0; >-- >2.9.3 > >_______________________________________________ >edk2-devel mailing list >edk2-devel@lists.01.org >https://lists.01.org/mailman/listinfo/edk2-devel