diff options
| author | Simon Glass <[email protected]> | 2021-07-02 12:36:17 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-07-28 14:27:54 -0400 |
| commit | 1a46cb6c7e1860c8dfdfadbb2e3ac708edc5d388 (patch) | |
| tree | 8f51a51f51e3d275c1950b5b002961ccc744185f /lib/Makefile | |
| parent | 6e3c6544c72b0b801b30b10ce2234b4e9fc2ae08 (diff) | |
lib: Create a new Kconfig option for charset conversion
Rather than looking at two KConfig options in the Makefile, create a new
Kconfig option for compiling lib/charset.c
Enable it for UFS also, which needs this support.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 5cd0c9c6389..07c2ccd7cfd 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -25,7 +25,7 @@ obj-$(CONFIG_AES) += aes/ obj-$(CONFIG_$(SPL_TPL_)BINMAN_FDT) += binman.o ifndef API_BUILD -ifneq ($(CONFIG_UT_UNICODE)$(CONFIG_EFI_LOADER),) +ifneq ($(CONFIG_CHARSET),) obj-y += charset.o endif endif |
