mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
8b6ee2484c
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>
12 lines
296 B
Text
12 lines
296 B
Text
config FS_BTRFS
|
|
bool "Enable BTRFS filesystem support"
|
|
select CRC32C
|
|
select LIB_UUID
|
|
select LZO
|
|
select ZSTD
|
|
select RBTREE
|
|
select SHA256
|
|
help
|
|
This provides a single-device read-only BTRFS support. BTRFS is a
|
|
next-generation Linux file system based on the copy-on-write
|
|
principle.
|