diff options
author | Kang Kai <kai.kang@windriver.com> | 2012-08-29 10:39:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-30 17:44:06 -0700 |
commit | 698f0dfd2fc8271ce5ffd654108a04df3381f89c (patch) | |
tree | e7cd5e1e35911c33983ad86f83377e87e41a2aab /meta | |
parent | fd2a6c1bafce549d13a4aba46d69f073e932698c (diff) | |
download | poky-698f0dfd2fc8271ce5ffd654108a04df3381f89c.tar.gz |
ltp: add dependency libaio
When libaio has been populated to sysroot, ltp will be compiled with
libaio. If rpm/deb package of libaio doesn't be created, bitbake
core-image-xxx will fail with:
| Processing task-core-apps-console...
| Processing ltp...
| error: Failed dependencies:
| libaio.so.1(LIBAIO_0.4) is needed by ltp-20120614-r0.i586
| libaio.so.1(LIBAIO_0.1) is needed by ltp-20120614-r0.i586
| libaio.so.1 is needed by ltp-20120614-r0.i586
| ERROR: Function failed: do_rootfs
Add libaio to ltp dependency to fix this issue.
Similiar to [Yocto #2973]
(From OE-Core rev: 4945eafb7dd0d9e59760fdfad98982937be27517)
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20120614.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20120614.bb b/meta/recipes-extended/ltp/ltp_20120614.bb index a01399f6f1..14c0fef529 100644 --- a/meta/recipes-extended/ltp/ltp_20120614.bb +++ b/meta/recipes-extended/ltp/ltp_20120614.bb | |||
@@ -19,9 +19,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | |||
19 | file://utils/benchmark/kernbench-0.42/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | 19 | file://utils/benchmark/kernbench-0.42/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ |
20 | " | 20 | " |
21 | 21 | ||
22 | DEPENDS = "attr" | 22 | DEPENDS = "attr libaio" |
23 | 23 | ||
24 | PR = "r0" | 24 | PR = "r1" |
25 | 25 | ||
26 | SRC_URI = "${SOURCEFORGE_MIRROR}/ltp/ltp-full-${PV}.bz2" | 26 | SRC_URI = "${SOURCEFORGE_MIRROR}/ltp/ltp-full-${PV}.bz2" |
27 | 27 | ||