diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-10-18 12:53:15 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-11-08 23:48:53 +0100 |
commit | 789a7cf4069b86f1bd44c55d69205aff1837f906 (patch) | |
tree | 1ed4b706b0fbb464e83e5379c28597f002000367 /package/util-linux/Config.in | |
parent | d7139cd936e0cb793dc552ddf484aacac1b8dd45 (diff) | |
download | buildroot-novena-789a7cf4069b86f1bd44c55d69205aff1837f906.tar.gz buildroot-novena-789a7cf4069b86f1bd44c55d69205aff1837f906.zip |
util-linux: fix partx build breakage
addpart, delpart and partx are enabled by default so --disable now to
avoid build breaking when we lack libblkid.
Also select libblkid when it's enabled now.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/util-linux/Config.in')
-rw-r--r-- | package/util-linux/Config.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index 816130daf..43a84440f 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -67,6 +67,10 @@ config BR2_PACKAGE_UTIL_LINUX_SCHEDUTILS config BR2_PACKAGE_UTIL_LINUX_WALL bool "build \"wall\"" +config BR2_PACKAGE_UTIL_LINUX_PARTX + bool "build \"addpart, delpart, partx\"" + select BR2_PACKAGE_UTIL_LINUX_LIBBLKID + ############################################ # default disabled and should be enabled by # --enable-foo @@ -86,9 +90,6 @@ config BR2_PACKAGE_UTIL_LINUX_LAST config BR2_PACKAGE_UTIL_LINUX_MESG bool "build \"mesg\"" -config BR2_PACKAGE_UTIL_LINUX_PARTX - bool "build \"addpart, delpart, partx\"" - config BR2_PACKAGE_UTIL_LINUX_RAW bool "build \"raw\"" |