From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-x230.google.com (mail-wm0-x230.google.com [IPv6:2a00:1450:400c:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 5BFD91A1E25 for ; Wed, 3 Aug 2016 01:21:15 -0700 (PDT) Received: by mail-wm0-x230.google.com with SMTP id q128so438151636wma.1 for ; Wed, 03 Aug 2016 01:21:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=tQZQsv/F8DKVZyJykwgYDVpUbWaFUyhxXzAge5jJ17Y=; b=GfDY3OTgXbuHeeNCTNXsQokv/1jJLa5jYR9h85h1INoo1gLS/hmk76Q22tw3uGMk5P w90PKP9V8ZQxn3BJ/KSkpXtVwoEO3pp4ql4ef+Owr3Xt1x0F6Fv6Luok9QoRuBB9Wi0A ibft/ZvxJIxcXiLIfR/wFefI4LZhQnyutsckg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=tQZQsv/F8DKVZyJykwgYDVpUbWaFUyhxXzAge5jJ17Y=; b=bG5ZPVvgJIvtl2umARJsNU6WCnaPSpEWRtQ07t33j07FL4cGsZxCuZvKxiy0fk+0nm PMTJq5DNMwX5NWYudU7xvlcW4NnViy/E6dkR/dkT5OCAQQTY7VuSz7G5n1AhI1rlWL3o v1p0znaC83sHUd7thIfXLoBCHMvCnUqrB73Lx9f65qnIJYeRgQVBDFHvzKWcOEGgMsbT zc1Af0dezam841owkGzaY+PN2pTo2npEwvccDEUXHzUBCmKChk2+cAKEXsIUHCZAWqlg OjoFHJc+lZbMc6rX2C7Ud1hcEbi9T3Uhija5NJQ5LnZ6dkD7EkgP496aIUcrN4v9jMGv qCCg== X-Gm-Message-State: AEkoouuA33PPVCrPQl6dIDh8PomGuV8thSWKHUrUGrFXOPlIvCrHPRZYkKn36EfbFLqgfl0x X-Received: by 10.28.223.9 with SMTP id w9mr62946192wmg.65.1470212473735; Wed, 03 Aug 2016 01:21:13 -0700 (PDT) Received: from localhost.localdomain (3.red-81-34-118.dynamicip.rima-tde.net. [81.34.118.3]) by smtp.gmail.com with ESMTPSA id kq2sm6434685wjc.41.2016.08.03.01.21.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 03 Aug 2016 01:21:12 -0700 (PDT) From: Ard Biesheuvel To: edk2-devel@lists.01.org, leif.lindholm@linaro.org, lersek@redhat.com Cc: Ard Biesheuvel Date: Wed, 3 Aug 2016 10:21:03 +0200 Message-Id: <1470212464-28071-2-git-send-email-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1470212464-28071-1-git-send-email-ard.biesheuvel@linaro.org> References: <1470212464-28071-1-git-send-email-ard.biesheuvel@linaro.org> Subject: [PATCH 1/2] EmbeddedPkg: make PrePiMemoryAllocationLib a SEC type library X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Aug 2016 08:21:15 -0000 This library is only used by the various PrePi implementations, all of which are of type SEC. So make this library SEC as well. This may affect the build options used by the platform. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel --- EmbeddedPkg/Library/PrePiMemoryAllocationLib/PrePiMemoryAllocationLib.inf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EmbeddedPkg/Library/PrePiMemoryAllocationLib/PrePiMemoryAllocationLib.inf b/EmbeddedPkg/Library/PrePiMemoryAllocationLib/PrePiMemoryAllocationLib.inf index 21f6eb1e14bc..ea3d0f5da9c2 100644 --- a/EmbeddedPkg/Library/PrePiMemoryAllocationLib/PrePiMemoryAllocationLib.inf +++ b/EmbeddedPkg/Library/PrePiMemoryAllocationLib/PrePiMemoryAllocationLib.inf @@ -15,7 +15,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = PrePiMemoryAllocationLib FILE_GUID = 4f14c900-51a9-11e0-afbf-0002a5d5c51b - MODULE_TYPE = PEIM + MODULE_TYPE = SEC VERSION_STRING = 1.0 LIBRARY_CLASS = MemoryAllocationLib -- 2.7.4