diff options
author | Gabriel Barbu <gabriel.barbu@enea.com> | 2013-07-11 15:28:08 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-13 18:23:37 +0100 |
commit | 0ef252e7de86d1fa8c5985234381f1bcd62961ff (patch) | |
tree | ff5473a1e67692e947aa1984ec66b6f90f50e618 /meta/recipes-extended/ethtool | |
parent | 334a22f660a90115f8ddda052cbfd18b0e3fa06e (diff) | |
download | poky-0ef252e7de86d1fa8c5985234381f1bcd62961ff.tar.gz |
ethtool: add ptest
Install ethtool test and run it as a ptest.
(From OE-Core rev: 6b70373923909a05bb4d99beb8105c732ee0b2de)
Signed-off-by: Gabriel Barbu <gabriel.barbu@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ethtool')
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool-3.10/run-ptest | 2 | ||||
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool_3.10.bb | 18 |
2 files changed, 18 insertions, 2 deletions
diff --git a/meta/recipes-extended/ethtool/ethtool-3.10/run-ptest b/meta/recipes-extended/ethtool/ethtool-3.10/run-ptest new file mode 100644 index 0000000000..1e245da112 --- /dev/null +++ b/meta/recipes-extended/ethtool/ethtool-3.10/run-ptest | |||
@@ -0,0 +1,2 @@ | |||
1 | #!/bin/sh | ||
2 | make -k runtest-TESTS | ||
diff --git a/meta/recipes-extended/ethtool/ethtool_3.10.bb b/meta/recipes-extended/ethtool/ethtool_3.10.bb index aa8b129787..83587d90be 100644 --- a/meta/recipes-extended/ethtool/ethtool_3.10.bb +++ b/meta/recipes-extended/ethtool/ethtool_3.10.bb | |||
@@ -6,9 +6,23 @@ LICENSE = "GPLv2+" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ |
7 | file://ethtool.c;beginline=4;endline=17;md5=c19b30548c582577fc6b443626fc1216" | 7 | file://ethtool.c;beginline=4;endline=17;md5=c19b30548c582577fc6b443626fc1216" |
8 | 8 | ||
9 | SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz" | 9 | SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz \ |
10 | file://run-ptest" | ||
10 | 11 | ||
11 | SRC_URI[md5sum] = "b41deb37143dfb86934a8f52cea853d2" | 12 | SRC_URI[md5sum] = "b41deb37143dfb86934a8f52cea853d2" |
12 | SRC_URI[sha256sum] = "62f0a9cea954c32a2bdc2d2ece295fda5b915cfea56f5de97b997d8ebaae0381" | 13 | SRC_URI[sha256sum] = "62f0a9cea954c32a2bdc2d2ece295fda5b915cfea56f5de97b997d8ebaae0381" |
13 | 14 | ||
14 | inherit autotools | 15 | inherit autotools ptest |
16 | RDEPENDS_${PN}-ptest += "make" | ||
17 | |||
18 | do_compile_ptest() { | ||
19 | oe_runmake buildtest-TESTS | ||
20 | } | ||
21 | |||
22 | do_install_ptest () { | ||
23 | cp ${B}/Makefile ${D}${PTEST_PATH} | ||
24 | install ${B}/test-cmdline ${D}${PTEST_PATH} | ||
25 | install ${B}/test-features ${D}${PTEST_PATH} | ||
26 | install ${B}/ethtool ${D}${PTEST_PATH}/ethtool | ||
27 | sed -i 's/^Makefile/_Makefile/' ${D}${PTEST_PATH}/Makefile | ||
28 | } | ||