51788521b7
This commit adds a dependency of the libglib2 package on thread support in the toolchain, since upstream libglib2 doesn't build without thread support. The commit is rather large as it involves propagating the dependency on thread support to all reverse dependencies of the libglib2 package. [Thomas: squash all patches into one, make a few minor fixes, the most important one being to not add comments about MMU requirement when a package doesn't work on !MMU platforms.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_UDISKS
|
|
bool "udisks"
|
|
depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus-glib -> glib2
|
|
depends on BR2_USE_MMU # lvm2
|
|
select BR2_PACKAGE_UDEV
|
|
select BR2_PACKAGE_UDEV_ALL_EXTRAS
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
depends on BR2_USE_WCHAR # dbus-glib -> glib2
|
|
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
|
|
|
|
if BR2_PACKAGE_UDISKS
|
|
|
|
config BR2_PACKAGE_UDISKS_LVM2
|
|
bool "lvm2 support"
|
|
select BR2_PACKAGE_LVM2_APP_LIBRARY
|
|
help
|
|
Enable LVM2 support
|
|
|
|
endif
|
|
|
|
comment "udisks requires /dev mgmnt set to udev under System configuration and a toolchain with WCHAR and threading support"
|
|
depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV || \
|
|
!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|