public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ard Biesheuvel" <ard.biesheuvel@linaro.org>
To: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	Laszlo Ersek <lersek@redhat.com>,
	 Leif Lindholm <leif@nuviainc.com>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>,
	 Ray Ni <ray.ni@intel.com>, Jiewen Yao <jiewen.yao@intel.com>
Subject: Re: [EXTERNAL] [PATCH 3/4] MdePkg: remove PropertiesTable GUID
Date: Fri, 27 Mar 2020 10:16:33 +0100	[thread overview]
Message-ID: <CAKv+Gu8xAPSRgj+dKd4ZmzHcs9gvh0+OsbzEd6kKH6Cr1abQ8w@mail.gmail.com> (raw)
In-Reply-To: <CY4PR21MB0743754E882F7A11C0E0963DEFCC0@CY4PR21MB0743.namprd21.prod.outlook.com>

On Fri, 27 Mar 2020 at 02:02, Bret Barkelew <Bret.Barkelew@microsoft.com> wrote:
>
> Reviewed-by: Bret Barkelew <bret.barkelew@microsoft.com>
>

Thanks Bret

Does this apply only to this 3rd patch? Or to the whole series?


>
>
> ________________________________
> From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Sent: Thursday, March 26, 2020 3:24:42 AM
> To: devel@edk2.groups.io <devel@edk2.groups.io>
> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>; Laszlo Ersek <lersek@redhat.com>; Leif Lindholm <leif@nuviainc.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Ray Ni <ray.ni@intel.com>; Jiewen Yao <jiewen.yao@intel.com>; Bret Barkelew <Bret.Barkelew@microsoft.com>
> Subject: [EXTERNAL] [PATCH 3/4] MdePkg: remove PropertiesTable GUID
>
> Remove the GUID definition that describes the deprecated properties table,
> which is no longer generated by the DXE core.
>
> Link: https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbugzilla.tianocore.org%2Fshow_bug.cgi%3Fid%3D2633&amp;data=02%7C01%7CBret.Barkelew%40microsoft.com%7C0c14ed320c7f416c975908d7d16feb9a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637208150931667814&amp;sdata=PE0Hy4H60WnykMk4MpFE5mCmD1Ucm6I7Byl1yS33ei0%3D&amp;reserved=0
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
>  MdePkg/Include/Guid/PropertiesTable.h | 31 --------------------
>  MdePkg/MdePkg.dec                     |  3 --
>  2 files changed, 34 deletions(-)
>
> diff --git a/MdePkg/Include/Guid/PropertiesTable.h b/MdePkg/Include/Guid/PropertiesTable.h
> deleted file mode 100644
> index 56dbc7f96138..000000000000
> --- a/MdePkg/Include/Guid/PropertiesTable.h
> +++ /dev/null
> @@ -1,31 +0,0 @@
> -/** @file
> -  GUIDs used for UEFI Properties Table in the UEFI 2.5 specification.
> -
> -  Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
> -  SPDX-License-Identifier: BSD-2-Clause-Patent
> -
> -**/
> -
> -#ifndef __EFI_PROPERTIES_TABLE_H__
> -#define __EFI_PROPERTIES_TABLE_H__
> -
> -#define EFI_PROPERTIES_TABLE_GUID {\
> -  0x880aaca3, 0x4adc, 0x4a04, {0x90, 0x79, 0xb7, 0x47, 0x34, 0x8, 0x25, 0xe5} \
> -}
> -
> -typedef struct {
> -  UINT32    Version;
> -  UINT32    Length;
> -  UINT64    MemoryProtectionAttribute;
> -} EFI_PROPERTIES_TABLE;
> -
> -#define EFI_PROPERTIES_TABLE_VERSION  0x00010000
> -
> -//
> -// Memory attribute (Not defined bit is reserved)
> -//
> -#define EFI_PROPERTIES_RUNTIME_MEMORY_PROTECTION_NON_EXECUTABLE_PE_DATA        0x1
> -
> -extern EFI_GUID gEfiPropertiesTableGuid;
> -
> -#endif
> diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec
> index ac1f5339af06..6c37c2181c62 100644
> --- a/MdePkg/MdePkg.dec
> +++ b/MdePkg/MdePkg.dec
> @@ -578,9 +578,6 @@ [Guids]
>    # GUIDs defined in UEFI2.5
>    #
>
> -  ## Include/Guid/PropertiesTable.h
> -  gEfiPropertiesTableGuid        = { 0x880aaca3, 0x4adc, 0x4a04, {0x90, 0x79, 0xb7, 0x47, 0x34, 0x8, 0x25, 0xe5 }}
> -
>    ## Include/Guid/SystemResourceTable.h
>    gEfiSystemResourceTableGuid    = { 0xb122a263, 0x3661, 0x4f68, {0x99, 0x29, 0x78, 0xf8, 0xb0, 0xd6, 0x21, 0x80 }}
>
> --
> 2.17.1
>

  reply	other threads:[~2020-03-27  9:16 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-26 10:24 [PATCH 0/4] remove generation of EFI properties table Ard Biesheuvel
2020-03-26 10:24 ` [PATCH 1/4] OvmfPkg: remove handling of " Ard Biesheuvel
2020-03-27 14:01   ` [edk2-devel] " Laszlo Ersek
2020-03-26 10:24 ` [PATCH 2/4] MdeModulePkg: disable properties table generation but retain the code Ard Biesheuvel
2020-03-26 10:24 ` [PATCH 3/4] MdePkg: remove PropertiesTable GUID Ard Biesheuvel
2020-03-27  1:02   ` [EXTERNAL] " Bret Barkelew
2020-03-27  9:16     ` Ard Biesheuvel [this message]
2020-03-26 10:24 ` [PATCH 4/4] MdeModulePkg/DxeCore: merge properties table routines into MAT handling Ard Biesheuvel
2020-03-27  5:00 ` [PATCH 0/4] remove generation of EFI properties table Yao, Jiewen
2020-03-30 13:42   ` [edk2-devel] " Liming Gao
2020-03-30 17:57     ` Ard Biesheuvel
2020-04-01 17:17       ` Ard Biesheuvel
2020-04-03  2:22 ` Dandan Bi
2020-04-06 11:42   ` Ard Biesheuvel
2020-04-07  7:27     ` Wang, Jian J
2020-04-07  8:22       ` Ard Biesheuvel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAKv+Gu8xAPSRgj+dKd4ZmzHcs9gvh0+OsbzEd6kKH6Cr1abQ8w@mail.gmail.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox