Commit 5d7cac5e authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

e2fsprogs: add options for debugfs/e2image/resize2fs utilities

parent f94057d8
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -26,6 +26,9 @@ 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
@@ -40,6 +43,9 @@ config BR2_PACKAGE_E2FSPROGS_E2FSCK
	default y
	select BR2_PACKAGE_E2FSPROGS_LIBBLKID

config BR2_PACKAGE_E2FSPROGS_E2IMAGE
	bool "e2image"

config BR2_PACKAGE_E2FSPROGS_E2LABEL
	bool "e2label"
	default y
@@ -81,6 +87,9 @@ config BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND
	default y
	depends on BR2_PACKAGE_E2FSPROGS

config BR2_PACKAGE_E2FSPROGS_RESIZE2FS
	bool "resize2fs"

config BR2_PACKAGE_E2FSPROGS_TUNE2FS
	bool "tune2fs"
	default y
+3 −3
Original line number Diff line number Diff line
@@ -11,9 +11,9 @@ E2FSPROGS_INSTALL_STAGING = YES
E2FSPROGS_CONF_OPT = \
	--disable-tls \
	--enable-elf-shlibs \
	--disable-debugfs \
	--disable-imager \
	--disable-resizer \
	$(if $(BR2_PACKAGE_E2FSPROGS_DEBUGFS),,--disable-debugfs) \
	$(if $(BR2_PACKAGE_E2FSPROGS_E2IMAGE),,--disable-imager) \
	$(if $(BR2_PACKAGE_E2FSPROGS_RESIZE2FS),,--disable-resizer) \
	$(if $(BR2_PACKAGE_E2FSPROGS_UUIDD),,--disable-uuidd) \
	--enable-fsck \
	--disable-e2initrd-helper \