diff options
author | Armin Kuster <akuster808@gmail.com> | 2017-10-26 13:50:33 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-03-01 16:10:36 -0800 |
commit | 17b3e32be2ff2370ca8d3f666ad9e704654a933d (patch) | |
tree | 99710ff8f390b2cc68147e27902671c16e23136a /meta-oe/recipes-support/fbtest/fb-test_git.bb | |
parent | c96dd1c721a051c1a9b9e05190a5a0518b96ee29 (diff) | |
download | meta-openembedded-17b3e32be2ff2370ca8d3f666ad9e704654a933d.tar.gz |
fbtest: move to recipe-tests
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/fbtest/fb-test_git.bb')
-rw-r--r-- | meta-oe/recipes-support/fbtest/fb-test_git.bb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/meta-oe/recipes-support/fbtest/fb-test_git.bb b/meta-oe/recipes-support/fbtest/fb-test_git.bb deleted file mode 100644 index 6a9d4b278..000000000 --- a/meta-oe/recipes-support/fbtest/fb-test_git.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | SUMMARY = "Test suite for Linux framebuffer" | ||
2 | |||
3 | PV = "1.1.0" | ||
4 | |||
5 | LICENSE = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" | ||
7 | |||
8 | SRCREV = "063ec650960c2d79ac51f5c5f026cb05343a33e2" | ||
9 | SRC_URI = "git://github.com/prpplague/fb-test-app.git" | ||
10 | |||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | do_install() { | ||
14 | install -d ${D}${bindir} | ||
15 | install -m 0755 fb-test ${D}${bindir} | ||
16 | # avoid collisions with perf (perf) and mesa-demos (offset) | ||
17 | for prog in perf rect offset ; do | ||
18 | install -m 0755 $prog ${D}${bindir}/fb-$prog | ||
19 | done | ||
20 | } | ||