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>
This commit is contained in:
Simon Glass 2021-07-02 12:36:15 -06:00 committed by Tom Rini
parent a594b41f86
commit 8b6ee2484c
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -1,6 +1,7 @@
config FS_BTRFS
bool "Enable BTRFS filesystem support"
select CRC32C
select LIB_UUID
select LZO
select ZSTD
select RBTREE