diff options
author | Graeme Gregory <gg@slimlogic.co.uk> | 2014-12-19 10:09:28 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-31 16:35:34 +0100 |
commit | afbeff6463b6c5df0bf4f27c152af618a8ce321d (patch) | |
tree | ed48c3f8a814f172fb838cb757bc12c5e8832dc0 /meta-oe/recipes-test | |
parent | af74f962282c0bf8edd0cebeb2e69865f66b06ea (diff) | |
download | meta-openembedded-afbeff6463b6c5df0bf4f27c152af618a8ce321d.tar.gz |
fwts: add the Firmware Test Suite
The Firmware Test Suite is a set of tests for checking ACPI and EFI
implementations for common bugs and issues.
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Graeme Gregory <graeme.gregory@linaro.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-test')
-rw-r--r-- | meta-oe/recipes-test/fwts/fwts_git.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-test/fwts/fwts_git.bb b/meta-oe/recipes-test/fwts/fwts_git.bb new file mode 100644 index 000000000..b943d6d48 --- /dev/null +++ b/meta-oe/recipes-test/fwts/fwts_git.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "Firmware testsuite" | ||
2 | DESCRIPTION = "The tool fwts comprises of over fifty tests that are designed to exercise and test different aspects of a machine's firmware. Many of these tests need super user access to read BIOS data and ACPI tables, so the tool requires running with super user privileges (e.g. with sudo)." | ||
3 | HOMEPAGE = "https://wiki.ubuntu.com/Kernel/Reference/fwts" | ||
4 | |||
5 | LICENSE = "GPLv2+" | ||
6 | LIC_FILES_CHKSUM = "file://src/main.c;beginline=1;endline=16;md5=deb8af5388e838d133eaa036f4d1496f" | ||
7 | |||
8 | PV = "14.12.00" | ||
9 | |||
10 | SRCREV = "efc18d16294f492b7f72bba64344b2eed50e6a69" | ||
11 | SRC_URI = "git://kernel.ubuntu.com/hwe/fwts.git" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | DEPENDS = "libpcre json-c glib-2.0" | ||
16 | |||
17 | inherit autotools-brokensep | ||
18 | |||
19 | CFLAGS += "-I${STAGING_INCDIR}/json-c" | ||
20 | |||
21 | FILES_${PN} += "${libdir}/fwts/lib*${SOLIBS}" | ||
22 | FILES_${PN}-dev += "${libdir}/fwts/lib*${SOLIBSDEV} ${libdir}/fwts/lib*.la" | ||
23 | FILES_${PN}-staticdev += "${libdir}/fwts/lib*a" | ||
24 | FILES_${PN}-dbg += "${libdir}/fwts/.debug" | ||