diff options
author | Adam Ford <aford173@gmail.com> | 2018-02-06 12:14:28 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-02-08 19:08:39 -0500 |
commit | a451bc27c9afd1be537bb04946fb4cb1b2cf6280 (patch) | |
tree | b433baab4c6c9bd5e07622608cc6ce1121e1096d /include | |
parent | a5a37567c4f7bd6faf85ef4b720f6efce3e8bbbf (diff) |
Convert LIB_UUID to Kconfig
config_fallback.h has some logic that checks a variety of options
and selects LIB_UUID if it hasn't already been selected. This
will all LIB_UUID in Kconfig and select this option for the list
of options to allow us to remove the logic from fallbacks
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/config_fallbacks.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/config_fallbacks.h b/include/config_fallbacks.h index c11abe67e59..70013fe1d07 100644 --- a/include/config_fallbacks.h +++ b/include/config_fallbacks.h @@ -44,16 +44,6 @@ #define HAVE_BLOCK_DEVICE #endif -#if (CONFIG_IS_ENABLED(PARTITION_UUIDS) || \ - CONFIG_IS_ENABLED(EFI_PARTITION) || \ - CONFIG_IS_ENABLED(EFI_LOADER) || \ - defined(CONFIG_RANDOM_UUID) || \ - defined(CONFIG_CMD_UUID) || \ - defined(CONFIG_BOOTP_PXE)) && \ - !defined(CONFIG_LIB_UUID) -#define CONFIG_LIB_UUID -#endif - /* Console I/O Buffer Size */ #ifndef CONFIG_SYS_CBSIZE #if defined(CONFIG_CMD_KGDB) |