From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (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 123B521E2BE42 for ; Tue, 29 Aug 2017 09:39:23 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4AED2C047B76; Tue, 29 Aug 2017 16:42:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 4AED2C047B76 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=lersek@redhat.com Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-166.phx2.redhat.com [10.3.116.166]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8193670529; Tue, 29 Aug 2017 16:42:02 +0000 (UTC) To: Long Qin , chao.b.zhang@intel.com Cc: edk2-devel@lists.01.org References: <20170829081710.7896-1-qin.long@intel.com> From: Laszlo Ersek Message-ID: Date: Tue, 29 Aug 2017 18:42:01 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <20170829081710.7896-1-qin.long@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Tue, 29 Aug 2017 16:42:03 +0000 (UTC) Subject: Re: [PATCH] SecurityPkg: Add ARM/AARCH64 arch to enable RngTest module build. 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: Tue, 29 Aug 2017 16:39:23 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 08/29/17 10:17, Long Qin wrote: > Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=680 > > Adding ARM and AARCH64 to SUPPORTED_ARCHITECTURES in SecurityPkg.dsc > to enable RngTest module build, since this is one platform-independent > application. > > Cc: Chao Zhang > Cc: Laszlo Ersek > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Qin Long > --- > SecurityPkg/Application/RngTest/RngTest.inf | 2 +- > SecurityPkg/SecurityPkg.dsc | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/SecurityPkg/Application/RngTest/RngTest.inf b/SecurityPkg/Application/RngTest/RngTest.inf > index 334cff45b0..55510f709a 100644 > --- a/SecurityPkg/Application/RngTest/RngTest.inf > +++ b/SecurityPkg/Application/RngTest/RngTest.inf > @@ -27,7 +27,7 @@ > # > # The following information is for reference only and not required by the build tools. > # > -# VALID_ARCHITECTURES = IA32 X64 > +# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 > # > > [Sources] > diff --git a/SecurityPkg/SecurityPkg.dsc b/SecurityPkg/SecurityPkg.dsc > index 8b9240374c..bb7147ec75 100644 > --- a/SecurityPkg/SecurityPkg.dsc > +++ b/SecurityPkg/SecurityPkg.dsc > @@ -19,7 +19,7 @@ > PLATFORM_VERSION = 0.97 > DSC_SPECIFICATION = 0x00010005 > OUTPUT_DIRECTORY = Build/SecurityPkg > - SUPPORTED_ARCHITECTURES = IA32|IPF|X64|EBC > + SUPPORTED_ARCHITECTURES = IA32|IPF|X64|EBC|ARM|AARCH64 > BUILD_TARGETS = DEBUG|RELEASE|NOOPT > SKUID_IDENTIFIER = DEFAULT > > Reviewed-by: Laszlo Ersek Thank you! Laszlo