Commit 00c1f03e authored by Marek Belisko's avatar Marek Belisko Committed by Peter Korsgaard
Browse files

udisks: new package



[Peter: fix dependencies, comment]
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarMarek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 171f5d41
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -280,6 +280,7 @@ source "package/sysstat/Config.in"
source "package/ti-utils/Config.in"
source "package/uboot-tools/Config.in"
source "package/udev/Config.in"
source "package/udisks/Config.in"
source "package/usb_modeswitch/Config.in"
source "package/usb_modeswitch_data/Config.in"
source "package/usbmount/Config.in"
+34 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_UDISKS
	bool "udisks"
	depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
	depends on BR2_TOOLCHAIN_HAS_THREADS
	select BR2_PACKAGE_UDEV
	select BR2_PACKAGE_UDEV_ALL_EXTRAS
	select BR2_PACKAGE_DBUS
	select BR2_PACKAGE_DBUS_GLIB
	select BR2_PACKAGE_SG3_UTILS
	select BR2_PACKAGE_POLKIT
	select BR2_PACKAGE_PARTED
	select BR2_PACKAGE_LVM2
	select BR2_PACKAGE_LIBATASMART
	help
	  The udisks project provides

	   o A storage daemon that implements well-defined D-Bus
	     interfaces that can be used to query and manipulate
	     storage devices.

	   o a command-line tool, udisks(1), that can be used to query
	     and use the daemon

	  http://www.freedesktop.org/wiki/Software/udisks

config BR2_PACKAGE_UDISKS_LVM2
	bool "lvm2 support"
	depends on BR2_PACKAGE_UDISKS
	select BR2_PACKAGE_LVM2_APP_LIBRARY
	help
	  Enable LVM2 support

comment "udisks requires /dev mgmnt set to udev under System configuration"
	depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
+29 −0
Original line number Diff line number Diff line
#############################################################
#
# udisks
#
#############################################################

UDISKS_VERSION = 1.0.4
UDISKS_SITE    = http://hal.freedesktop.org/releases/
UDISKS_LICENCE = GPLv2+
UDISKS_LICENCE_FILES = COPYING

UDISKS_DEPENDENCIES = 	\
	sg3_utils	\
	host-pkgconf	\
	udev		\
	dbus		\
	dbus-glib	\
	polkit		\
	parted		\
	lvm2		\
	libatasmart

UDISKS_CONF_OPT = --disable-remote-access

ifeq ($(BR2_PACKAGE_UDISKS_LVM2),y)
UDISKS_CONF_OPT += --enable-lvm2
endif

$(eval $(autotools-package))