diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-05-02 06:27:00 +0200 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-05-03 21:39:22 +0200 |
commit | d30924f16bdceb4c34bfa1f230b04e91e28d5666 (patch) | |
tree | 6ffa757143e7dfb4430f318f0c40bce07dd1e99e /test/Kconfig | |
parent | c900a42eb0a82d3d7cd18f3255acf92dd9894b92 (diff) | |
download | u-boot-d30924f16bdceb4c34bfa1f230b04e91e28d5666.tar.gz |
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 'test/Kconfig')
-rw-r--r-- | test/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Kconfig b/test/Kconfig index e15ba239eb..7f3447ae5a 100644 --- a/test/Kconfig +++ b/test/Kconfig @@ -91,6 +91,7 @@ config UT_UNICODE bool "Unit tests for Unicode functions" depends on UNIT_TEST default y + select CHARSET help Enables the 'ut unicode' command which tests that the functions for manipulating Unicode strings work correctly. |