e2fsprogs: add options for debugfs/e2image/resize2fs utilities

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-07-28 15:04:09 +02:00
parent f94057d89d
commit 5d7cac5eb2
2 changed files with 12 additions and 3 deletions

View File

@ -26,6 +26,9 @@ config BR2_PACKAGE_E2FSPROGS_CHATTR
bool "chattr" bool "chattr"
default y default y
config BR2_PACKAGE_E2FSPROGS_DEBUGFS
bool "debugfs"
config BR2_PACKAGE_E2FSPROGS_DUMPE2FS config BR2_PACKAGE_E2FSPROGS_DUMPE2FS
bool "dumpe2fs" bool "dumpe2fs"
default y default y
@ -40,6 +43,9 @@ config BR2_PACKAGE_E2FSPROGS_E2FSCK
default y default y
select BR2_PACKAGE_E2FSPROGS_LIBBLKID select BR2_PACKAGE_E2FSPROGS_LIBBLKID
config BR2_PACKAGE_E2FSPROGS_E2IMAGE
bool "e2image"
config BR2_PACKAGE_E2FSPROGS_E2LABEL config BR2_PACKAGE_E2FSPROGS_E2LABEL
bool "e2label" bool "e2label"
default y default y
@ -81,6 +87,9 @@ config BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND
default y default y
depends on BR2_PACKAGE_E2FSPROGS depends on BR2_PACKAGE_E2FSPROGS
config BR2_PACKAGE_E2FSPROGS_RESIZE2FS
bool "resize2fs"
config BR2_PACKAGE_E2FSPROGS_TUNE2FS config BR2_PACKAGE_E2FSPROGS_TUNE2FS
bool "tune2fs" bool "tune2fs"
default y default y

View File

@ -11,9 +11,9 @@ E2FSPROGS_INSTALL_STAGING = YES
E2FSPROGS_CONF_OPT = \ E2FSPROGS_CONF_OPT = \
--disable-tls \ --disable-tls \
--enable-elf-shlibs \ --enable-elf-shlibs \
--disable-debugfs \ $(if $(BR2_PACKAGE_E2FSPROGS_DEBUGFS),,--disable-debugfs) \
--disable-imager \ $(if $(BR2_PACKAGE_E2FSPROGS_E2IMAGE),,--disable-imager) \
--disable-resizer \ $(if $(BR2_PACKAGE_E2FSPROGS_RESIZE2FS),,--disable-resizer) \
$(if $(BR2_PACKAGE_E2FSPROGS_UUIDD),,--disable-uuidd) \ $(if $(BR2_PACKAGE_E2FSPROGS_UUIDD),,--disable-uuidd) \
--enable-fsck \ --enable-fsck \
--disable-e2initrd-helper \ --disable-e2initrd-helper \