* [PATCH 1/2] uio-test-pruss: add support for k2g
@ 2017-09-25 18:24 Hongmei Gou
2017-09-25 18:24 ` [PATCH 2/2] uio-module-drv-test: include pruss_uio_test " Hongmei Gou
2017-09-26 17:23 ` [PATCH 1/2] uio-test-pruss: add support " Denys Dmytriyenko
0 siblings, 2 replies; 4+ messages in thread
From: Hongmei Gou @ 2017-09-25 18:24 UTC (permalink / raw)
To: meta-ti; +Cc: Hongmei Gou
Signed-off-by: Hongmei Gou <a0271529@ti.com>
---
Note: the patch of "uio-test_pruss: Update to new version 1.0.2.0"
needs to be applied first before applying this patch.
recipes-ti/uio-test-pruss/uio-test-pruss_git.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
index 0fae726..cbae1b1 100644
--- a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
+++ b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
@@ -21,7 +21,7 @@ SRCREV = "${UIO_TEST_PRUSS_SRCREV}"
PR = "r0"
-COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x"
+COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x|k2g"
PACKAGE_ARCH = "${MACHINE_ARCH}"
@@ -29,6 +29,7 @@ DEVICE_NAME = ""
DEVICE_NAME_append_am57xx-evm = "am57xx"
DEVICE_NAME_append_ti33x = "am33xx"
DEVICE_NAME_append_ti43x = "am43xx"
+DEVICE_NAME_append_k2g = "k2g"
EXTRA_OEMAKE = "CGT_PRU=${TI_CGT_PRU_INSTALL_DIR} DEVICE=${DEVICE_NAME}"
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] uio-module-drv-test: include pruss_uio_test for k2g
2017-09-25 18:24 [PATCH 1/2] uio-test-pruss: add support for k2g Hongmei Gou
@ 2017-09-25 18:24 ` Hongmei Gou
2017-09-26 17:23 ` [PATCH 1/2] uio-test-pruss: add support " Denys Dmytriyenko
1 sibling, 0 replies; 4+ messages in thread
From: Hongmei Gou @ 2017-09-25 18:24 UTC (permalink / raw)
To: meta-ti; +Cc: Hongmei Gou
Signed-off-by: Hongmei Gou <a0271529@ti.com>
---
recipes-bsp/uio-module-drv/uio-module-drv-test_git.bb | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
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 ccd8f2c..3a4fb1b 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,7 +2,7 @@ DESCRIPTION = "Test code for user space IO (UIO) driver"
include uio-module-drv.inc
-PR = "r0"
+PR = "r1"
COMPATIBLE_MACHINE = "keystone|omap-a15|ti33x|ti43x"
PACKAGE_ARCH = "${MACHINE_ARCH}"
@@ -11,6 +11,7 @@ DEVICE_NAME_omap-a15 = "am57xx"
DEVICE_NAME_ti33x = "am33xx"
DEVICE_NAME_ti43x = "am43xx"
DEVICE_NAME_keystone = "keystone"
+DEVICE_NAME_k2g = "k2g"
RDEPENDS_${PN} = "uio-module-drv"
do_compile() {
@@ -27,6 +28,10 @@ do_install_append_keystone () {
install -c -m 755 ${S}/test/uio_cic2_int_multithread_test ${D}${bindir}/.
}
+do_install_append_k2g () {
+ install -c -m 755 ${S}/test/prussdrv_test/test/pruss_uio_test ${D}${bindir}/.
+}
+
do_install_append_omap-a15 () {
install -c -m 755 ${S}/test/prussdrv_test/test/pruss_uio_test ${D}${bindir}/.
}
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] uio-test-pruss: add support for k2g
2017-09-25 18:24 [PATCH 1/2] uio-test-pruss: add support for k2g Hongmei Gou
2017-09-25 18:24 ` [PATCH 2/2] uio-module-drv-test: include pruss_uio_test " Hongmei Gou
@ 2017-09-26 17:23 ` Denys Dmytriyenko
2017-09-26 17:38 ` Gou, Hongmei
1 sibling, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2017-09-26 17:23 UTC (permalink / raw)
To: Hongmei Gou; +Cc: meta-ti
On Mon, Sep 25, 2017 at 02:24:15PM -0400, Hongmei Gou wrote:
> Signed-off-by: Hongmei Gou <a0271529@ti.com>
> ---
> Note: the patch of "uio-test_pruss: Update to new version 1.0.2.0"
> needs to be applied first before applying this patch.
uio-test_pruss was already in morty-next for few days, along with some other
patches, blocked by waiting for the final release tag on morty...
> recipes-ti/uio-test-pruss/uio-test-pruss_git.bb | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
> index 0fae726..cbae1b1 100644
> --- a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
> +++ b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
> @@ -21,7 +21,7 @@ SRCREV = "${UIO_TEST_PRUSS_SRCREV}"
>
> PR = "r0"
>
> -COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x"
> +COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x|k2g"
>
> PACKAGE_ARCH = "${MACHINE_ARCH}"
>
> @@ -29,6 +29,7 @@ DEVICE_NAME = ""
> DEVICE_NAME_append_am57xx-evm = "am57xx"
> DEVICE_NAME_append_ti33x = "am33xx"
> DEVICE_NAME_append_ti43x = "am43xx"
> +DEVICE_NAME_append_k2g = "k2g"
>
> EXTRA_OEMAKE = "CGT_PRU=${TI_CGT_PRU_INSTALL_DIR} DEVICE=${DEVICE_NAME}"
>
> --
> 1.9.1
>
> --
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] uio-test-pruss: add support for k2g
2017-09-26 17:23 ` [PATCH 1/2] uio-test-pruss: add support " Denys Dmytriyenko
@ 2017-09-26 17:38 ` Gou, Hongmei
0 siblings, 0 replies; 4+ messages in thread
From: Gou, Hongmei @ 2017-09-26 17:38 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-ti@yoctoproject.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Tuesday, September 26, 2017 1:24 PM
> To: Gou, Hongmei
> Cc: meta-ti@yoctoproject.org
> Subject: Re: [meta-ti] [PATCH 1/2] uio-test-pruss: add support for k2g
>
> On Mon, Sep 25, 2017 at 02:24:15PM -0400, Hongmei Gou wrote:
> > Signed-off-by: Hongmei Gou <a0271529@ti.com>
> > ---
> > Note: the patch of "uio-test_pruss: Update to new version 1.0.2.0"
> > needs to be applied first before applying this patch.
>
> uio-test_pruss was already in morty-next for few days, along with some
> other patches, blocked by waiting for the final release tag on morty...
>
Yes, this patch is on top of the version in morty-next to add the k2g support.
>
> > recipes-ti/uio-test-pruss/uio-test-pruss_git.bb | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb b/recipes-ti/uio-
> test-pruss/uio-test-pruss_git.bb
> > index 0fae726..cbae1b1 100644
> > --- a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
> > +++ b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
> > @@ -21,7 +21,7 @@ SRCREV = "${UIO_TEST_PRUSS_SRCREV}"
> >
> > PR = "r0"
> >
> > -COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x"
> > +COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x|k2g"
> >
> > PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> > @@ -29,6 +29,7 @@ DEVICE_NAME = ""
> > DEVICE_NAME_append_am57xx-evm = "am57xx"
> > DEVICE_NAME_append_ti33x = "am33xx"
> > DEVICE_NAME_append_ti43x = "am43xx"
> > +DEVICE_NAME_append_k2g = "k2g"
> >
> > EXTRA_OEMAKE = "CGT_PRU=${TI_CGT_PRU_INSTALL_DIR}
> DEVICE=${DEVICE_NAME}"
> >
> > --
> > 1.9.1
> >
> > --
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-09-26 17:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-25 18:24 [PATCH 1/2] uio-test-pruss: add support for k2g Hongmei Gou
2017-09-25 18:24 ` [PATCH 2/2] uio-module-drv-test: include pruss_uio_test " Hongmei Gou
2017-09-26 17:23 ` [PATCH 1/2] uio-test-pruss: add support " Denys Dmytriyenko
2017-09-26 17:38 ` Gou, Hongmei
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.