diff options
author | rvpaasen <rvpaasen@t3i.nl> | 2009-10-29 21:35:33 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-29 21:35:33 +0100 |
commit | 69ec17cd8d9140d50d5a28ee4e7ada527e9a3a06 (patch) | |
tree | 6231ee5c150dea47360bf3329e4984f2c10970c9 /package/e2fsprogs/Config.in | |
parent | 1ea44bb11a73955b559cc5d4cd61e89bfebd21fa (diff) |
e2fsprogs: convert to Makefile.autotools.in format and update Kconfig
Closes #667.
I have updated the e2fsprogs package to the new makefile format. I added
the tools from the 1.41.9 release of e2fsprogs that could not yet be
(de)selected (freefrag, e2undo) to the menu in Config.in.
Signed-off-by: rvpaasen <rvpaasen@t3i.nl>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/e2fsprogs/Config.in')
-rw-r--r-- | package/e2fsprogs/Config.in | 58 |
1 files changed, 53 insertions, 5 deletions
diff --git a/package/e2fsprogs/Config.in b/package/e2fsprogs/Config.in index 74da6bd74..e83ad4f15 100644 --- a/package/e2fsprogs/Config.in +++ b/package/e2fsprogs/Config.in @@ -1,15 +1,18 @@ -config BR2_PACKAGE_LIBUUID - bool "libuuid" - help - The uuid library from the e2fsprogs suite config BR2_PACKAGE_E2FSPROGS bool "e2fsprogs" depends on BR2_LARGEFILE - select BR2_PACKAGE_LIBUUID 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 @@ -19,6 +22,7 @@ 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" @@ -29,16 +33,30 @@ 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 "e2label" + default y + depends on BR2_PACKAGE_E2FSPROGS config BR2_PACKAGE_E2FSPROGS_FILEFRAG bool "filefrag" @@ -55,6 +73,7 @@ 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" @@ -70,6 +89,7 @@ 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" @@ -86,6 +106,34 @@ 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 + |