]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Use LIB_UUID with ACPIGEN and FS_BTRFS
authorSimon Glass <sjg@chromium.org>
Fri, 2 Jul 2021 18:36:15 +0000 (12:36 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 28 Jul 2021 18:27:54 +0000 (14:27 -0400)
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>
drivers/core/Kconfig
fs/btrfs/Kconfig

index d618e1637b97032bb74d7e7e9f55df5aa443f908..9ae188c1dfc5b918227d2b5f565bd8ccd5aaafe2 100644 (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
index 2a32f42ad13174479f57964a12c2fe469e54c5f9..a0b48c23b31ac784da40b3837cecf8d6b54ae1aa 100644 (file)
@@ -1,6 +1,7 @@
 config FS_BTRFS
        bool "Enable BTRFS filesystem support"
        select CRC32C
+       select LIB_UUID
        select LZO
        select ZSTD
        select RBTREE