diff options
author | Simon Glass <sjg@chromium.org> | 2021-07-02 12:36:15 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-26 13:23:18 -0400 |
commit | b81ad9c1d12b9c4b6df222613a9dee0fb9bb4d9d (patch) | |
tree | fbd873c0787f3cbcd2d62cd7a1a8d256c93609e9 | |
parent | 74ea394f31f8e0a36cbb53393d87bdb524311f8a (diff) | |
download | u-boot-b81ad9c1d12b9c4b6df222613a9dee0fb9bb4d9d.tar.gz |
Use LIB_UUID with ACPIGEN and FS_BTRFS
Since the ACPI-generation code makes use of UUIDs we typically need to
enabled UUID support for it to build. Add a new Kconfig condition.
Use it for BTRFS also.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/core/Kconfig | 1 | ||||
-rw-r--r-- | fs/btrfs/Kconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig index d618e1637b9..9ae188c1dfc 100644 --- a/drivers/core/Kconfig +++ b/drivers/core/Kconfig @@ -325,6 +325,7 @@ config DM_DEV_READ_INLINE config ACPIGEN bool "Support ACPI table generation in driver model" default y if SANDBOX || (GENERATE_ACPI_TABLE && !QEMU) + select LIB_UUID help This option enables generation of ACPI tables using driver-model devices. It adds a new operation struct to each driver, to support diff --git a/fs/btrfs/Kconfig b/fs/btrfs/Kconfig index 2a32f42ad13..a0b48c23b31 100644 --- a/fs/btrfs/Kconfig +++ b/fs/btrfs/Kconfig @@ -1,6 +1,7 @@ config FS_BTRFS bool "Enable BTRFS filesystem support" select CRC32C + select LIB_UUID select LZO select ZSTD select RBTREE |