summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2016-07-01 22:21:25 +0000
committerDenys Dmytriyenko <denys@ti.com>2016-07-03 22:13:50 -0400
commit501709c38d02f4f9faf1d61c3d1523c3118c9a19 (patch)
tree643fa5fa772d1e16db158154068f98ac35d7fda2
parente03eaff8efbe0c3838f04e02842ad40bf778a760 (diff)
downloadmeta-ti-501709c38d02f4f9faf1d61c3d1523c3118c9a19.tar.gz
uio-module-drv-test: replace machine override with SOC override
This package is now used for multiple omap-a15 SOCs, having only single machine covered in overrides breaks other machines. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-bsp/uio-module-drv/uio-module-drv-test_git.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-bsp/uio-module-drv/uio-module-drv-test_git.bb b/recipes-bsp/uio-module-drv/uio-module-drv-test_git.bb
index 197b36f8..8303efe1 100644
--- a/recipes-bsp/uio-module-drv/uio-module-drv-test_git.bb
+++ b/recipes-bsp/uio-module-drv/uio-module-drv-test_git.bb
@@ -2,12 +2,12 @@ DESCRIPTION = "Test code for user space IO (UIO) driver"
2 2
3include uio-module-drv.inc 3include uio-module-drv.inc
4 4
5PR = "r1" 5PR = "r2"
6 6
7COMPATIBLE_MACHINE = "keystone|omap-a15" 7COMPATIBLE_MACHINE = "keystone|omap-a15"
8PACKAGE_ARCH = "${MACHINE_ARCH}" 8PACKAGE_ARCH = "${MACHINE_ARCH}"
9 9
10DEVICE_NAME_am57xx-evm = "am57xx" 10DEVICE_NAME_omap-a15 = "am57xx"
11DEVICE_NAME_keystone = "keystone" 11DEVICE_NAME_keystone = "keystone"
12RDEPENDS_${PN} = "uio-module-drv" 12RDEPENDS_${PN} = "uio-module-drv"
13 13
@@ -25,6 +25,6 @@ do_install_append_keystone () {
25 install -c -m 755 ${S}/test/uio_cic2_int_multithread_test ${D}${bindir}/. 25 install -c -m 755 ${S}/test/uio_cic2_int_multithread_test ${D}${bindir}/.
26} 26}
27 27
28do_install_append_am57xx-evm () { 28do_install_append_omap-a15 () {
29 install -c -m 755 ${S}/test/prussdrv_test/test/pruss_uio_test ${D}${bindir}/. 29 install -c -m 755 ${S}/test/prussdrv_test/test/pruss_uio_test ${D}${bindir}/.
30} 30}