mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-19 08:21:27 +01:00
Create a Kconfig which indicates that EFI functionality is in use, either as a client (EFI app / stub) or provider (EFI loader). This will make it easier to share code between these two parts of U-Boot Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
261 B
Plaintext
13 lines
261 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright 2025 Simon Glass <sjg@chromium.org>
|
|
#
|
|
|
|
config EFI
|
|
bool
|
|
help
|
|
Indicates that EFI functionality is enabled, either via EFI_CLIENT or
|
|
EFI_LOADER
|
|
|
|
This is used to provide libraries shared by both.
|