From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4864:20::d43; helo=mail-io1-xd43.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-io1-xd43.google.com (mail-io1-xd43.google.com [IPv6:2607:f8b0:4864:20::d43]) (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 4FEB021A143EF for ; Wed, 2 Jan 2019 05:06:05 -0800 (PST) Received: by mail-io1-xd43.google.com with SMTP id b23so3513523ios.10 for ; Wed, 02 Jan 2019 05:06:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc:content-transfer-encoding; bh=ZKblE3j1kUtC7/lpPZDj0Lrua7lZgQT6ZR4zF6ZCZZw=; b=ADuqCZL/aLw2C8m90U1aK0hXqoc8KAXSmnpyEnBZYsbwAgUzAmk/jBqd8rzLID79dW B4IREdrBAsth+J/1VJNDxXEdPO0eshaviEzKd9nLwg9vl5Rem+hTsnQxXS2sh6iejAz6 QhKaWGUvCam77JT7X/KIDS3E0BDn634O2kyfc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=ZKblE3j1kUtC7/lpPZDj0Lrua7lZgQT6ZR4zF6ZCZZw=; b=EVFzwniHlg9fJQhVjoeKDC51i+PrBhqCKwsNN72o8jPo90da9WPkBYdwobN/PX37Yy ILJvhwNls7i0N0P5X4vZQd/DYv2e9tS3A+qjIhunmfzY/Eh5eF+sR35DJ5oKwv5JVfeB Pc4twZ0cNz9IZCYJ524L5DSDvUf+iJ+IsiepKkkmhDDS4qP3S50DmP9o4jCwENVBWQ5V dnTapGtNX1INDLx6AM42qARdivzVFAU1p/7uhriPo6oFY+WqotwXfINo7CQ8hZaLf27n jcN4lvAM6xkafs/RYz8Pon82t0RauejVOcs6fyK80/DaahvGTzkgVIvaaZqkw2rWDd3R pwVw== X-Gm-Message-State: AJcUukfRTy1tVzLsilGb3akYpvdpp1erOF5695d/08W4rjQ2hzmMzyVw ynLTZgdut79n+QMIJj+Ps2P6QPY3qjGx54q79/LfVw== X-Google-Smtp-Source: ALg8bN6MhJKon8UT6aN+5ijUm5D4tkbLW8ezvJp3gGjKKJLpp+N3/9KHjlHF6syWNps0a6dyqd9PW0STvsAqPocsSHQ= X-Received: by 2002:a6b:5d01:: with SMTP id r1mr29133218iob.170.1546434363980; Wed, 02 Jan 2019 05:06:03 -0800 (PST) MIME-Version: 1.0 References: <1544789607-11316-1-git-send-email-jagadeesh.ujja@arm.com> <1544789607-11316-13-git-send-email-jagadeesh.ujja@arm.com> In-Reply-To: <1544789607-11316-13-git-send-email-jagadeesh.ujja@arm.com> From: Ard Biesheuvel Date: Wed, 2 Jan 2019 14:05:53 +0100 Message-ID: To: Jagadeesh Ujja Cc: "edk2-devel@lists.01.org" , "Gao, Liming" , "Zhang, Chao B" , Leif Lindholm Subject: Re: [PATCH 12/13] SecurityPkg/AuthVariableLib: allow MM_STANDALONE drivers to use this library X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2019 13:06:05 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Fri, 14 Dec 2018 at 13:14, Jagadeesh Ujja wrote= : > > =E2=80=9CAuthVariableLib=E2=80=9D library can be used by MM_STANDALONE dr= ivers as well. > So add MM_STANDALONE as the module type this library supports. > > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Jagadeesh Ujja > Reviewed-by: Chao Zhang > --- > SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf b/Se= curityPkg/Library/AuthVariableLib/AuthVariableLib.inf > index 572ba4e..4294d3b 100644 > --- a/SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf > +++ b/SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf > @@ -2,6 +2,7 @@ > # Provides authenticated variable services. > # > # Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved. > +# Copyright (c) 2018, ARM Limited. All rights reserved.
> # > # This program and the accompanying materials > # are licensed and made available under the terms and conditions > @@ -21,12 +22,12 @@ > FILE_GUID =3D B23CF5FB-6FCC-4422-B145-D855DBC0545= 7 > MODULE_TYPE =3D DXE_RUNTIME_DRIVER Please change the module type to 'BASE' as well. Note that this may require you to add #include to some source or header files. With that Reviewed-by: Ard Biesheuvel > VERSION_STRING =3D 1.0 > - LIBRARY_CLASS =3D AuthVariableLib|DXE_RUNTIME_DRIVER = DXE_SMM_DRIVER > + LIBRARY_CLASS =3D AuthVariableLib|DXE_RUNTIME_DRIVER = DXE_SMM_DRIVER MM_STANDALONE > > # > # The following information is for reference only and not required by th= e build tools. > # > -# VALID_ARCHITECTURES =3D IA32 X64 > +# VALID_ARCHITECTURES =3D IA32 X64 AARCH64 > # > > [Sources] > -- > 2.7.4 >