Pull request for efi-2021-10-rc3

Hello Tom,
Ilias will be back on Monday. Then he can clarify with Simon the series "efi: Minimal revert to rodata change" https://patchwork.ozlabs.org/project/uboot/list/?series=256272.
The following changes since commit a0da2dda4ed9d0aee5265e9cd8876734f9f80e09:
Prepare v2021.10-rc2 (2021-08-16 14:18:45 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2021-10-rc3
for you to fetch changes up to 9a4b3c8e914dbb9d06640d8e04db8a06dedca051:
efi_loader: use EfiBootServicesData for DP to text (2021-08-17 17:24:08 +0200)
---------------------------------------------------------------- Pull request for efi-2021-10-rc3
Documentation:
* Rename Freescale to NXP * Document structures used for the UEFI TCG2 protocol
UEFI:
* Device paths must use EfiBootServicesData
---------------------------------------------------------------- Heinrich Schuchardt (8): doc: move i.MX7D/i.MX8MM A/B booting to board specific doc: rename Freescale to NXP doc: move doc/board/st/st.rst efi_loader: use an enum for the memory allocation types efi_loader rename enum efi_mem_type to efi_memory_type efi_loader: use correct type for AllocatePages, AllocatePool efi_loader: use EfiBootServicesData for device path efi_loader: use EfiBootServicesData for DP to text
Masahisa Kojima (1): efi_loader: add comment for efi_tcg2.h
arch/x86/include/asm/hob.h | 2 +- doc/board/index.rst | 2 +- doc/board/{freescale => nxp}/imx8mm_evk.rst | 0 doc/board/{freescale => nxp}/imx8mn_evk.rst | 0 doc/board/{freescale => nxp}/imx8mp_evk.rst | 0 doc/board/{freescale => nxp}/imx8mq_evk.rst | 0 doc/board/{freescale => nxp}/imx8qxp_mek.rst | 0 doc/board/{freescale => nxp}/imxrt1020-evk.rst | 0 doc/board/{freescale => nxp}/imxrt1050-evk.rst | 0 doc/board/{freescale => nxp}/index.rst | 5 ++- doc/board/{freescale => nxp}/mx6sabreauto.rst | 0 doc/board/{freescale => nxp}/mx6sabresd.rst | 0 doc/board/{freescale => nxp}/mx6ul_14x14_evk.rst | 0 doc/board/{freescale => nxp}/mx6ullevk.rst | 0 doc/{imx/misc => board/nxp}/psb.rst | 0 doc/board/st/index.rst | 2 +- doc/board/st/{st.rst => st-dt.rst} | 0 doc/imx/index.rst | 9 ---- doc/imx/misc/index.rst | 9 ---- doc/index.rst | 11 ----- include/efi.h | 36 ++++++++++++--- include/efi_api.h | 2 +- include/efi_loader.h | 9 ++-- include/efi_tcg2.h | 57 ++++++++++++++++++++++-- lib/efi_loader/efi_device_path.c | 2 +- lib/efi_loader/efi_device_path_to_text.c | 2 +- lib/efi_loader/efi_memory.c | 5 ++- 27 files changed, 100 insertions(+), 53 deletions(-) rename doc/board/{freescale => nxp}/imx8mm_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8mn_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8mp_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8mq_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8qxp_mek.rst (100%) rename doc/board/{freescale => nxp}/imxrt1020-evk.rst (100%) rename doc/board/{freescale => nxp}/imxrt1050-evk.rst (100%) rename doc/board/{freescale => nxp}/index.rst (83%) rename doc/board/{freescale => nxp}/mx6sabreauto.rst (100%) rename doc/board/{freescale => nxp}/mx6sabresd.rst (100%) rename doc/board/{freescale => nxp}/mx6ul_14x14_evk.rst (100%) rename doc/board/{freescale => nxp}/mx6ullevk.rst (100%) rename doc/{imx/misc => board/nxp}/psb.rst (100%) rename doc/board/st/{st.rst => st-dt.rst} (100%) delete mode 100644 doc/imx/index.rst delete mode 100644 doc/imx/misc/index.rst

Hi Heinrich,
On Fri, 20 Aug 2021 at 13:07, Heinrich Schuchardt xypron.glpk@gmx.de wrote:
Hello Tom,
Ilias will be back on Monday. Then he can clarify with Simon the series "efi: Minimal revert to rodata change" https://patchwork.ozlabs.org/project/uboot/list/?series=256272.
I think I already asked for the reverts to be applied right away, rather than waiting any longer. Can you please apply it as part of this PR? It has been over a month since this issue came up and we are past RC2.
It took me quite a while to even find the patches as they are marked both deferred and archived.
We still have time to figure out new patches before the release, but I have not seen a lot of action so far and really this problem should not have happened.
Regards, Simon
The following changes since commit a0da2dda4ed9d0aee5265e9cd8876734f9f80e09:
Prepare v2021.10-rc2 (2021-08-16 14:18:45 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2021-10-rc3
for you to fetch changes up to 9a4b3c8e914dbb9d06640d8e04db8a06dedca051:
efi_loader: use EfiBootServicesData for DP to text (2021-08-17 17:24:08 +0200)
Pull request for efi-2021-10-rc3
Documentation:
- Rename Freescale to NXP
- Document structures used for the UEFI TCG2 protocol
UEFI:
- Device paths must use EfiBootServicesData
Heinrich Schuchardt (8): doc: move i.MX7D/i.MX8MM A/B booting to board specific doc: rename Freescale to NXP doc: move doc/board/st/st.rst efi_loader: use an enum for the memory allocation types efi_loader rename enum efi_mem_type to efi_memory_type efi_loader: use correct type for AllocatePages, AllocatePool efi_loader: use EfiBootServicesData for device path efi_loader: use EfiBootServicesData for DP to text
Masahisa Kojima (1): efi_loader: add comment for efi_tcg2.h
arch/x86/include/asm/hob.h | 2 +- doc/board/index.rst | 2 +- doc/board/{freescale => nxp}/imx8mm_evk.rst | 0 doc/board/{freescale => nxp}/imx8mn_evk.rst | 0 doc/board/{freescale => nxp}/imx8mp_evk.rst | 0 doc/board/{freescale => nxp}/imx8mq_evk.rst | 0 doc/board/{freescale => nxp}/imx8qxp_mek.rst | 0 doc/board/{freescale => nxp}/imxrt1020-evk.rst | 0 doc/board/{freescale => nxp}/imxrt1050-evk.rst | 0 doc/board/{freescale => nxp}/index.rst | 5 ++- doc/board/{freescale => nxp}/mx6sabreauto.rst | 0 doc/board/{freescale => nxp}/mx6sabresd.rst | 0 doc/board/{freescale => nxp}/mx6ul_14x14_evk.rst | 0 doc/board/{freescale => nxp}/mx6ullevk.rst | 0 doc/{imx/misc => board/nxp}/psb.rst | 0 doc/board/st/index.rst | 2 +- doc/board/st/{st.rst => st-dt.rst} | 0 doc/imx/index.rst | 9 ---- doc/imx/misc/index.rst | 9 ---- doc/index.rst | 11 ----- include/efi.h | 36 ++++++++++++--- include/efi_api.h | 2 +- include/efi_loader.h | 9 ++-- include/efi_tcg2.h | 57 ++++++++++++++++++++++-- lib/efi_loader/efi_device_path.c | 2 +- lib/efi_loader/efi_device_path_to_text.c | 2 +- lib/efi_loader/efi_memory.c | 5 ++- 27 files changed, 100 insertions(+), 53 deletions(-) rename doc/board/{freescale => nxp}/imx8mm_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8mn_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8mp_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8mq_evk.rst (100%) rename doc/board/{freescale => nxp}/imx8qxp_mek.rst (100%) rename doc/board/{freescale => nxp}/imxrt1020-evk.rst (100%) rename doc/board/{freescale => nxp}/imxrt1050-evk.rst (100%) rename doc/board/{freescale => nxp}/index.rst (83%) rename doc/board/{freescale => nxp}/mx6sabreauto.rst (100%) rename doc/board/{freescale => nxp}/mx6sabresd.rst (100%) rename doc/board/{freescale => nxp}/mx6ul_14x14_evk.rst (100%) rename doc/board/{freescale => nxp}/mx6ullevk.rst (100%) rename doc/{imx/misc => board/nxp}/psb.rst (100%) rename doc/board/st/{st.rst => st-dt.rst} (100%) delete mode 100644 doc/imx/index.rst delete mode 100644 doc/imx/misc/index.rst

On Fri, Aug 20, 2021 at 09:02:15PM +0200, Heinrich Schuchardt wrote:
Hello Tom,
Ilias will be back on Monday. Then he can clarify with Simon the series "efi: Minimal revert to rodata change" https://patchwork.ozlabs.org/project/uboot/list/?series=256272.
The following changes since commit a0da2dda4ed9d0aee5265e9cd8876734f9f80e09:
Prepare v2021.10-rc2 (2021-08-16 14:18:45 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2021-10-rc3
for you to fetch changes up to 9a4b3c8e914dbb9d06640d8e04db8a06dedca051:
efi_loader: use EfiBootServicesData for DP to text (2021-08-17 17:24:08 +0200)
Applied to u-boot/master, thanks!
participants (3)
-
Heinrich Schuchardt
-
Simon Glass
-
Tom Rini