summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/imx-test/imx-test.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-bsp/imx-test/imx-test.inc')
-rw-r--r--recipes-bsp/imx-test/imx-test.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes-bsp/imx-test/imx-test.inc b/recipes-bsp/imx-test/imx-test.inc
index c03e865..78e14d8 100644
--- a/recipes-bsp/imx-test/imx-test.inc
+++ b/recipes-bsp/imx-test/imx-test.inc
@@ -18,8 +18,7 @@ PLATFORM_mx6sl = "IMX6S"
18PLATFORM_mx53 = "IMX53" 18PLATFORM_mx53 = "IMX53"
19PLATFORM_mx51 = "IMX51" 19PLATFORM_mx51 = "IMX51"
20 20
21SRC_URI = "${FSL_MIRROR}/imx-test-${PV}.tar.gz \ 21SRC_URI = "${FSL_MIRROR}/imx-test-${PV}.tar.gz"
22 file://clocks.sh"
23 22
24inherit module-base 23inherit module-base
25 24
@@ -48,8 +47,10 @@ do_compile() {
48do_install() { 47do_install() {
49 install -d ${D}/unit_tests 48 install -d ${D}/unit_tests
50 install -m 755 test-utils.sh ${D}/unit_tests/test-utils.sh 49 install -m 755 test-utils.sh ${D}/unit_tests/test-utils.sh
51 install -m 0755 ${WORKDIR}/clocks.sh ${D}/unit_tests/clocks.sh
52 install -m 755 ${S}/platform/${PLATFORM}/* ${D}/unit_tests/ 50 install -m 755 ${S}/platform/${PLATFORM}/* ${D}/unit_tests/
51 if [ -e ${WORKDIR}/clocks.sh ]; then
52 install -m 755 ${WORKDIR}/clocks.sh ${D}/unit_tests/clocks.sh
53 fi
53} 54}
54 55
55FILES_${PN} += "/unit_tests" 56FILES_${PN} += "/unit_tests"