diff options
author | 2016-07-01 22:21:25 +0000 | |
---|---|---|
committer | 2016-07-03 22:14:11 -0400 | |
commit | 256be65a210a0ee7eee8ef31a9dc904e675e7a40 (patch) | |
tree | 900011715026b40dec88e8c1a95f9eb4cfaf73d8 | |
parent | 4a9d60fe40daaf75e4c52417224db88577b7c72b (diff) | |
download | meta-ti-256be65a210a0ee7eee8ef31a9dc904e675e7a40.tar.gz meta-ti-256be65a210a0ee7eee8ef31a9dc904e675e7a40.tar.bz2 meta-ti-256be65a210a0ee7eee8ef31a9dc904e675e7a40.zip |
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.bb | 6 |
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" include uio-module-drv.inc -PR = "r1" +PR = "r2" COMPATIBLE_MACHINE = "keystone|omap-a15" PACKAGE_ARCH = "${MACHINE_ARCH}" -DEVICE_NAME_am57xx-evm = "am57xx" +DEVICE_NAME_omap-a15 = "am57xx" DEVICE_NAME_keystone = "keystone" RDEPENDS_${PN} = "uio-module-drv" @@ -25,6 +25,6 @@ do_install_append_keystone () { install -c -m 755 ${S}/test/uio_cic2_int_multithread_test ${D}${bindir}/. } -do_install_append_am57xx-evm () { +do_install_append_omap-a15 () { install -c -m 755 ${S}/test/prussdrv_test/test/pruss_uio_test ${D}${bindir}/. } |