###############################################################################
comment "Legacy options removed in 2013.11"
+config BR2_PACKAGE_LVM2_DMSETUP_ONLY
+ bool "lvm2's 'dmsetup only' option removed"
+ select BR2_LEGACY
+ help
+ The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
+ led to problems with other packages that need the full lvm2
+ suite. Therefore, the option has been replaced with the positive
+ BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
+
+# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
+# in order to automatically propagate old configs
+
config BR2_PACKAGE_QT_JAVASCRIPTCORE
bool "qt javascriptcore option removed"
select BR2_LEGACY
user-space. This makes it useful for not only LVM, but EVMS,
software raid, and other drivers that create "virtual" block devices.
-config BR2_PACKAGE_LVM2_DMSETUP_ONLY
- bool "install dmsetup only"
- depends on BR2_PACKAGE_LVM2
+if BR2_PACKAGE_LVM2
+
+config BR2_PACKAGE_LVM2_STANDARD_INSTALL
+ bool "standard install instead of only dmsetup"
+ default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
help
- Install dmsetup only and skip the LVM2 suite.
+ Install the standard suite of lvm2 programs. When this option is not
+ set, only dmsetup is installed.
config BR2_PACKAGE_LVM2_APP_LIBRARY
bool "install application library"
- depends on BR2_PACKAGE_LVM2
- depends on !BR2_PACKAGE_LVM2_DMSETUP_ONLY
+ select BR2_PACKAGE_LVM2_STANDARD_INSTALL
help
Install application library (liblvm2app).
+endif
+
comment "lvm2 needs a toolchain w/ largefile"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE
LVM2_CONF_OPT += --disable-readline
endif
-ifeq ($(BR2_PACKAGE_LVM2_DMSETUP_ONLY),y)
+ifeq ($(BR2_PACKAGE_LVM2_STANDARD_INSTALL),)
LVM2_MAKE_OPT = device-mapper
LVM2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install_device-mapper
LVM2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install_device-mapper