summaryrefslogtreecommitdiff
path: root/lib/efi
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-02 07:27:00 +0300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-03 22:39:22 +0300
commitd30924f16bdceb4c34bfa1f230b04e91e28d5666 (patch)
tree6ffa757143e7dfb4430f318f0c40bce07dd1e99e /lib/efi
parentc900a42eb0a82d3d7cd18f3255acf92dd9894b92 (diff)
downloadu-boot-d30924f16bdceb4c34bfa1f230b04e91e28d5666.tar.xz
lib: fix selection of CONFIG_CHARSET
lib/charset.c is not optional for EFI_APP || EFI_LOADER || UFS || UT_UNICODE. These must select CONFIG_CHARSET. Fixes: 726cd9836db0 ("efi: Make unicode printf available to the app") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib/efi')
-rw-r--r--lib/efi/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi/Kconfig b/lib/efi/Kconfig
index 15ce99e1a7..c2b9bb73f7 100644
--- a/lib/efi/Kconfig
+++ b/lib/efi/Kconfig
@@ -14,6 +14,7 @@ choice
config EFI_APP
bool "Support running as an EFI application"
+ select CHARSET
help
Build U-Boot as an application which can be started from EFI. This
is useful for examining a platform in the early stages of porting