diff options
author | Richard van Paasen <rvpaasen@t3i.nl> | 2010-02-21 20:06:50 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-02-23 21:06:47 +0100 |
commit | 598334166db515bd414286d572e86c4061bfa186 (patch) | |
tree | 4c8f21e241572d48c68356beda67ef5c69d31e5d | |
parent | 5239be04c918f9776db59c2ebb273ece140cb17c (diff) | |
download | buildroot-novena-598334166db515bd414286d572e86c4061bfa186.tar.gz buildroot-novena-598334166db515bd414286d572e86c4061bfa186.zip |
e2fsprogs: fix lsattr chattr and e2label e2undo mixup
In Config.in lsattr/chattr and e2label/e2undo are mixed up.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | CHANGES | 3 | ||||
-rw-r--r-- | package/e2fsprogs/Config.in | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -3,7 +3,8 @@ Fixes all over the tree and new features. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus, - at, gst-plugins-good, libpcap, rsync, rubix, tcl, xproto_trapproto + at, e2fsprogs, gst-plugins-good, libpcap, rsync, rubix, tcl, + xproto_trapproto Removed package: xboard diff --git a/package/e2fsprogs/Config.in b/package/e2fsprogs/Config.in index e83ad4f15..2bb92d977 100644 --- a/package/e2fsprogs/Config.in +++ b/package/e2fsprogs/Config.in @@ -54,7 +54,7 @@ config BR2_PACKAGE_E2FSPROGS_E2LABEL select BR2_PACKAGE_E2FSPROGS_LIBBLKID config BR2_PACKAGE_E2FSPROGS_E2UNDO - bool "e2label" + bool "e2undo" default y depends on BR2_PACKAGE_E2FSPROGS @@ -81,7 +81,7 @@ config BR2_PACKAGE_E2FSPROGS_LOGSAVE depends on BR2_PACKAGE_E2FSPROGS config BR2_PACKAGE_E2FSPROGS_LSATTR - bool "chattr" + bool "lsattr" default y depends on BR2_PACKAGE_E2FSPROGS |