drbd-utils: add submodule drbd-headers into SRC_URI

1. add submodule drbd-headers into SRC_URI

   drbd-headers is git submodule of drbd-utils, so drbd-headers's
code will not fetch during do_fetch. but it will get during
do_compile(there is a logic in drbd-utils's makefile to do this),
but if during do_compile, network is broken,  fetch drbd-headers
will fail, then do_compile will fail since missing header file.

2. add patch for fix drbd init script

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
changqing.li@windriver.com 2018-07-05 11:28:58 +08:00 committed by Khem Raj
parent 215ac24805
commit 7041cdd3b4
2 changed files with 48 additions and 2 deletions

View File

@ -0,0 +1,43 @@
Subject: drbd-tools: only rmmod if DRBD is a module
Account for the case if the DRBD drive is built into
the kernel. Otherwise, errors, like the following,
will occur:
root@localhost:~# /etc/init.d/drbd stop
Stopping all DRBD resources: ERROR: Module drbd
does not exist in /proc/modules
Upstream-Status: Submitted [https://github.com/LINBIT/drbd-utils/pull/2]
Signed-off-by: Aws Ismail <aws.ismail@windriver.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
[ refresh to 8.4.4: squash Aws' and Jason's patches ]
Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com>
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
scripts/drbd | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/scripts/drbd b/scripts/drbd
index 20bf628..de589dc 100755
--- a/scripts/drbd
+++ b/scripts/drbd
@@ -241,7 +241,9 @@ case "$1" in
if [ -d /sys/module/drbd/holders ]; then
(cd /sys/module/drbd/holders; for tr in *; do [ -d ${tr} ] && ${RMMOD} ${tr}; done)
fi
- $RMMOD drbd && break
+ if [ ! -z "$(cat /proc/modules | grep -w drbd)" ]; then
+ $RMMOD drbd && break
+ fi
fi
done
run_hook stop
--
1.9.1

View File

@ -8,10 +8,13 @@ SECTION = "admin"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018"
SRC_URI = "git://github.com/LINBIT/drbd-utils \
SRC_URI = "git://github.com/LINBIT/drbd-utils;name=drbd-utils \
git://github.com/LINBIT/drbd-headers;name=drbd-headers;destsuffix=git/drbd-headers \
file://0001-drbd-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch \
"
# v9.4.0
SRCREV = "eff6423ee72931aa0f8d0eb51742acee7c7cd3e1"
SRCREV_drbd-utils = "eff6423ee72931aa0f8d0eb51742acee7c7cd3e1"
SRCREV_drbd-headers = "d9ef0576d0f29992e0539ed7ca14d4f12658cd25"
S = "${WORKDIR}/git"