mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
lvm2: 2.03.16 -> 2.03.22
Update lvm2 from 2.03.16 to 2.03.22. * remove 0002-Guard-use-of-mallinfo-with-__GLIBC__.patch which has done in upstream already * add patch to check egrep & grep * rebase patches * add package config 'dbus' and fix errors about it Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
configure.ac: check egrep
|
||||
|
||||
The macro AC_HEADER_STDC which requires AC_PROG_EGREP has been removed
|
||||
from configure.ac, then it fails to substitute '@EGREP@':
|
||||
|
||||
| [GEN] command-lines-input.h
|
||||
| /bin/bash: line 2: @EGREP@: command not found
|
||||
| [GEN] command-count.h
|
||||
|
||||
Call AC_PROG_EGREP to fix the error.
|
||||
|
||||
Upstream-Status: Submitted [https://gitlab.com/lvmteam/lvm2/-/merge_requests/4]
|
||||
|
||||
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||
---
|
||||
configure.ac | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 2e52498f9..d9462e22c 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -78,6 +78,7 @@ AC_PROG_LN_S
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_MKDIR_P
|
||||
AC_PROG_RANLIB
|
||||
+AC_PROG_EGREP
|
||||
AC_CHECK_TOOL([READELF], [readelf])
|
||||
AC_CHECK_TOOL(AR, ar)
|
||||
AC_PATH_TOOL(CFLOW_CMD, cflow)
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
From 3ae9c0b607ec33fb07f32a41e9d28cc9068dd39a Mon Sep 17 00:00:00 2001
|
||||
From: Dengke Du <dengke.du@windriver.com>
|
||||
Date: Tue, 25 Oct 2016 11:52:44 +0000
|
||||
Subject: [PATCH] Guard use of mallinfo() with __GLIBC__
|
||||
|
||||
This API is glibc-only
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Dengke Du <dengke.du@windriver.com>
|
||||
|
||||
---
|
||||
Upstream-Status: Pending
|
||||
|
||||
lib/mm/memlock.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
Index: LVM2.2.02.177/lib/mm/memlock.c
|
||||
===================================================================
|
||||
--- LVM2.2.02.177.orig/lib/mm/memlock.c
|
||||
+++ LVM2.2.02.177/lib/mm/memlock.c
|
||||
@@ -151,7 +151,7 @@ static void _touch_memory(void *mem, siz
|
||||
|
||||
static void _allocate_memory(void)
|
||||
{
|
||||
-#ifndef VALGRIND_POOL
|
||||
+#if !defined(VALGRIND_POOL) && defined(__GLIBC__)
|
||||
void *stack_mem;
|
||||
struct rlimit limit;
|
||||
int i, area = 0, missing = _size_malloc_tmp, max_areas = 32, hblks;
|
||||
@@ -21,18 +21,18 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e427708..aa374ea 100644
|
||||
index b43d8b9be..efe3062c1 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1791,8 +1791,6 @@ if test "$BUILD_DMFILEMAPD" = yes; then
|
||||
fi
|
||||
@@ -1646,8 +1646,6 @@ AS_IF([test "$BUILD_DMFILEMAPD" = "yes"], [
|
||||
])
|
||||
|
||||
################################################################################
|
||||
-AC_PATH_TOOL(MODPROBE_CMD, modprobe, [], [$PATH_SBIN])
|
||||
-
|
||||
if test -n "$MODPROBE_CMD"; then
|
||||
AS_IF([test -n "$MODPROBE_CMD"], [
|
||||
AC_DEFINE_UNQUOTED([MODPROBE_CMD], ["$MODPROBE_CMD"], [The path to 'modprobe', if available.])
|
||||
fi
|
||||
])
|
||||
--
|
||||
2.7.4
|
||||
|
||||
|
||||
@@ -10,15 +10,15 @@ DEPENDS += "libaio"
|
||||
SRC_URI = "git://sourceware.org/git/lvm2.git;branch=main \
|
||||
file://lvm.conf \
|
||||
file://0001-implement-libc-specific-reopen_stream.patch \
|
||||
file://0002-Guard-use-of-mallinfo-with-__GLIBC__.patch \
|
||||
file://0004-tweak-MODPROBE_CMD-for-cross-compile.patch \
|
||||
file://0001-Avoid-bashisms-in-init-scripts.patch \
|
||||
file://0005-do-not-build-manual.patch \
|
||||
file://0006-start-lvm2-monitor.service-after-tmp.mount.patch \
|
||||
file://reproducible-build.patch \
|
||||
file://0001-configure.ac-check-egrep.patch \
|
||||
"
|
||||
|
||||
SRCREV = "6d1e894a867681af7a811ed63bc435f3aa55fec8"
|
||||
SRCREV = "016e469caf856f1eb8dde39df0d1aa2e74225aed"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\_\d+)+)"
|
||||
|
||||
+6
-6
@@ -15,10 +15,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
2 files changed, 7 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 4811d4a3d..137b31a82 100644
|
||||
index 991a0cf85..e59c82472 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1611,6 +1611,8 @@ fi
|
||||
@@ -1660,6 +1660,8 @@ AS_IF([test -n "$MODPROBE_CMD"], [
|
||||
|
||||
SYSCONFDIR="$(eval echo $(eval echo $sysconfdir))"
|
||||
|
||||
@@ -27,10 +27,10 @@ index 4811d4a3d..137b31a82 100644
|
||||
SBINDIR="$(eval echo $(eval echo $sbindir))"
|
||||
LVM_PATH="$SBINDIR/lvm"
|
||||
AC_DEFINE_UNQUOTED(LVM_PATH, ["$LVM_PATH"], [Path to lvm binary.])
|
||||
@@ -1829,6 +1831,7 @@ AC_SUBST(SACKPT_CFLAGS)
|
||||
AC_SUBST(SACKPT_LIBS)
|
||||
AC_SUBST(SALCK_CFLAGS)
|
||||
AC_SUBST(SALCK_LIBS)
|
||||
@@ -1886,6 +1888,7 @@ AC_SUBST(PYTHON2DIR)
|
||||
AC_SUBST(PYTHON3)
|
||||
AC_SUBST(PYTHON3DIR)
|
||||
AC_SUBST(RT_LIBS)
|
||||
+AC_SUBST(BINDIR)
|
||||
AC_SUBST(SBINDIR)
|
||||
AC_SUBST(SELINUX_LIBS)
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
lvmdbusd: create dirs for lock file
|
||||
|
||||
Create leading dirs for lvmdbusd lock file, otherwise it fails to start:
|
||||
|
||||
| systemd[1]: Starting LVM2 D-Bus service...
|
||||
| lvmdbusd[1602]: [1602]: Error during creation of lock file(/var/lock/lvm/lvmdbusd): errno(2), exiting!
|
||||
|
||||
Upstream-Status: Submitted [https://gitlab.com/lvmteam/lvm2/-/merge_requests/7]
|
||||
|
||||
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||
---
|
||||
daemons/lvmdbusd/utils.py | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/daemons/lvmdbusd/utils.py b/daemons/lvmdbusd/utils.py
|
||||
index d479175f6..830648659 100644
|
||||
--- a/daemons/lvmdbusd/utils.py
|
||||
+++ b/daemons/lvmdbusd/utils.py
|
||||
@@ -778,6 +778,7 @@ class LockFile(object):
|
||||
|
||||
def __enter__(self):
|
||||
try:
|
||||
+ os.makedirs(os.path.dirname(self.lock_file))
|
||||
self.fd = os.open(self.lock_file, os.O_CREAT | os.O_RDWR, stat.S_IRUSR | stat.S_IWUSR)
|
||||
|
||||
# Get and set the close on exec and lock the file
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
Not check python modules pyudev and dbus during configure that they are runtime
|
||||
dependencies. Deal with them in the package config setting in the recipe.
|
||||
|
||||
Remove $(DESTDIR) from install destination that it is not suitable for oe. And
|
||||
no generate python cache files too.
|
||||
|
||||
Upstream-Status: Pending [oe specific]
|
||||
|
||||
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||
---
|
||||
configure.ac | 4 ++--
|
||||
daemons/lvmdbusd/Makefile.in | 6 ++----
|
||||
2 files changed, 4 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index ee088b3f5..b94ef4e56 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1262,8 +1262,8 @@ AS_IF([test "$BUILD_LVMDBUSD" = "yes"], [
|
||||
AS_IF([test "$PYTHON3_BINDINGS" = "yes"], [PYTHON_BINDINGS="yes"])
|
||||
|
||||
# To get this macro, install autoconf-archive package then run autoreconf
|
||||
- AX_PYTHON_MODULE([pyudev], [Required], python3)
|
||||
- AX_PYTHON_MODULE([dbus], [Required], python3)
|
||||
+ # AX_PYTHON_MODULE([pyudev], [Required], python3)
|
||||
+ # AX_PYTHON_MODULE([dbus], [Required], python3)
|
||||
])
|
||||
|
||||
################################################################################
|
||||
diff --git a/daemons/lvmdbusd/Makefile.in b/daemons/lvmdbusd/Makefile.in
|
||||
index 9c2629279..a79daabf7 100644
|
||||
--- a/daemons/lvmdbusd/Makefile.in
|
||||
+++ b/daemons/lvmdbusd/Makefile.in
|
||||
@@ -16,7 +16,7 @@ top_srcdir = @top_srcdir@
|
||||
top_builddir = @top_builddir@
|
||||
|
||||
lvmdbuspydir = $(python3dir)/lvmdbusd
|
||||
-lvmdbusdir = $(DESTDIR)$(lvmdbuspydir)
|
||||
+lvmdbusdir = $(lvmdbuspydir)
|
||||
|
||||
LVMDBUS_SRCDIR_FILES = \
|
||||
automatedproperties.py \
|
||||
@@ -55,11 +55,9 @@ install_lvmdbusd: $(LVMDBUSD)
|
||||
@echo " [INSTALL] $<"
|
||||
$(Q) $(INSTALL_DIR) $(sbindir)
|
||||
$(Q) $(INSTALL_SCRIPT) $(LVMDBUSD) $(sbindir)
|
||||
- $(Q) $(INSTALL_DIR) $(lvmdbusdir) $(lvmdbusdir)/__pycache__
|
||||
+ $(Q) $(INSTALL_DIR) $(lvmdbusdir)
|
||||
$(Q) (cd $(srcdir); $(INSTALL_DATA) $(LVMDBUS_SRCDIR_FILES) $(lvmdbusdir))
|
||||
$(Q) $(INSTALL_DATA) $(LVMDBUS_BUILDDIR_FILES) $(lvmdbusdir)
|
||||
- $(Q) PYTHON=$(PYTHON3) $(PYCOMPILE) --destdir "$(DESTDIR)" --basedir "$(lvmdbuspydir)" $(LVMDBUS_SRCDIR_FILES) $(LVMDBUS_BUILDDIR_FILES)
|
||||
- $(Q) $(CHMOD) 444 $(lvmdbusdir)/__pycache__/*.py[co]
|
||||
|
||||
install_lvm2: install_lvmdbusd
|
||||
|
||||
+17
-2
@@ -2,11 +2,13 @@ require lvm2.inc
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-fix-command-bin-findmnt-bin-lsblk-bin-sort-not-found.patch \
|
||||
file://tweak-for-lvmdbusd.patch \
|
||||
file://0001-lvmdbusd-create-dirs-for-lock-file.patch \
|
||||
"
|
||||
|
||||
DEPENDS += "autoconf-archive-native"
|
||||
|
||||
inherit multilib_script
|
||||
inherit multilib_script python3native
|
||||
|
||||
MULTILIB_SCRIPTS = "${PN}:${sysconfdir}/lvm/lvm.conf"
|
||||
|
||||
@@ -28,13 +30,22 @@ do_install:append() {
|
||||
rm -rf ${D}${sysconfdir}/rc.d
|
||||
fi
|
||||
fi
|
||||
|
||||
# following files only exist when package config `dbus` enabled
|
||||
sed -i -e '1s,#!.*python.*,#!${USRBINPATH}/env python3,' \
|
||||
${D}${sbindir}/lvmdbusd \
|
||||
${D}${PYTHON_SITEPACKAGES_DIR}/lvmdbusd/lvmdb.py \
|
||||
${D}${PYTHON_SITEPACKAGES_DIR}/lvmdbusd/lvm_shell_proxy.py \
|
||||
|| true
|
||||
}
|
||||
|
||||
PACKAGE_BEFORE_PN = "${PN}-scripts ${PN}-udevrules"
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}"
|
||||
SYSTEMD_SERVICE:${PN} = "${@bb.utils.contains('PACKAGECONFIG', 'dmeventd', 'lvm2-monitor.service dm-event.socket dm-event.service', '', d)} \
|
||||
blk-availability.service"
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'dbus', 'lvm2-lvmdbusd.service', '', d)} \
|
||||
blk-availability.service \
|
||||
"
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
|
||||
TARGET_CC_ARCH += "${LDFLAGS}"
|
||||
@@ -45,6 +56,8 @@ DEPENDS += "util-linux"
|
||||
LVM2_PACKAGECONFIG:append:class-target = " \
|
||||
udev \
|
||||
"
|
||||
|
||||
PACKAGECONFIG[dbus] = "--enable-dbus-service,--disable-dbus-service,,python3-dbus python3-pyudev"
|
||||
PACKAGECONFIG[udev] = "--enable-udev_sync --enable-udev_rules --with-udevdir=${nonarch_base_libdir}/udev/rules.d,--disable-udev_sync --disable-udev_rules,udev,${PN}-udevrules"
|
||||
|
||||
PACKAGES =+ "libdevmapper"
|
||||
@@ -57,6 +70,8 @@ FILES:libdevmapper = " \
|
||||
FILES:${PN} += " \
|
||||
${libdir}/device-mapper/*.so \
|
||||
${systemd_system_unitdir}/lvm2-pvscan@.service \
|
||||
${PYTHON_SITEPACKAGES_DIR}/lvmdbusd \
|
||||
${datadir}/dbus-1/system-services/com.redhat.lvmdbus1.service \
|
||||
"
|
||||
|
||||
FILES:${PN}-scripts = " \
|
||||
Reference in New Issue
Block a user