123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- config BR2_PACKAGE_E2FSPROGS
- bool "e2fsprogs"
- depends on BR2_LARGEFILE
- help
- The EXT2 file system utilities and libraries
- menuconfig BR2_PACKAGE_E2FSPROGS_UTILS
- bool "e2fsprogs utilities"
- depends on BR2_PACKAGE_E2FSPROGS
- help
- e2fsprogs utilities selection
- if BR2_PACKAGE_E2FSPROGS_UTILS
- config BR2_PACKAGE_E2FSPROGS_BADBLOCKS
- bool "badblocks"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_BLKID
- bool "blkid"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBBLKID
- config BR2_PACKAGE_E2FSPROGS_CHATTR
- bool "chattr"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_DUMPE2FS
- bool "dumpe2fs"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBUUID
- config BR2_PACKAGE_E2FSPROGS_E2FREEFRAG
- bool "e2freefrag"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_E2FSCK
- bool "e2fsck"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBBLKID
- config BR2_PACKAGE_E2FSPROGS_E2LABEL
- bool "e2label"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBBLKID
- config BR2_PACKAGE_E2FSPROGS_E2UNDO
- bool "e2undo"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_FILEFRAG
- bool "filefrag"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_FINDFS
- bool "findfs"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_E2LABEL
- config BR2_PACKAGE_E2FSPROGS_FSCK
- bool "fsck"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBBLKID
- config BR2_PACKAGE_E2FSPROGS_LOGSAVE
- bool "logsave"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_LSATTR
- bool "lsattr"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_MKE2FS
- bool "mke2fs"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBBLKID
- config BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND
- bool "mklost+found"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_TUNE2FS
- bool "tune2fs"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_E2LABEL
- config BR2_PACKAGE_E2FSPROGS_UUIDGEN
- bool "uuidgen"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBUUID
- config BR2_PACKAGE_E2FSPROGS_UUIDD
- bool "uuidd"
- default y
- depends on BR2_PACKAGE_E2FSPROGS
- select BR2_PACKAGE_E2FSPROGS_LIBUUID
- help
- The uuidd daemon from the e2fsprogs suite
- endif
- menu "e2fsprogs libraries"
- depends on BR2_PACKAGE_E2FSPROGS
- config BR2_PACKAGE_E2FSPROGS_LIBUUID
- bool "libuuid"
- help
- The uuid library from the e2fsprogs suite
- config BR2_PACKAGE_E2FSPROGS_LIBBLKID
- bool "libblkid"
- select BR2_PACKAGE_E2FSPROGS_LIBUUID
- help
- The blkid library from the e2fsprogs suite
- endmenu
- comment "e2fsprogs requires a toolchain with LARGEFILE support"
- depends on !BR2_LARGEFILE
|