summaryrefslogtreecommitdiffstats
path: root/package/usbmount/Config.in
diff options
context:
space:
mode:
authorSven Neumann <s.neumann@raumfeld.com>2013-06-19 17:56:28 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-06-19 22:31:34 +0200
commite26267ef2e4f4d2548d081fb85428fa45f9c6276 (patch)
tree8f4d393a9d6e8a87282b7f2cb384efc9b78e30ea /package/usbmount/Config.in
parent53e498da2f2ebfc87c3de0fe18bc9132e94b4fcb (diff)
downloadbuildroot-novena-e26267ef2e4f4d2548d081fb85428fa45f9c6276.tar.gz
buildroot-novena-e26267ef2e4f4d2548d081fb85428fa45f9c6276.zip
usbmount: stop using blkid, use udev environment variables instead
The blkid binary is not any longer installed when libblkid from util-linux is selected. udev has a builtin blkid command though and already detects all values that we are interested in. Change the usbmount script to use the environment variables set by udev instead of calling blkid directly. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/usbmount/Config.in')
-rw-r--r--package/usbmount/Config.in8
1 files changed, 2 insertions, 6 deletions
diff --git a/package/usbmount/Config.in b/package/usbmount/Config.in
index 30c7b5a5c..2583e7cc7 100644
--- a/package/usbmount/Config.in
+++ b/package/usbmount/Config.in
@@ -1,16 +1,12 @@
config BR2_PACKAGE_USBMOUNT
bool "usbmount"
- depends on BR2_LARGEFILE # util-linux
- depends on BR2_USE_WCHAR # util-linux
depends on BR2_PACKAGE_UDEV
select BR2_PACKAGE_LOCKFILE_PROGS
- select BR2_PACKAGE_UTIL_LINUX
- select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
help
The usbmount package automatically mounts USB mass storage devices
when they are plugged in, and unmounts them when they are removed.
http://usbmount.alioth.debian.org/
-comment "usbmount requires a toolchain with LARGEFILE + WCHAR support"
- depends on !(BR2_LARGEFILE && BR2_USE_WCHAR) && BR2_PACKAGE_UDEV
+comment "usbmount requires udev to be enabled"
+ depends on !BR2_PACKAGE_UDEV