a48d94b7fc
In fact, uuidgen was never built because we pass --disable-libuuid. So the option was a NOP. Remove the license info for libuuid. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> [Arnout: - do not remove --disable-uuidd - even though that is implied by --disable-libuuid, it's better to be explicit about it; - remove license info of libuuid] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
102 lines
2.1 KiB
Plaintext
102 lines
2.1 KiB
Plaintext
menuconfig BR2_PACKAGE_E2FSPROGS
|
|
bool "e2fsprogs"
|
|
depends on BR2_USE_MMU # util-linux/libblkid
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
help
|
|
The EXT2 file system utilities.
|
|
|
|
The uuid utilities (uuidd, uuidgen) are not built. Use the
|
|
ones from util-linux, instead.
|
|
|
|
http://e2fsprogs.sourceforge.net
|
|
|
|
if BR2_PACKAGE_E2FSPROGS
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_BADBLOCKS
|
|
bool "badblocks"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_CHATTR
|
|
bool "chattr"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_DEBUGFS
|
|
bool "debugfs"
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_DUMPE2FS
|
|
bool "dumpe2fs"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_E2FREEFRAG
|
|
bool "e2freefrag"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_E2FSCK
|
|
bool "e2fsck"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_E2IMAGE
|
|
bool "e2image"
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_E2LABEL
|
|
bool "e2label"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_E2UNDO
|
|
bool "e2undo"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_E4DEFRAG
|
|
bool "e4defrag"
|
|
depends on !BR2_nios2 # fallocate not implemented
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # sync_file_range not impl
|
|
|
|
comment "e4defrag needs a glibc or musl toolchain"
|
|
depends on !BR2_nios2
|
|
depends on BR2_TOOLCHAIN_USES_UCLIBC
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_FILEFRAG
|
|
bool "filefrag"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_FSCK
|
|
bool "fsck"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_FUSE2FS
|
|
bool "fuse2fs"
|
|
depends on !BR2_STATIC_LIBS # libfuse
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
|
|
select BR2_PACKAGE_LIBFUSE
|
|
|
|
comment "fuse2fs needs a toolchain w/ threads, dynamic library"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_LOGSAVE
|
|
bool "logsave"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_LSATTR
|
|
bool "lsattr"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_MKE2FS
|
|
bool "mke2fs"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND
|
|
bool "mklost+found"
|
|
default y
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_RESIZE2FS
|
|
bool "resize2fs"
|
|
|
|
config BR2_PACKAGE_E2FSPROGS_TUNE2FS
|
|
bool "tune2fs"
|
|
default y
|
|
select BR2_PACKAGE_E2FSPROGS_E2LABEL
|
|
|
|
endif
|