diff options
-rw-r--r-- | meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-8.4.4-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch | 39 | ||||
-rw-r--r-- | meta-networking/recipes-support/drbd/drbd-utils_8.9.6.bb | 1 |
2 files changed, 0 insertions, 40 deletions
diff --git a/meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-8.4.4-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch b/meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-8.4.4-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch deleted file mode 100644 index add0b030cf..0000000000 --- a/meta-networking/recipes-support/drbd/drbd-utils/0001-drbd-8.4.4-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | Subject: drbd-tools: only rmmod if DRBD is a module | ||
2 | |||
3 | Account for the case if the DRBD drive is built into | ||
4 | the kernel. Otherwise, errors, like the following, | ||
5 | will occur: | ||
6 | |||
7 | root@localhost:~# /etc/init.d/drbd stop | ||
8 | Stopping all DRBD resources: ERROR: Module drbd does not exist in | ||
9 | /proc/modules | ||
10 | |||
11 | Signed-off-by: Aws Ismail <aws.ismail@windriver.com> | ||
12 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | ||
13 | |||
14 | [ refresh to 8.4.4: squash Aws' and Jason's patches ] | ||
15 | Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com> | ||
16 | |||
17 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
18 | --- | ||
19 | scripts/drbd | 4 +++- | ||
20 | 1 file changed, 3 insertions(+), 1 deletion(-) | ||
21 | |||
22 | diff --git a/scripts/drbd b/scripts/drbd | ||
23 | index 20bf628..de589dc 100755 | ||
24 | --- a/scripts/drbd | ||
25 | +++ b/scripts/drbd | ||
26 | @@ -241,7 +241,9 @@ case "$1" in | ||
27 | if [ -d /sys/module/drbd/holders ]; then | ||
28 | (cd /sys/module/drbd/holders; for tr in *; do [ -d ${tr} ] && ${RMMOD} ${tr}; done) | ||
29 | fi | ||
30 | - $RMMOD drbd && break | ||
31 | + if [ ! -z "$(cat /proc/modules | grep -w drbd)" ]; then | ||
32 | + $RMMOD drbd && break | ||
33 | + fi | ||
34 | fi | ||
35 | done | ||
36 | run_hook stop | ||
37 | -- | ||
38 | 1.9.1 | ||
39 | |||
diff --git a/meta-networking/recipes-support/drbd/drbd-utils_8.9.6.bb b/meta-networking/recipes-support/drbd/drbd-utils_8.9.6.bb index 5979fbb587..5f6c43f7ea 100644 --- a/meta-networking/recipes-support/drbd/drbd-utils_8.9.6.bb +++ b/meta-networking/recipes-support/drbd/drbd-utils_8.9.6.bb | |||
@@ -10,7 +10,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018" | |||
10 | 10 | ||
11 | SRC_URI = "http://oss.linbit.com/drbd/${BP}.tar.gz \ | 11 | SRC_URI = "http://oss.linbit.com/drbd/${BP}.tar.gz \ |
12 | file://0001-Makefile.in-fix-permission-bits-for-drbd.service.patch \ | 12 | file://0001-Makefile.in-fix-permission-bits-for-drbd.service.patch \ |
13 | file://0001-drbd-8.4.4-drbd-tools-only-rmmod-if-DRBD-is-a-module.patch \ | ||
14 | " | 13 | " |
15 | SRC_URI[md5sum] = "76ed6d3190cd77b00890f3365353124b" | 14 | SRC_URI[md5sum] = "76ed6d3190cd77b00890f3365353124b" |
16 | SRC_URI[sha256sum] = "297b77c9b3f88de2e7dae459234f2753ea4fc2805282b2d276e35cf51e292913" | 15 | SRC_URI[sha256sum] = "297b77c9b3f88de2e7dae459234f2753ea4fc2805282b2d276e35cf51e292913" |