diff options
author | Tom Rini <trini@konsulko.com> | 2019-11-01 09:37:02 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-11-01 09:37:02 -0400 |
commit | 24b77393a5fcc3e1f51b4e3a1080c0efb60b52eb (patch) | |
tree | 0fb3b7817167c5353a24f872bd47dca5666a7fb6 /lib | |
parent | bafed105426ddb6003157bad9c522e6fcca60033 (diff) | |
parent | e731af4893f7741c66254161ad9b6f5280369895 (diff) | |
download | u-boot-24b77393a5fcc3e1f51b4e3a1080c0efb60b52eb.tar.gz u-boot-24b77393a5fcc3e1f51b4e3a1080c0efb60b52eb.tar.xz u-boot-24b77393a5fcc3e1f51b4e3a1080c0efb60b52eb.zip |
Merge tag 'efi-2020-01-rc2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-01-rc2
Provide a better user interface for setting UEFI variables.
Bug fixes:
- ext4 file system not discovered on UEFI block device
- 'make tests' build error on 32bit systems
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_variable.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c index d0daf7bdeb..46f35bc60b 100644 --- a/lib/efi_loader/efi_variable.c +++ b/lib/efi_loader/efi_variable.c @@ -5,14 +5,12 @@ * Copyright (c) 2017 Rob Clark */ -#include <env.h> -#include <malloc.h> -#include <charset.h> +#include <common.h> #include <efi_loader.h> -#include <hexdump.h> #include <env_internal.h> +#include <hexdump.h> +#include <malloc.h> #include <search.h> -#include <uuid.h> #define READ_ONLY BIT(31) |