aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-08-04 19:39:54 -0400
committerTom Rini <trini@konsulko.com>2019-08-04 19:39:54 -0400
commit7127151d538d878bd073ca6d6cca630a4b35b76f (patch)
tree2c55481916d8d48bf9d05c6daa4fbd19be7a0b28 /cmd
parent898c40c0d6f9e53dafcfdf6f870190faef6e088b (diff)
parentbb689577206a679f5066a5251610ff80659507af (diff)
downloadu-boot-7127151d538d878bd073ca6d6cca630a4b35b76f.zip
u-boot-7127151d538d878bd073ca6d6cca630a4b35b76f.tar.gz
u-boot-7127151d538d878bd073ca6d6cca630a4b35b76f.tar.bz2
Merge tag 'efi-2019-10-rc2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for v2019.10-rc2 With this pull request a workaround for GRUB on 32bit ARM is re-enabled and made customizable. Without the patch booting on ARM 32bit with GRUB prior to version 2.04 or with a cache which is not managed via CP15 fails. Further work will be needed to achieve a UEFI compliant cache handling. According to the UEFI spec all caches except those that cannot be managed via CP15 should be enabled. An implementation of the ConvertPointer() runtime service is provided. efi_crt0 is always rebuild to avoid having to call 'make mrproper' when switching architectures.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/efidebug.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c
index 02dc491..961e8fa 100644
--- a/cmd/efidebug.c
+++ b/cmd/efidebug.c
@@ -729,7 +729,8 @@ static int u16_tohex(u16 c)
*
* Implement efidebug "boot dump" sub-command.
* Dump information of all UEFI load options defined.
- * - boot dump
+ *
+ * efidebug boot dump
*/
static int do_efi_boot_dump(cmd_tbl_t *cmdtp, int flag,
int argc, char * const argv[])
@@ -1013,7 +1014,6 @@ static cmd_tbl_t cmd_efidebug_boot_sub[] = {
* CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
*
* Implement efidebug "boot" sub-command.
- * See above for details of sub-commands.
*/
static int do_efi_boot_opt(cmd_tbl_t *cmdtp, int flag,
int argc, char * const argv[])
@@ -1059,7 +1059,6 @@ static cmd_tbl_t cmd_efidebug_sub[] = {
*
* Implement efidebug command which allows us to display and
* configure UEFI environment.
- * See above for details of sub-commands.
*/
static int do_efidebug(cmd_tbl_t *cmdtp, int flag,
int argc, char * const argv[])