Files
u-boot/fs/btrfs/Kconfig
Simon Glass 7bd184c0c5 lib: Plumb in argon2 library
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>
2025-11-11 04:09:41 -07:00

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.