mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
x86: Tidy up selection of building the EFI stub
At present we use a CONFIG option in efi.h to determine whether we are building the EFI stub or not. This means that the same header cannot be used for EFI_LOADER support. The CONFIG option will be enabled for the whole build, even when not building the stub. Use a different define instead, set up just for the files that make up the stub. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
committed by
Alexander Graf
parent
5ee31baf81
commit
5abd9137d5
@@ -30,8 +30,11 @@ struct efi_device_path;
|
||||
|
||||
#define EFI_BITS_PER_LONG BITS_PER_LONG
|
||||
|
||||
/* With 64-bit EFI stub, EFI_BITS_PER_LONG has to be 64 */
|
||||
#ifdef CONFIG_EFI_STUB_64BIT
|
||||
/*
|
||||
* With 64-bit EFI stub, EFI_BITS_PER_LONG has to be 64. EFI_STUB is set
|
||||
* in lib/efi/Makefile, when building the stub.
|
||||
*/
|
||||
#if defined(CONFIG_EFI_STUB_64BIT) && defined(EFI_STUB)
|
||||
#undef EFI_BITS_PER_LONG
|
||||
#define EFI_BITS_PER_LONG 64
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user