diff options
author | 2014-02-04 11:06:03 +0100 | |
---|---|---|
committer | 2014-03-02 16:28:55 +0100 | |
commit | 35d3713bdc20a3ac22537ca04b0c1c6deab625cc (patch) | |
tree | 4f711b3b40d33208916ef9e2c7cc0ba331a2033e /package/lvm2 | |
parent | d2544c019bd865736f5d9d5d1a49ec98bf8239e4 (diff) | |
download | buildroot-35d3713bdc20a3ac22537ca04b0c1c6deab625cc.tar.gz buildroot-35d3713bdc20a3ac22537ca04b0c1c6deab625cc.tar.bz2 |
lvm2: enable cmdlib and dmeventd
In order to use a newer dmraid, the lvm2 package needs
to be compiled with --enable-cmdlib --enable-dmeventd, which
dmraid can then invoke on boot.
[Thomas: slightly reformat the list of configure options.]
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Antony Vennard <arv@vx9.co.uk>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lvm2')
-rw-r--r-- | package/lvm2/lvm2.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/lvm2/lvm2.mk b/package/lvm2/lvm2.mk index 6566b32fc0..ee281a15ed 100644 --- a/package/lvm2/lvm2.mk +++ b/package/lvm2/lvm2.mk @@ -13,7 +13,11 @@ LVM2_LICENSE_FILES = COPYING COPYING.LIB # Make sure that binaries and libraries are installed with write # permissions for the owner. -LVM2_CONF_OPT += --enable-write_install --enable-pkgconfig +LVM2_CONF_OPT += \ + --enable-write_install \ + --enable-pkgconfig \ + --enable-cmdlib \ + --enable-dmeventd # LVM2 uses autoconf, but not automake, and the build system does not # take into account the CC passed at configure time. |