All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] matrix-gui-submenus: Clean up very long lines
@ 2015-09-22 14:45 Jacob Stiffler
  2015-09-22 14:45 ` [PATCH 2/3] matrix-gui-submenus: Add opencl submenu Jacob Stiffler
  2015-09-22 14:45 ` [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files Jacob Stiffler
  0 siblings, 2 replies; 5+ messages in thread
From: Jacob Stiffler @ 2015-09-22 14:45 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-core/matrix/matrix-gui-submenus_2.0.bb | 36 ++++++++++++++++++++--
 1 file changed, 34 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
index 240ff74..e23d31c 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
@@ -15,7 +15,22 @@ inherit allarch
 S = "${WORKDIR}/git"
 
 # List of submenus to build packages for
-SUBMENUS = "arm_submenu 3d_submenu cryptos_submenu display_submenu ethernet_submenu multimedia_submenu power_submenu pru_submenu qt4_submenu settings_submenu usb_submenu wifi_submenu oprofile_submenu utilities_submenu mc_demo_submenu"
+SUBMENUS = " arm_submenu \
+             3d_submenu \
+             cryptos_submenu \
+             display_submenu \
+             ethernet_submenu \
+             multimedia_submenu \
+             power_submenu \
+             pru_submenu \
+             qt4_submenu \
+             settings_submenu \
+             usb_submenu \
+             wifi_submenu \
+             oprofile_submenu \
+             utilities_submenu \
+             mc_demo_submenu \
+"
 
 do_install(){
     install -d ${D}${MATRIX_APP_DIR}
@@ -26,7 +41,24 @@ do_install(){
     done
 }
 
-PACKAGES += "${PN}-arm ${PN}-3d ${PN}-cryptos ${PN}-display ${PN}-ethernet ${PN}-multimedia ${PN}-power ${PN}-pru ${PN}-qt4 ${PN}-qt5 ${PN}-settings ${PN}-usb ${PN}-wifi ${PN}-oprofile ${PN}-camera  ${PN}-utility ${PN}-mc-demo"
+PACKAGES += " ${PN}-arm \
+              ${PN}-3d \
+              ${PN}-cryptos \
+              ${PN}-display \
+              ${PN}-ethernet \
+              ${PN}-multimedia \
+              ${PN}-power \
+              ${PN}-pru \
+              ${PN}-qt4 \
+              ${PN}-qt5 \
+              ${PN}-settings \
+              ${PN}-usb \
+              ${PN}-wifi \
+              ${PN}-oprofile \
+              ${PN}-camera \
+              ${PN}-utility \
+              ${PN}-mc-demo \
+"
 
 # Make sure app images has been installed
 RDEPENDS_${PN} += "matrix-gui-apps-images"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] matrix-gui-submenus: Add opencl submenu.
  2015-09-22 14:45 [PATCH 1/3] matrix-gui-submenus: Clean up very long lines Jacob Stiffler
@ 2015-09-22 14:45 ` Jacob Stiffler
  2015-09-22 14:45 ` [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files Jacob Stiffler
  1 sibling, 0 replies; 5+ messages in thread
From: Jacob Stiffler @ 2015-09-22 14:45 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
index e23d31c..132b81a 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
@@ -7,7 +7,7 @@ require matrix-gui-apps-git.inc
 # reset the LIC_FILES_CHKSUM setting from the matrix-gui-apps-git.inc file
 LIC_FILES_CHKSUM = "file://LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9"
 
-PR = "${INC_PR}.13"
+PR = "${INC_PR}.14"
 
 # These packages make submenus in matrix and are not architecture specific
 inherit allarch
@@ -30,6 +30,7 @@ SUBMENUS = " arm_submenu \
              oprofile_submenu \
              utilities_submenu \
              mc_demo_submenu \
+             opencl_submenu \
 "
 
 do_install(){
@@ -58,6 +59,7 @@ PACKAGES += " ${PN}-arm \
               ${PN}-camera \
               ${PN}-utility \
               ${PN}-mc-demo \
+              ${PN}-opencl \
 "
 
 # Make sure app images has been installed
@@ -81,3 +83,4 @@ FILES_${PN}-oprofile = "${MATRIX_APP_DIR}/oprofile_submenu/*"
 FILES_${PN}-camera = "${MATRIX_APP_DIR}/camera_submenu/*"
 FILES_${PN}-utility = "${MATRIX_APP_DIR}/utilities_submenu/*"
 FILES_${PN}-mc-demo = "${MATRIX_APP_DIR}/mc_demo_submenu/*"
+FILES_${PN}-opencl = "${MATRIX_APP_DIR}/opencl_submenu/*"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files.
  2015-09-22 14:45 [PATCH 1/3] matrix-gui-submenus: Clean up very long lines Jacob Stiffler
  2015-09-22 14:45 ` [PATCH 2/3] matrix-gui-submenus: Add opencl submenu Jacob Stiffler
@ 2015-09-22 14:45 ` Jacob Stiffler
  2015-09-22 15:21   ` Denys Dmytriyenko
  1 sibling, 1 reply; 5+ messages in thread
From: Jacob Stiffler @ 2015-09-22 14:45 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../matrix/matrix-gui-opencl-demos_2.0.bb          | 35 ++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
new file mode 100644
index 0000000..b645d89
--- /dev/null
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
@@ -0,0 +1,35 @@
+DESCRIPTION = "OpenCL demo descriptions for Matrix v2"
+HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
+
+require matrix-gui-apps-git.inc
+
+PR = "${INC_PR}.2"
+
+inherit allarch
+
+S = "${WORKDIR}/git/opencl_apps"
+
+# Make sure opencl submenu and app images has been installed
+OPENCL_RDEPENDS += "matrix-gui-apps-images matrix-gui-submenus-opencl"
+
+FILES_${PN} += "${MATRIX_BASE_DIR}/*"
+
+PACKAGES = "matrix-opencl-demo-dsplibfft  \
+            matrix-opencl-demo-vecadd     \
+            matrix-opencl-demo-floatcompute \
+"
+
+RDEPENDS_matrix-opencl-demo-dsplibfft     = "${OPENCL_RDEPENDS}"
+RDEPENDS_matrix-opencl-demo-vecadd        = "${OPENCL_RDEPENDS}"
+RDEPENDS_matrix-opencl-demo-floatcompute  = "${OPENCL_RDEPENDS}"
+
+# Split the matrix files by opencl demos
+FILES_matrix-opencl-demo-dsplibfft     = "${MATRIX_APP_DIR}/opencl_dsplib_fft/*"
+FILES_matrix-opencl-demo-vecadd        = "${MATRIX_APP_DIR}/opencl_vecadd/*"
+FILES_matrix-opencl-demo-floatcompute  = "${MATRIX_APP_DIR}/opencl_float_compute/*"
+
+
+# Split the ${bindir} files by opencl demos
+FILES_matrix-opencl-demo-dsplibfft     += "${bindir}/runOclDsplibFFT.sh"
+FILES_matrix-opencl-demo-vecadd        += "${bindir}/runOclVecadd.sh"
+FILES_matrix-opencl-demo-floatcompute  += "${bindir}/runOclFloatCompute.sh"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files.
  2015-09-22 14:45 ` [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files Jacob Stiffler
@ 2015-09-22 15:21   ` Denys Dmytriyenko
  2015-09-22 15:25     ` Jacob Stiffler
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2015-09-22 15:21 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-arago

Are #2 and #3 in right order?


On Tue, Sep 22, 2015 at 10:45:28AM -0400, Jacob Stiffler wrote:
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
>  .../matrix/matrix-gui-opencl-demos_2.0.bb          | 35 ++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>  create mode 100644 meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
> 
> diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
> new file mode 100644
> index 0000000..b645d89
> --- /dev/null
> +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
> @@ -0,0 +1,35 @@
> +DESCRIPTION = "OpenCL demo descriptions for Matrix v2"
> +HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
> +
> +require matrix-gui-apps-git.inc
> +
> +PR = "${INC_PR}.2"
> +
> +inherit allarch
> +
> +S = "${WORKDIR}/git/opencl_apps"
> +
> +# Make sure opencl submenu and app images has been installed
> +OPENCL_RDEPENDS += "matrix-gui-apps-images matrix-gui-submenus-opencl"
> +
> +FILES_${PN} += "${MATRIX_BASE_DIR}/*"
> +
> +PACKAGES = "matrix-opencl-demo-dsplibfft  \
> +            matrix-opencl-demo-vecadd     \
> +            matrix-opencl-demo-floatcompute \
> +"
> +
> +RDEPENDS_matrix-opencl-demo-dsplibfft     = "${OPENCL_RDEPENDS}"
> +RDEPENDS_matrix-opencl-demo-vecadd        = "${OPENCL_RDEPENDS}"
> +RDEPENDS_matrix-opencl-demo-floatcompute  = "${OPENCL_RDEPENDS}"
> +
> +# Split the matrix files by opencl demos
> +FILES_matrix-opencl-demo-dsplibfft     = "${MATRIX_APP_DIR}/opencl_dsplib_fft/*"
> +FILES_matrix-opencl-demo-vecadd        = "${MATRIX_APP_DIR}/opencl_vecadd/*"
> +FILES_matrix-opencl-demo-floatcompute  = "${MATRIX_APP_DIR}/opencl_float_compute/*"
> +
> +
> +# Split the ${bindir} files by opencl demos
> +FILES_matrix-opencl-demo-dsplibfft     += "${bindir}/runOclDsplibFFT.sh"
> +FILES_matrix-opencl-demo-vecadd        += "${bindir}/runOclVecadd.sh"
> +FILES_matrix-opencl-demo-floatcompute  += "${bindir}/runOclFloatCompute.sh"
> -- 
> 1.9.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files.
  2015-09-22 15:21   ` Denys Dmytriyenko
@ 2015-09-22 15:25     ` Jacob Stiffler
  0 siblings, 0 replies; 5+ messages in thread
From: Jacob Stiffler @ 2015-09-22 15:25 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago



On 9/22/2015 11:21 AM, Denys Dmytriyenko wrote:
> Are #2 and #3 in right order?

Yes. This recipe provides packages which rdepend on the submenu package.

>
> On Tue, Sep 22, 2015 at 10:45:28AM -0400, Jacob Stiffler wrote:
>> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
>> ---
>>   .../matrix/matrix-gui-opencl-demos_2.0.bb          | 35 ++++++++++++++++++++++
>>   1 file changed, 35 insertions(+)
>>   create mode 100644 meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
>>
>> diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
>> new file mode 100644
>> index 0000000..b645d89
>> --- /dev/null
>> +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-opencl-demos_2.0.bb
>> @@ -0,0 +1,35 @@
>> +DESCRIPTION = "OpenCL demo descriptions for Matrix v2"
>> +HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
>> +
>> +require matrix-gui-apps-git.inc
>> +
>> +PR = "${INC_PR}.2"
>> +
>> +inherit allarch
>> +
>> +S = "${WORKDIR}/git/opencl_apps"
>> +
>> +# Make sure opencl submenu and app images has been installed
>> +OPENCL_RDEPENDS += "matrix-gui-apps-images matrix-gui-submenus-opencl"
Here is the RDEPENDS... ^^^^^
>> +
>> +FILES_${PN} += "${MATRIX_BASE_DIR}/*"
>> +
>> +PACKAGES = "matrix-opencl-demo-dsplibfft  \
>> +            matrix-opencl-demo-vecadd     \
>> +            matrix-opencl-demo-floatcompute \
>> +"
>> +
>> +RDEPENDS_matrix-opencl-demo-dsplibfft     = "${OPENCL_RDEPENDS}"
>> +RDEPENDS_matrix-opencl-demo-vecadd        = "${OPENCL_RDEPENDS}"
>> +RDEPENDS_matrix-opencl-demo-floatcompute  = "${OPENCL_RDEPENDS}"
>> +
>> +# Split the matrix files by opencl demos
>> +FILES_matrix-opencl-demo-dsplibfft     = "${MATRIX_APP_DIR}/opencl_dsplib_fft/*"
>> +FILES_matrix-opencl-demo-vecadd        = "${MATRIX_APP_DIR}/opencl_vecadd/*"
>> +FILES_matrix-opencl-demo-floatcompute  = "${MATRIX_APP_DIR}/opencl_float_compute/*"
>> +
>> +
>> +# Split the ${bindir} files by opencl demos
>> +FILES_matrix-opencl-demo-dsplibfft     += "${bindir}/runOclDsplibFFT.sh"
>> +FILES_matrix-opencl-demo-vecadd        += "${bindir}/runOclVecadd.sh"
>> +FILES_matrix-opencl-demo-floatcompute  += "${bindir}/runOclFloatCompute.sh"
>> -- 
>> 1.9.1
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-09-22 15:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-22 14:45 [PATCH 1/3] matrix-gui-submenus: Clean up very long lines Jacob Stiffler
2015-09-22 14:45 ` [PATCH 2/3] matrix-gui-submenus: Add opencl submenu Jacob Stiffler
2015-09-22 14:45 ` [PATCH 3/3] matrix-gui-opencl-demos: Add for opencl matrix files Jacob Stiffler
2015-09-22 15:21   ` Denys Dmytriyenko
2015-09-22 15:25     ` Jacob Stiffler

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.