diff options
Diffstat (limited to 'meta/recipes-extended/ethtool')
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch | 18 | ||||
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool/run-ptest | 2 | ||||
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool_3.13.bb | 30 |
3 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch b/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch new file mode 100644 index 0000000000..ba3c8aac0c --- /dev/null +++ b/meta/recipes-extended/ethtool/ethtool/avoid_parallel_tests.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | ptest needs buildtest-TESTS and runtest-TESTS targets. | ||
2 | serial-tests is required to generate those targets. | ||
3 | |||
4 | Signed-off-by: Alexandra Safta <alexandra.safta@enea.com> | ||
5 | Upstream-Status: Pending | ||
6 | |||
7 | diff -ruN a/configure.ac b/configure.ac | ||
8 | --- a/configure.ac 2014-05-26 17:52:40.184221302 +0200 | ||
9 | +++ b/configure.ac 2014-05-26 17:53:04.099222334 +0200 | ||
10 | @@ -2,7 +2,7 @@ | ||
11 | AC_INIT(ethtool, 3.13, netdev@vger.kernel.org) | ||
12 | AC_PREREQ(2.52) | ||
13 | AC_CONFIG_SRCDIR([ethtool.c]) | ||
14 | -AM_INIT_AUTOMAKE([gnu]) | ||
15 | +AM_INIT_AUTOMAKE([gnu serial-tests]) | ||
16 | AC_CONFIG_HEADERS([ethtool-config.h]) | ||
17 | |||
18 | AM_MAINTAINER_MODE | ||
diff --git a/meta/recipes-extended/ethtool/ethtool/run-ptest b/meta/recipes-extended/ethtool/ethtool/run-ptest new file mode 100644 index 0000000000..1e245da112 --- /dev/null +++ b/meta/recipes-extended/ethtool/ethtool/run-ptest | |||
@@ -0,0 +1,2 @@ | |||
1 | #!/bin/sh | ||
2 | make -k runtest-TESTS | ||
diff --git a/meta/recipes-extended/ethtool/ethtool_3.13.bb b/meta/recipes-extended/ethtool/ethtool_3.13.bb new file mode 100644 index 0000000000..6abaae90b9 --- /dev/null +++ b/meta/recipes-extended/ethtool/ethtool_3.13.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "Display or change ethernet card settings" | ||
2 | DESCRIPTION = "A small utility for examining and tuning the settings of your ethernet-based network interfaces." | ||
3 | HOMEPAGE = "http://www.kernel.org/pub/software/network/ethtool/" | ||
4 | SECTION = "console/network" | ||
5 | LICENSE = "GPLv2+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
7 | file://ethtool.c;beginline=4;endline=17;md5=c19b30548c582577fc6b443626fc1216" | ||
8 | |||
9 | SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz \ | ||
10 | file://run-ptest \ | ||
11 | file://avoid_parallel_tests.patch \ | ||
12 | " | ||
13 | |||
14 | SRC_URI[md5sum] = "0c0c0558a403b478cd3f65dadc00470d" | ||
15 | SRC_URI[sha256sum] = "68f6b6c9417e8ff3d3b5a8bc22fc4fe8846176ee7d7636e365ce6a2e7b1e44e9" | ||
16 | |||
17 | inherit autotools ptest | ||
18 | RDEPENDS_${PN}-ptest += "make" | ||
19 | |||
20 | do_compile_ptest() { | ||
21 | oe_runmake test-cmdline test-features | ||
22 | } | ||
23 | |||
24 | do_install_ptest () { | ||
25 | cp ${B}/Makefile ${D}${PTEST_PATH} | ||
26 | install ${B}/test-cmdline ${D}${PTEST_PATH} | ||
27 | install ${B}/test-features ${D}${PTEST_PATH} | ||
28 | install ${B}/ethtool ${D}${PTEST_PATH}/ethtool | ||
29 | sed -i 's/^Makefile/_Makefile/' ${D}${PTEST_PATH}/Makefile | ||
30 | } | ||