Add a Kconfig optiion to enable this library and add it to the lib/ Makefile, being careful to avoid a conflict with the existing blake2b implementation. Co-developed-by: Claude <noreply@anthropic.com> Signed-off-by: Simon Glass <simon.glass@canonical.com>
14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
config FS_BTRFS
|
|
bool "Enable BTRFS filesystem support"
|
|
select CRC32C
|
|
select LIB_UUID
|
|
select LZO
|
|
select ZSTD
|
|
select RBTREE
|
|
select SHA256
|
|
select BLAKE2 if !ARGON2
|
|
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.
|