summaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorOleksandr Kravchuk <open.source@oleksandr-kravchuk.com>2019-04-07 17:11:05 +0200
committerKhem Raj <raj.khem@gmail.com>2019-04-09 18:09:00 -0700
commit2285583bb83fdd4bc5f71e128c17571c1f3d13e1 (patch)
treeb390914ffeab9f302d61c25f42c4590100e49b7d /meta-networking
parent1077f7da32aae42e9f5c3ee21d8ca6c235f3ba4f (diff)
downloadmeta-openembedded-2285583bb83fdd4bc5f71e128c17571c1f3d13e1.tar.gz
drbd-utils: update to 9.8.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch43
-rw-r--r--meta-networking/recipes-support/drbd/drbd-utils_9.8.0.bb (renamed from meta-networking/recipes-support/drbd/drbd-utils_9.5.0.bb)7
2 files changed, 3 insertions, 47 deletions
diff --git a/meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch b/meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch
deleted file mode 100644
index c0f3adf24..000000000
--- a/meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch
+++ /dev/null
@@ -1,43 +0,0 @@
1Subject: drbd-tools: only rmmod if DRBD is a module
2
3Account for the case if the DRBD drive is built into
4the kernel. Otherwise, errors, like the following,
5will occur:
6
7root@localhost:~# /etc/init.d/drbd stop
8 Stopping all DRBD resources: ERROR: Module drbd
9 does not exist in /proc/modules
10
11Upstream-Status: Submitted [https://github.com/LINBIT/drbd-utils/pull/2]
12
13Signed-off-by: Aws Ismail <aws.ismail@windriver.com>
14Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
15
16[ refresh to 8.4.4: squash Aws' and Jason's patches ]
17Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com>
18
19Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
20Signed-off-by: Changqing Li <changqing.li@windriver.com>
21
22---
23 scripts/drbd | 4 +++-
24 1 file changed, 3 insertions(+), 1 deletion(-)
25
26diff --git a/scripts/drbd b/scripts/drbd
27index 20bf628..de589dc 100755
28--- a/scripts/drbd
29+++ b/scripts/drbd
30@@ -241,7 +241,9 @@ case "$1" in
31 if [ -d /sys/module/drbd/holders ]; then
32 (cd /sys/module/drbd/holders; for tr in *; do [ -d ${tr} ] && ${RMMOD} ${tr}; done)
33 fi
34- $RMMOD drbd && break
35+ if [ ! -z "$(cat /proc/modules | grep -w drbd)" ]; then
36+ $RMMOD drbd && break
37+ fi
38 fi
39 done
40 run_hook stop
41--
421.9.1
43
diff --git a/meta-networking/recipes-support/drbd/drbd-utils_9.5.0.bb b/meta-networking/recipes-support/drbd/drbd-utils_9.8.0.bb
index bd1e8576f..a781e2791 100644
--- a/meta-networking/recipes-support/drbd/drbd-utils_9.5.0.bb
+++ b/meta-networking/recipes-support/drbd/drbd-utils_9.8.0.bb
@@ -10,11 +10,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018"
10 10
11SRC_URI = "git://github.com/LINBIT/drbd-utils;name=drbd-utils \ 11SRC_URI = "git://github.com/LINBIT/drbd-utils;name=drbd-utils \
12 git://github.com/LINBIT/drbd-headers;name=drbd-headers;destsuffix=git/drbd-headers \ 12 git://github.com/LINBIT/drbd-headers;name=drbd-headers;destsuffix=git/drbd-headers \
13 file://0001-drbd-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch \
14 " 13 "
15# v9.5.0 14# v9.8.0
16SRCREV_drbd-utils = "ee126652638328b55dc6bff47d07d6161ab768db" 15SRCREV_drbd-utils = "c30216b49330216bf8a567b7727da6e24f099f08"
17SRCREV_drbd-headers = "b47cc11bcabe1a65c40ad23f71dcaf2da6419630" 16SRCREV_drbd-headers = "2357a11fb49bcbadf6b490e6d4cfe982a3d24813"
18 17
19S = "${WORKDIR}/git" 18S = "${WORKDIR}/git"
20 19