mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
038a6e7847
It is required by lvm2, since lvm2 could find modprobe correctly
------
|lvm lvchange -a y --config devices { preferred_names=["^/dev/mapper/",
"^/dev/md/", "^/dev/sd"] } wrl/pool00
|/usr/sbin/thin_check: execvp failed: No such file or directory
| Check of pool wrl/pool00 failed (status:2). Manual repair required!
------
The thin-provisioning-tools provides /usr/sbin/thin_check.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
34 lines
996 B
Diff
34 lines
996 B
Diff
From e8be402e20cbdfbd8192a171ac9904d9362103bf Mon Sep 17 00:00:00 2001
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Date: Wed, 31 Aug 2016 01:35:40 -0400
|
|
Subject: [PATCH] do not strip pdata_tools at do_install
|
|
|
|
It caused QA Issue:
|
|
--------------
|
|
|ERROR: QA Issue: File '/usr/sbin/pdata_tools' from thin-provisioning-tools
|
|
was already stripped, this will prevent future debugging! [already-stripped]
|
|
--------------
|
|
|
|
Upstream-Status: Inappropriate [oe specific]
|
|
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
Makefile.in | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index 4264191..ac22042 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -189,7 +189,6 @@ distclean: clean
|
|
install: bin/pdata_tools
|
|
$(INSTALL_DIR) $(BINDIR)
|
|
$(INSTALL_PROGRAM) bin/pdata_tools $(BINDIR)
|
|
- $(STRIP) $(BINDIR)/pdata_tools
|
|
ln -s -f pdata_tools $(BINDIR)/cache_check
|
|
ln -s -f pdata_tools $(BINDIR)/cache_dump
|
|
ln -s -f pdata_tools $(BINDIR)/cache_metadata_size
|
|
--
|
|
2.8.1
|
|
|