* Pull request for efi-2022-04-rc6
@ 2022-04-01 1:21 Heinrich Schuchardt
2022-04-01 13:43 ` Tom Rini
0 siblings, 1 reply; 2+ messages in thread
From: Heinrich Schuchardt @ 2022-04-01 1:21 UTC (permalink / raw)
To: Tom Rini
Cc: U-Boot Mailing List, Andy Shevchenko, Bin Meng, Patrick Delaunay,
Sughosh Ganu
Dear Tom,
The following changes since commit 64b78f5721e65e96ea5a3d100d46b2e6fda722df:
Merge branch '2022-03-31-critical-fixes' (2022-03-31 08:28:43 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-efi.git
tags/efi-2022-04-rc6
for you to fetch changes up to b6370aca3709ef23a9e8fe556beaa2e4b4e089c3:
efi_loader: initrddump: Actually use the custom CFLAGS (2022-03-31
19:06:17 +0200)
No problems were reported by Gitlab CI:
https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/11531
----------------------------------------------------------------
Pull request for efi-2022-04-rc6
Documentation:
* Move VxWorks and Plan 9 to HTML documentation
* Move all command man-pages to a separate directory
Test:
* Fix pylint errors
UEFI
* Fix build flags for initrddump.efi
QEMU
* Remove unused function to get RNG device
----------------------------------------------------------------
Andy Shevchenko (1):
efi_loader: initrddump: Actually use the custom CFLAGS
Bin Meng (5):
doc: usage: Group all shell command docs into cmd/ sub-directory
doc: usage: Update the extension command title
doc: usage: Convert README.vxworks to reST
doc: usage: Update vxworks doc to mention RISC-V support
doc: usage: Convert README.plan9 to reST
Heinrich Schuchardt (2):
test: fix pylint warnings for test_efi_fit.py
test: fix pylint warnings in test_efi_bootmgr
Patrick Delaunay (1):
doc: mmc dev
Sughosh Ganu (1):
qemu: arm: Remove platform specific function to get RNG device
board/emulation/qemu-arm/qemu-arm.c | 42 ------------
doc/usage/{ => cmd}/acpi.rst | 0
doc/usage/{ => cmd}/addrmap.rst | 0
doc/usage/{ => cmd}/askenv.rst | 0
doc/usage/{ => cmd}/base.rst | 0
doc/usage/{ => cmd}/bootefi.rst | 0
doc/usage/{ => cmd}/booti.rst | 0
doc/usage/{ => cmd}/bootmenu.rst | 0
doc/usage/{ => cmd}/button.rst | 0
doc/usage/{x86 => cmd}/cbsysinfo.rst | 0
doc/usage/{ => cmd}/conitrace.rst | 0
doc/usage/{ => cmd}/echo.rst | 0
doc/usage/{ => cmd}/exception.rst | 0
doc/usage/{ => cmd}/exit.rst | 0
doc/usage/{ => cmd}/extension.rst | 4 +-
doc/usage/{ => cmd}/false.rst | 0
doc/usage/{ => cmd}/fatinfo.rst | 0
doc/usage/{ => cmd}/fatload.rst | 0
doc/usage/{ => cmd}/for.rst | 0
doc/usage/{ => cmd}/load.rst | 0
doc/usage/{ => cmd}/loady.rst | 0
doc/usage/{ => cmd}/mbr.rst | 0
doc/usage/{ => cmd}/md.rst | 2 -
doc/usage/{ => cmd}/mmc.rst | 36 +++++-----
doc/usage/{ => cmd}/pinmux.rst | 0
doc/usage/{ => cmd}/pstore.rst | 0
doc/usage/{ => cmd}/qfw.rst | 0
doc/usage/{ => cmd}/reset.rst | 0
doc/usage/{ => cmd}/sbi.rst | 0
doc/usage/{ => cmd}/scp03.rst | 0
doc/usage/{ => cmd}/setexpr.rst | 0
doc/usage/{ => cmd}/sf.rst | 0
doc/usage/{ => cmd}/size.rst | 0
doc/usage/{ => cmd}/true.rst | 0
doc/usage/{ => cmd}/ums.rst | 0
doc/usage/{ => cmd}/wdt.rst | 0
doc/usage/index.rst | 79
++++++++++++----------
doc/{README.plan9 => usage/os/plan9.rst} | 12 ++--
doc/{README.vxworks => usage/os/vxworks.rst} | 31 ++++++---
lib/efi_loader/Makefile | 2 +-
test/py/tests/test_efi_bootmgr/conftest.py | 14 ++--
test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py | 13 +++-
test/py/tests/test_efi_fit.py | 31 +++++----
43 files changed, 129 insertions(+), 137 deletions(-)
rename doc/usage/{ => cmd}/acpi.rst (100%)
rename doc/usage/{ => cmd}/addrmap.rst (100%)
rename doc/usage/{ => cmd}/askenv.rst (100%)
rename doc/usage/{ => cmd}/base.rst (100%)
rename doc/usage/{ => cmd}/bootefi.rst (100%)
rename doc/usage/{ => cmd}/booti.rst (100%)
rename doc/usage/{ => cmd}/bootmenu.rst (100%)
rename doc/usage/{ => cmd}/button.rst (100%)
rename doc/usage/{x86 => cmd}/cbsysinfo.rst (100%)
rename doc/usage/{ => cmd}/conitrace.rst (100%)
rename doc/usage/{ => cmd}/echo.rst (100%)
rename doc/usage/{ => cmd}/exception.rst (100%)
rename doc/usage/{ => cmd}/exit.rst (100%)
rename doc/usage/{ => cmd}/extension.rst (96%)
rename doc/usage/{ => cmd}/false.rst (100%)
rename doc/usage/{ => cmd}/fatinfo.rst (100%)
rename doc/usage/{ => cmd}/fatload.rst (100%)
rename doc/usage/{ => cmd}/for.rst (100%)
rename doc/usage/{ => cmd}/load.rst (100%)
rename doc/usage/{ => cmd}/loady.rst (100%)
rename doc/usage/{ => cmd}/mbr.rst (100%)
rename doc/usage/{ => cmd}/md.rst (99%)
rename doc/usage/{ => cmd}/mmc.rst (90%)
rename doc/usage/{ => cmd}/pinmux.rst (100%)
rename doc/usage/{ => cmd}/pstore.rst (100%)
rename doc/usage/{ => cmd}/qfw.rst (100%)
rename doc/usage/{ => cmd}/reset.rst (100%)
rename doc/usage/{ => cmd}/sbi.rst (100%)
rename doc/usage/{ => cmd}/scp03.rst (100%)
rename doc/usage/{ => cmd}/setexpr.rst (100%)
rename doc/usage/{ => cmd}/sf.rst (100%)
rename doc/usage/{ => cmd}/size.rst (100%)
rename doc/usage/{ => cmd}/true.rst (100%)
rename doc/usage/{ => cmd}/ums.rst (100%)
rename doc/usage/{ => cmd}/wdt.rst (100%)
rename doc/{README.plan9 => usage/os/plan9.rst} (89%)
rename doc/{README.vxworks => usage/os/vxworks.rst} (89%)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Pull request for efi-2022-04-rc6
2022-04-01 1:21 Pull request for efi-2022-04-rc6 Heinrich Schuchardt
@ 2022-04-01 13:43 ` Tom Rini
0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2022-04-01 13:43 UTC (permalink / raw)
To: Heinrich Schuchardt
Cc: U-Boot Mailing List, Andy Shevchenko, Bin Meng, Patrick Delaunay,
Sughosh Ganu
[-- Attachment #1: Type: text/plain, Size: 735 bytes --]
On Fri, Apr 01, 2022 at 03:21:14AM +0200, Heinrich Schuchardt wrote:
> Dear Tom,
>
> The following changes since commit 64b78f5721e65e96ea5a3d100d46b2e6fda722df:
>
> Merge branch '2022-03-31-critical-fixes' (2022-03-31 08:28:43 -0400)
>
> are available in the Git repository at:
>
> https://source.denx.de/u-boot/custodians/u-boot-efi.git
> tags/efi-2022-04-rc6
>
> for you to fetch changes up to b6370aca3709ef23a9e8fe556beaa2e4b4e089c3:
>
> efi_loader: initrddump: Actually use the custom CFLAGS (2022-03-31
> 19:06:17 +0200)
>
> No problems were reported by Gitlab CI:
>
> https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/11531
>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-04-01 13:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-01 1:21 Pull request for efi-2022-04-rc6 Heinrich Schuchardt
2022-04-01 13:43 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox