All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] input-utils: Add the input-utils package recipe
@ 2013-11-11 17:07 Chase Maupin
  2013-11-11 17:07 ` [PATCH 2/4] arago-test: Add input-utils to test packages Chase Maupin
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Chase Maupin @ 2013-11-11 17:07 UTC (permalink / raw)
  To: meta-arago

* Build the input utils for ARM to enable these for system test

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 ...utoconf-fix-for-cross-compilation-for-ARM.patch |   67 ++++++++++++++++++++
 .../input-utils/input-utils_git.bb                 |   30 +++++++++
 2 files changed, 97 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-extras/recipes-devtools/input-utils/input-utils/0001-autoconf-fix-for-cross-compilation-for-ARM.patch
 create mode 100644 meta-arago-extras/recipes-devtools/input-utils/input-utils_git.bb

diff --git a/meta-arago-extras/recipes-devtools/input-utils/input-utils/0001-autoconf-fix-for-cross-compilation-for-ARM.patch b/meta-arago-extras/recipes-devtools/input-utils/input-utils/0001-autoconf-fix-for-cross-compilation-for-ARM.patch
new file mode 100644
index 0000000..7230869
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/input-utils/input-utils/0001-autoconf-fix-for-cross-compilation-for-ARM.patch
@@ -0,0 +1,67 @@
+From fb1bbf8342c4a87380964465443bbb4b61dc0259 Mon Sep 17 00:00:00 2001
+From: Chase Maupin <Chase.Maupin@ti.com>
+Date: Tue, 5 Nov 2013 05:22:10 -0600
+Subject: [PATCH] autoconf: fix for cross compilation for ARM
+
+* Based on changes from Yebio Mesfin fixup the input-utils to
+  cross compile for ARM.
+
+Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
+---
+ mk/Autoconf.mk  |    8 ++++++--
+ mk/Variables.mk |    4 ++--
+ 2 files changed, 8 insertions(+), 4 deletions(-)
+
+diff --git a/mk/Autoconf.mk b/mk/Autoconf.mk
+index 7608ea5..95999cc 100644
+--- a/mk/Autoconf.mk
++++ b/mk/Autoconf.mk
+@@ -47,11 +47,13 @@ ac_uname = $(shell \
+ 	$(call ac_s_cmd,uname -s | tr 'A-Z' 'a-z');\
+ 	$(call ac_fini))
+ 
+-ac_uname_arch = $(shell \
++#ac_uname_arch = $(shell \
+ 	$(call ac_init,for arch);\
+ 	$(call ac_s_cmd,uname -m | tr 'A-Z' 'a-z');\
+ 	$(call ac_fini))
+ 
++ac_uname_arch = arm
++
+ # check for some header file
+ # args: header file
+ ac_header = $(shell \
+@@ -108,12 +110,14 @@ ac_binary = $(shell \
+ #	$(call ac_s_cmd,$(CC) -print-search-dirs | grep -q lib64 &&\
+ #		echo "lib64" || echo "lib");\
+ #	$(call ac_fini))
+-ac_lib64 = $(shell \
++#ac_lib64 = $(shell \
+ 	$(call ac_init,for libdir name);\
+ 	$(call ac_s_cmd,/sbin/ldconfig -p | grep -q lib64 &&\
+ 		echo "lib64" || echo "lib");\
+ 	$(call ac_fini))
+ 
++ac_lib64 = gcc
++
+ # check for x11 ressource dir prefix
+ ac_resdir = $(shell \
+ 	$(call ac_init,for X11 app-defaults prefix);\
+diff --git a/mk/Variables.mk b/mk/Variables.mk
+index 99f787c..fd47f73 100644
+--- a/mk/Variables.mk
++++ b/mk/Variables.mk
+@@ -24,8 +24,8 @@ endif
+ RELTAG	:= v$(subst .,_,$(VERSION))
+ 
+ # programs
+-CC		?= gcc
+-CXX		?= g++
++CC		?= $(CROSS_COMPILE)gcc
++CXX		?= $(CROSS_COMPILE)g++
+ MOC             ?= $(if $(QTDIR),$(QTDIR)/bin/moc,moc)
+ 
+ STRIP		?= -s
+-- 
+1.7.0.4
+
diff --git a/meta-arago-extras/recipes-devtools/input-utils/input-utils_git.bb b/meta-arago-extras/recipes-devtools/input-utils/input-utils_git.bb
new file mode 100644
index 0000000..30a7454
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/input-utils/input-utils_git.bb
@@ -0,0 +1,30 @@
+DESCRIPTION = "Utilities for the Linux input drivers"
+HOMEPAGE = "http://packages.tanglu.org/source/aequorea/input-utils"
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
+
+PV = "1.0"
+PR = "r0"
+
+BRANCH ?= "master"
+SRCREV = "230a22bda95ea5616251b43db418f9df445651b6"
+
+SRC_URI = "git://git.debian.org/collab-maint/input-utils.git;protocol=git;branch=${BRANCH}"
+SRC_URI_append_arm = " file://0001-autoconf-fix-for-cross-compilation-for-ARM.patch"
+
+S = "${WORKDIR}/git"
+
+do_compile () {
+    oe_runmake
+}
+
+# set the DESTDIR and the STRIP variables used by the GNUmakefile.
+# The STRIP variable is set to blank or else the variable setting from OE
+# is picked up as <TC>-strip and the install step sees that as another
+# file to install.
+EXTRA_OEMAKE = "DESTDIR=${D} STRIP=''"
+
+do_install () {
+    oe_runmake install
+}
-- 
1.7.0.4



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

* [PATCH 2/4] arago-test: Add input-utils to test packages
  2013-11-11 17:07 [PATCH 1/4] input-utils: Add the input-utils package recipe Chase Maupin
@ 2013-11-11 17:07 ` Chase Maupin
  2013-11-11 17:07 ` [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts Chase Maupin
  2013-11-11 17:07 ` [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages Chase Maupin
  2 siblings, 0 replies; 17+ messages in thread
From: Chase Maupin @ 2013-11-11 17:07 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
index c915fbd..35fa627 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Extended task to get System Test specific apps"
 LICENSE = "MIT"
-PR = "r8"
+PR = "r9"
 
 inherit packagegroup
 
@@ -20,6 +20,7 @@ ARAGO_TEST = "\
 
 ARAGO_TI_TEST = "\
     ltp-ddt \
+    input-utils \
     "
 
 ARAGO_TI_TEST_append_omap-a15 = " \
-- 
1.7.0.4



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

* [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts
  2013-11-11 17:07 [PATCH 1/4] input-utils: Add the input-utils package recipe Chase Maupin
  2013-11-11 17:07 ` [PATCH 2/4] arago-test: Add input-utils to test packages Chase Maupin
@ 2013-11-11 17:07 ` Chase Maupin
  2013-11-11 18:56   ` Cooper Jr., Franklin
  2013-11-11 17:07 ` [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages Chase Maupin
  2 siblings, 1 reply; 17+ messages in thread
From: Chase Maupin @ 2013-11-11 17:07 UTC (permalink / raw)
  To: meta-arago

* The Linaro PM test scripts which have already been incorporated
  into the ltp-ddt project depend on some utilities from the
  Linaro pm-qa project.
* Build the utilities and install them into /usr/bin so they
  will be in the default PATH

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../linaro-pm-qa/linaro-pm-qa-utils_git.bb         |   32 ++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb

diff --git a/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb
new file mode 100644
index 0000000..275b6e6
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb
@@ -0,0 +1,32 @@
+DESCRIPTION = "Utilities from Linaro for testing Power Management"
+HOMEPAGE = "https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/TestSuite/PmQa"
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+PV = "0.4.4"
+PR = "r0"
+
+BRANCH ?= "master"
+SRCREV = "fbc2762359b863dfbf4fd0bab1e8abd2a6125ed4"
+
+SRC_URI = "git://git.linaro.org/tools/pm-qa.git;protocol=git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git/utils"
+
+UTILS = "cpuburn cpucycle heat_cpu nanosleep"
+
+CFLAGS += "-pthread"
+
+do_compile () {
+    oe_runmake
+}
+
+do_install () {
+    install -d ${D}${bindir}
+
+    for util in ${UTILS}
+    do
+        install -m 0755 $util ${D}${bindir}/
+    done
+}
-- 
1.7.0.4



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

* [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 17:07 [PATCH 1/4] input-utils: Add the input-utils package recipe Chase Maupin
  2013-11-11 17:07 ` [PATCH 2/4] arago-test: Add input-utils to test packages Chase Maupin
  2013-11-11 17:07 ` [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts Chase Maupin
@ 2013-11-11 17:07 ` Chase Maupin
  2013-11-11 18:53   ` Cooper Jr., Franklin
  2 siblings, 1 reply; 17+ messages in thread
From: Chase Maupin @ 2013-11-11 17:07 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
index 35fa627..58ecd83 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Extended task to get System Test specific apps"
 LICENSE = "MIT"
-PR = "r9"
+PR = "r10"
 
 inherit packagegroup
 
@@ -21,6 +21,7 @@ ARAGO_TEST = "\
 ARAGO_TI_TEST = "\
     ltp-ddt \
     input-utils \
+    linaro-pm-qa-utils \
     "
 
 ARAGO_TI_TEST_append_omap-a15 = " \
-- 
1.7.0.4



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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 17:07 ` [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages Chase Maupin
@ 2013-11-11 18:53   ` Cooper Jr., Franklin
  2013-11-11 19:18     ` Maupin, Chase
  0 siblings, 1 reply; 17+ messages in thread
From: Cooper Jr., Franklin @ 2013-11-11 18:53 UTC (permalink / raw)
  To: Maupin, Chase, meta-arago

The current patch is fine as is but should there be another patch that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Monday, November 11, 2013 11:07 AM
> To: meta-arago@arago-project.org
> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test
> packages
> 
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> arago-test.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> arago-test.bb
> index 35fa627..58ecd83 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-
> test.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-
> test.bb
> @@ -1,6 +1,6 @@
>  DESCRIPTION = "Extended task to get System Test specific apps"
>  LICENSE = "MIT"
> -PR = "r9"
> +PR = "r10"
> 
>  inherit packagegroup
> 
> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
>  ARAGO_TI_TEST = "\
>      ltp-ddt \
>      input-utils \
> +    linaro-pm-qa-utils \
>      "
> 
>  ARAGO_TI_TEST_append_omap-a15 = " \
> --
> 1.7.0.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts
  2013-11-11 17:07 ` [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts Chase Maupin
@ 2013-11-11 18:56   ` Cooper Jr., Franklin
  2013-11-11 19:02     ` Maupin, Chase
  0 siblings, 1 reply; 17+ messages in thread
From: Cooper Jr., Franklin @ 2013-11-11 18:56 UTC (permalink / raw)
  To: Maupin, Chase, meta-arago

The patch itself is fine. Is there a plan to upstream this to meta-linaro?

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Monday, November 11, 2013 11:07 AM
> To: meta-arago@arago-project.org
> Subject: [meta-arago] [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro
> PM scripts
> 
> * The Linaro PM test scripts which have already been incorporated
>   into the ltp-ddt project depend on some utilities from the
>   Linaro pm-qa project.
> * Build the utilities and install them into /usr/bin so they
>   will be in the default PATH
> 
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
>  .../linaro-pm-qa/linaro-pm-qa-utils_git.bb         |   32 ++++++++++++++++++++
>  1 files changed, 32 insertions(+), 0 deletions(-)  create mode 100644 meta-
> arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils_git.bb
> 
> diff --git a/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-
> utils_git.bb b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-
> utils_git.bb
> new file mode 100644
> index 0000000..275b6e6
> --- /dev/null
> +++ b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-utils
> +++ _git.bb
> @@ -0,0 +1,32 @@
> +DESCRIPTION = "Utilities from Linaro for testing Power Management"
> +HOMEPAGE =
> "https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/TestSui
> te/PmQa"
> +
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM =
> "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +
> +PV = "0.4.4"
> +PR = "r0"
> +
> +BRANCH ?= "master"
> +SRCREV = "fbc2762359b863dfbf4fd0bab1e8abd2a6125ed4"
> +
> +SRC_URI = "git://git.linaro.org/tools/pm-
> qa.git;protocol=git;branch=${BRANCH}"
> +
> +S = "${WORKDIR}/git/utils"
> +
> +UTILS = "cpuburn cpucycle heat_cpu nanosleep"
> +
> +CFLAGS += "-pthread"
> +
> +do_compile () {
> +    oe_runmake
> +}
> +
> +do_install () {
> +    install -d ${D}${bindir}
> +
> +    for util in ${UTILS}
> +    do
> +        install -m 0755 $util ${D}${bindir}/
> +    done
> +}
> --
> 1.7.0.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts
  2013-11-11 18:56   ` Cooper Jr., Franklin
@ 2013-11-11 19:02     ` Maupin, Chase
  0 siblings, 0 replies; 17+ messages in thread
From: Maupin, Chase @ 2013-11-11 19:02 UTC (permalink / raw)
  To: Cooper Jr., Franklin, meta-arago

>From: Cooper Jr., Franklin
>Sent: Monday, November 11, 2013 12:57 PM
>To: Maupin, Chase; meta-arago@arago-project.org
>Subject: RE: [meta-arago] [PATCH 3/4] linaro-pm-qa-utils: Add
>utils used by Linaro PM scripts
>
>The patch itself is fine. Is there a plan to upstream this to
>meta-linaro?

Yeah.  I'm pinging Denys about who to work with for this.

>
>> -----Original Message-----
>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>> bounces@arago-project.org] On Behalf Of Maupin, Chase
>> Sent: Monday, November 11, 2013 11:07 AM
>> To: meta-arago@arago-project.org
>> Subject: [meta-arago] [PATCH 3/4] linaro-pm-qa-utils: Add utils
>used by Linaro
>> PM scripts
>>
>> * The Linaro PM test scripts which have already been
>incorporated
>>   into the ltp-ddt project depend on some utilities from the
>>   Linaro pm-qa project.
>> * Build the utilities and install them into /usr/bin so they
>>   will be in the default PATH
>>
>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> ---
>>  .../linaro-pm-qa/linaro-pm-qa-utils_git.bb         |   32
>++++++++++++++++++++
>>  1 files changed, 32 insertions(+), 0 deletions(-)  create mode
>100644 meta-
>> arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa-
>utils_git.bb
>>
>> diff --git a/meta-arago-extras/recipes-devtools/linaro-pm-
>qa/linaro-pm-qa-
>> utils_git.bb b/meta-arago-extras/recipes-devtools/linaro-pm-
>qa/linaro-pm-qa-
>> utils_git.bb
>> new file mode 100644
>> index 0000000..275b6e6
>> --- /dev/null
>> +++ b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-
>qa-utils
>> +++ _git.bb
>> @@ -0,0 +1,32 @@
>> +DESCRIPTION = "Utilities from Linaro for testing Power
>Management"
>> +HOMEPAGE =
>>
>"https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/T
>estSui
>> te/PmQa"
>> +
>> +LICENSE = "GPLv2"
>> +LIC_FILES_CHKSUM =
>> "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>> +
>> +PV = "0.4.4"
>> +PR = "r0"
>> +
>> +BRANCH ?= "master"
>> +SRCREV = "fbc2762359b863dfbf4fd0bab1e8abd2a6125ed4"
>> +
>> +SRC_URI = "git://git.linaro.org/tools/pm-
>> qa.git;protocol=git;branch=${BRANCH}"
>> +
>> +S = "${WORKDIR}/git/utils"
>> +
>> +UTILS = "cpuburn cpucycle heat_cpu nanosleep"
>> +
>> +CFLAGS += "-pthread"
>> +
>> +do_compile () {
>> +    oe_runmake
>> +}
>> +
>> +do_install () {
>> +    install -d ${D}${bindir}
>> +
>> +    for util in ${UTILS}
>> +    do
>> +        install -m 0755 $util ${D}${bindir}/
>> +    done
>> +}
>> --
>> 1.7.0.4
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 18:53   ` Cooper Jr., Franklin
@ 2013-11-11 19:18     ` Maupin, Chase
  2013-11-11 19:22       ` Maupin, Chase
  0 siblings, 1 reply; 17+ messages in thread
From: Maupin, Chase @ 2013-11-11 19:18 UTC (permalink / raw)
  To: Cooper Jr., Franklin, meta-arago

Good point.

Sincerely,
Chase Maupin
Integration Team Manager
Linux Core Product Development
e-mail: chase.maupin@ti.com
phone: (214) 567-2950

For support:
Forums - http://community.ti.com/forums/
Wiki - http://wiki.davincidsp.com/ 


>-----Original Message-----
>From: Cooper Jr., Franklin
>Sent: Monday, November 11, 2013 12:54 PM
>To: Maupin, Chase; meta-arago@arago-project.org
>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
>qa-utils to test packages
>
>The current patch is fine as is but should there be another patch
>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
>
>> -----Original Message-----
>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>> bounces@arago-project.org] On Behalf Of Maupin, Chase
>> Sent: Monday, November 11, 2013 11:07 AM
>> To: meta-arago@arago-project.org
>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-
>utils to test
>> packages
>>
>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> ---
>>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
>>  1 files changed, 2 insertions(+), 1 deletions(-)
>>
>> diff --git a/meta-arago-distro/recipes-
>core/packagegroups/packagegroup-
>> arago-test.bb b/meta-arago-distro/recipes-
>core/packagegroups/packagegroup-
>> arago-test.bb
>> index 35fa627..58ecd83 100644
>> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-
>arago-
>> test.bb
>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
>arago-
>> test.bb
>> @@ -1,6 +1,6 @@
>>  DESCRIPTION = "Extended task to get System Test specific apps"
>>  LICENSE = "MIT"
>> -PR = "r9"
>> +PR = "r10"
>>
>>  inherit packagegroup
>>
>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
>>  ARAGO_TI_TEST = "\
>>      ltp-ddt \
>>      input-utils \
>> +    linaro-pm-qa-utils \
>>      "
>>
>>  ARAGO_TI_TEST_append_omap-a15 = " \
>> --
>> 1.7.0.4
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:18     ` Maupin, Chase
@ 2013-11-11 19:22       ` Maupin, Chase
  2013-11-11 19:26         ` Cooper Jr., Franklin
  2013-11-11 19:27         ` Denys Dmytriyenko
  0 siblings, 2 replies; 17+ messages in thread
From: Maupin, Chase @ 2013-11-11 19:22 UTC (permalink / raw)
  To: Maupin, Chase, Cooper Jr., Franklin, meta-arago

Denys,

I could use some advice here though.  Ltp-ddt sits in meta-openembedded so even if we get the pm-utils into meta-linaro we still should not introduce this dependency between layers right?

However, we do append ltp-ddt in meta-arago so if we introduce this dependency there would that be an issue?

What do you think about how to handle this?

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Maupin, Chase
>Sent: Monday, November 11, 2013 1:19 PM
>To: Cooper Jr., Franklin; meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
>qa-utils to test packages
>
>Good point.
>
>Sincerely,
>Chase Maupin
>Integration Team Manager
>Linux Core Product Development
>e-mail: chase.maupin@ti.com
>phone: (214) 567-2950
>
>For support:
>Forums - http://community.ti.com/forums/
>Wiki - http://wiki.davincidsp.com/
>
>
>>-----Original Message-----
>>From: Cooper Jr., Franklin
>>Sent: Monday, November 11, 2013 12:54 PM
>>To: Maupin, Chase; meta-arago@arago-project.org
>>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
>>qa-utils to test packages
>>
>>The current patch is fine as is but should there be another patch
>>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
>>
>>> -----Original Message-----
>>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>>> bounces@arago-project.org] On Behalf Of Maupin, Chase
>>> Sent: Monday, November 11, 2013 11:07 AM
>>> To: meta-arago@arago-project.org
>>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-
>>utils to test
>>> packages
>>>
>>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>>> ---
>>>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
>>>  1 files changed, 2 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/meta-arago-distro/recipes-
>>core/packagegroups/packagegroup-
>>> arago-test.bb b/meta-arago-distro/recipes-
>>core/packagegroups/packagegroup-
>>> arago-test.bb
>>> index 35fa627..58ecd83 100644
>>> --- a/meta-arago-distro/recipes-
>core/packagegroups/packagegroup-
>>arago-
>>> test.bb
>>> +++ b/meta-arago-distro/recipes-
>core/packagegroups/packagegroup-
>>arago-
>>> test.bb
>>> @@ -1,6 +1,6 @@
>>>  DESCRIPTION = "Extended task to get System Test specific apps"
>>>  LICENSE = "MIT"
>>> -PR = "r9"
>>> +PR = "r10"
>>>
>>>  inherit packagegroup
>>>
>>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
>>>  ARAGO_TI_TEST = "\
>>>      ltp-ddt \
>>>      input-utils \
>>> +    linaro-pm-qa-utils \
>>>      "
>>>
>>>  ARAGO_TI_TEST_append_omap-a15 = " \
>>> --
>>> 1.7.0.4
>>>
>>> _______________________________________________
>>> meta-arago mailing list
>>> meta-arago@arago-project.org
>>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:22       ` Maupin, Chase
@ 2013-11-11 19:26         ` Cooper Jr., Franklin
  2013-11-11 19:27           ` Denys Dmytriyenko
  2013-11-11 19:27         ` Denys Dmytriyenko
  1 sibling, 1 reply; 17+ messages in thread
From: Cooper Jr., Franklin @ 2013-11-11 19:26 UTC (permalink / raw)
  To: Maupin, Chase, meta-arago

FYI only ltp-ddt in meta-arago picks up the latest commits via AUTOREV. The base recipe in meta-oe is suck on a commit two years old....

> -----Original Message-----
> From: Maupin, Chase
> Sent: Monday, November 11, 2013 1:22 PM
> To: Maupin, Chase; Cooper Jr., Franklin; meta-arago@arago-project.org
> Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test
> packages
> 
> Denys,
> 
> I could use some advice here though.  Ltp-ddt sits in meta-openembedded so
> even if we get the pm-utils into meta-linaro we still should not introduce this
> dependency between layers right?
> 
> However, we do append ltp-ddt in meta-arago so if we introduce this
> dependency there would that be an issue?
> 
> What do you think about how to handle this?
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Maupin, Chase
> >Sent: Monday, November 11, 2013 1:19 PM
> >To: Cooper Jr., Franklin; meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >qa-utils to test packages
> >
> >Good point.
> >
> >Sincerely,
> >Chase Maupin
> >Integration Team Manager
> >Linux Core Product Development
> >e-mail: chase.maupin@ti.com
> >phone: (214) 567-2950
> >
> >For support:
> >Forums - http://community.ti.com/forums/ Wiki -
> >http://wiki.davincidsp.com/
> >
> >
> >>-----Original Message-----
> >>From: Cooper Jr., Franklin
> >>Sent: Monday, November 11, 2013 12:54 PM
> >>To: Maupin, Chase; meta-arago@arago-project.org
> >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >>qa-utils to test packages
> >>
> >>The current patch is fine as is but should there be another patch that
> >>makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
> >>
> >>> -----Original Message-----
> >>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
> >>> Sent: Monday, November 11, 2013 11:07 AM
> >>> To: meta-arago@arago-project.org
> >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-
> >>utils to test
> >>> packages
> >>>
> >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> >>> ---
> >>>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
> >>>  1 files changed, 2 insertions(+), 1 deletions(-)
> >>>
> >>> diff --git a/meta-arago-distro/recipes-
> >>core/packagegroups/packagegroup-
> >>> arago-test.bb b/meta-arago-distro/recipes-
> >>core/packagegroups/packagegroup-
> >>> arago-test.bb
> >>> index 35fa627..58ecd83 100644
> >>> --- a/meta-arago-distro/recipes-
> >core/packagegroups/packagegroup-
> >>arago-
> >>> test.bb
> >>> +++ b/meta-arago-distro/recipes-
> >core/packagegroups/packagegroup-
> >>arago-
> >>> test.bb
> >>> @@ -1,6 +1,6 @@
> >>>  DESCRIPTION = "Extended task to get System Test specific apps"
> >>>  LICENSE = "MIT"
> >>> -PR = "r9"
> >>> +PR = "r10"
> >>>
> >>>  inherit packagegroup
> >>>
> >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
> >>>  ARAGO_TI_TEST = "\
> >>>      ltp-ddt \
> >>>      input-utils \
> >>> +    linaro-pm-qa-utils \
> >>>      "
> >>>
> >>>  ARAGO_TI_TEST_append_omap-a15 = " \
> >>> --
> >>> 1.7.0.4
> >>>
> >>> _______________________________________________
> >>> meta-arago mailing list
> >>> meta-arago@arago-project.org
> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:22       ` Maupin, Chase
  2013-11-11 19:26         ` Cooper Jr., Franklin
@ 2013-11-11 19:27         ` Denys Dmytriyenko
  2013-11-11 19:31           ` Maupin, Chase
  1 sibling, 1 reply; 17+ messages in thread
From: Denys Dmytriyenko @ 2013-11-11 19:27 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago, Cooper Jr., Franklin

AFAIK, ltp-ddt in meta-oe is very old and hasn't been updated in years. I 
doubt that particular one had any thermal features.

It should be Ok to add this dependency in meta-arago in bbappend, once these 
recipes land in meta-linaro, since we already have such dependency.

-- 
Denys


On Mon, Nov 11, 2013 at 07:22:27PM +0000, Maupin, Chase wrote:
> Denys,
> 
> I could use some advice here though.  Ltp-ddt sits in meta-openembedded so 
> even if we get the pm-utils into meta-linaro we still should not introduce 
> this dependency between layers right?
> 
> However, we do append ltp-ddt in meta-arago so if we introduce this 
> dependency there would that be an issue?
> 
> What do you think about how to handle this?
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Maupin, Chase
> >Sent: Monday, November 11, 2013 1:19 PM
> >To: Cooper Jr., Franklin; meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >qa-utils to test packages
> >
> >Good point.
> >
> >Sincerely,
> >Chase Maupin
> >Integration Team Manager
> >Linux Core Product Development
> >e-mail: chase.maupin@ti.com
> >phone: (214) 567-2950
> >
> >For support:
> >Forums - http://community.ti.com/forums/
> >Wiki - http://wiki.davincidsp.com/
> >
> >
> >>-----Original Message-----
> >>From: Cooper Jr., Franklin
> >>Sent: Monday, November 11, 2013 12:54 PM
> >>To: Maupin, Chase; meta-arago@arago-project.org
> >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >>qa-utils to test packages
> >>
> >>The current patch is fine as is but should there be another patch
> >>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
> >>
> >>> -----Original Message-----
> >>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
> >>> Sent: Monday, November 11, 2013 11:07 AM
> >>> To: meta-arago@arago-project.org
> >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-
> >>utils to test
> >>> packages
> >>>
> >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> >>> ---
> >>>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
> >>>  1 files changed, 2 insertions(+), 1 deletions(-)
> >>>
> >>> diff --git a/meta-arago-distro/recipes-
> >>core/packagegroups/packagegroup-
> >>> arago-test.bb b/meta-arago-distro/recipes-
> >>core/packagegroups/packagegroup-
> >>> arago-test.bb
> >>> index 35fa627..58ecd83 100644
> >>> --- a/meta-arago-distro/recipes-
> >core/packagegroups/packagegroup-
> >>arago-
> >>> test.bb
> >>> +++ b/meta-arago-distro/recipes-
> >core/packagegroups/packagegroup-
> >>arago-
> >>> test.bb
> >>> @@ -1,6 +1,6 @@
> >>>  DESCRIPTION = "Extended task to get System Test specific apps"
> >>>  LICENSE = "MIT"
> >>> -PR = "r9"
> >>> +PR = "r10"
> >>>
> >>>  inherit packagegroup
> >>>
> >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
> >>>  ARAGO_TI_TEST = "\
> >>>      ltp-ddt \
> >>>      input-utils \
> >>> +    linaro-pm-qa-utils \
> >>>      "
> >>>
> >>>  ARAGO_TI_TEST_append_omap-a15 = " \
> >>> --
> >>> 1.7.0.4
> >>>
> >>> _______________________________________________
> >>> meta-arago mailing list
> >>> meta-arago@arago-project.org
> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:26         ` Cooper Jr., Franklin
@ 2013-11-11 19:27           ` Denys Dmytriyenko
  2013-11-11 19:28             ` Cooper Jr., Franklin
  0 siblings, 1 reply; 17+ messages in thread
From: Denys Dmytriyenko @ 2013-11-11 19:27 UTC (permalink / raw)
  To: Cooper Jr., Franklin; +Cc: meta-arago

"suck" is not the word I'd use here...

On Mon, Nov 11, 2013 at 07:26:47PM +0000, Cooper Jr., Franklin wrote:
> FYI only ltp-ddt in meta-arago picks up the latest commits via AUTOREV. The 
> base recipe in meta-oe is suck on a commit two years old....
> 
> > -----Original Message-----
> > From: Maupin, Chase
> > Sent: Monday, November 11, 2013 1:22 PM
> > To: Maupin, Chase; Cooper Jr., Franklin; meta-arago@arago-project.org
> > Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test
> > packages
> > 
> > Denys,
> > 
> > I could use some advice here though.  Ltp-ddt sits in meta-openembedded so
> > even if we get the pm-utils into meta-linaro we still should not introduce this
> > dependency between layers right?
> > 
> > However, we do append ltp-ddt in meta-arago so if we introduce this
> > dependency there would that be an issue?
> > 
> > What do you think about how to handle this?
> > 
> > >-----Original Message-----
> > >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > >bounces@arago-project.org] On Behalf Of Maupin, Chase
> > >Sent: Monday, November 11, 2013 1:19 PM
> > >To: Cooper Jr., Franklin; meta-arago@arago-project.org
> > >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> > >qa-utils to test packages
> > >
> > >Good point.
> > >
> > >Sincerely,
> > >Chase Maupin
> > >Integration Team Manager
> > >Linux Core Product Development
> > >e-mail: chase.maupin@ti.com
> > >phone: (214) 567-2950
> > >
> > >For support:
> > >Forums - http://community.ti.com/forums/ Wiki -
> > >http://wiki.davincidsp.com/
> > >
> > >
> > >>-----Original Message-----
> > >>From: Cooper Jr., Franklin
> > >>Sent: Monday, November 11, 2013 12:54 PM
> > >>To: Maupin, Chase; meta-arago@arago-project.org
> > >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> > >>qa-utils to test packages
> > >>
> > >>The current patch is fine as is but should there be another patch that
> > >>makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
> > >>
> > >>> -----Original Message-----
> > >>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
> > >>> Sent: Monday, November 11, 2013 11:07 AM
> > >>> To: meta-arago@arago-project.org
> > >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-
> > >>utils to test
> > >>> packages
> > >>>
> > >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > >>> ---
> > >>>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
> > >>>  1 files changed, 2 insertions(+), 1 deletions(-)
> > >>>
> > >>> diff --git a/meta-arago-distro/recipes-
> > >>core/packagegroups/packagegroup-
> > >>> arago-test.bb b/meta-arago-distro/recipes-
> > >>core/packagegroups/packagegroup-
> > >>> arago-test.bb
> > >>> index 35fa627..58ecd83 100644
> > >>> --- a/meta-arago-distro/recipes-
> > >core/packagegroups/packagegroup-
> > >>arago-
> > >>> test.bb
> > >>> +++ b/meta-arago-distro/recipes-
> > >core/packagegroups/packagegroup-
> > >>arago-
> > >>> test.bb
> > >>> @@ -1,6 +1,6 @@
> > >>>  DESCRIPTION = "Extended task to get System Test specific apps"
> > >>>  LICENSE = "MIT"
> > >>> -PR = "r9"
> > >>> +PR = "r10"
> > >>>
> > >>>  inherit packagegroup
> > >>>
> > >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
> > >>>  ARAGO_TI_TEST = "\
> > >>>      ltp-ddt \
> > >>>      input-utils \
> > >>> +    linaro-pm-qa-utils \
> > >>>      "
> > >>>
> > >>>  ARAGO_TI_TEST_append_omap-a15 = " \
> > >>> --
> > >>> 1.7.0.4
> > >>>
> > >>> _______________________________________________
> > >>> meta-arago mailing list
> > >>> meta-arago@arago-project.org
> > >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > >_______________________________________________
> > >meta-arago mailing list
> > >meta-arago@arago-project.org
> > >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:27           ` Denys Dmytriyenko
@ 2013-11-11 19:28             ` Cooper Jr., Franklin
  0 siblings, 0 replies; 17+ messages in thread
From: Cooper Jr., Franklin @ 2013-11-11 19:28 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

Meant stuck :)

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Monday, November 11, 2013 1:28 PM
> To: Cooper Jr., Franklin
> Cc: Maupin, Chase; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test
> packages
> 
> "suck" is not the word I'd use here...
> 
> On Mon, Nov 11, 2013 at 07:26:47PM +0000, Cooper Jr., Franklin wrote:
> > FYI only ltp-ddt in meta-arago picks up the latest commits via
> > AUTOREV. The base recipe in meta-oe is suck on a commit two years old....
> >
> > > -----Original Message-----
> > > From: Maupin, Chase
> > > Sent: Monday, November 11, 2013 1:22 PM
> > > To: Maupin, Chase; Cooper Jr., Franklin;
> > > meta-arago@arago-project.org
> > > Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add
> > > linaro-pm-qa-utils to test packages
> > >
> > > Denys,
> > >
> > > I could use some advice here though.  Ltp-ddt sits in
> > > meta-openembedded so even if we get the pm-utils into meta-linaro we
> > > still should not introduce this dependency between layers right?
> > >
> > > However, we do append ltp-ddt in meta-arago so if we introduce this
> > > dependency there would that be an issue?
> > >
> > > What do you think about how to handle this?
> > >
> > > >-----Original Message-----
> > > >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > > >bounces@arago-project.org] On Behalf Of Maupin, Chase
> > > >Sent: Monday, November 11, 2013 1:19 PM
> > > >To: Cooper Jr., Franklin; meta-arago@arago-project.org
> > > >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> > > >qa-utils to test packages
> > > >
> > > >Good point.
> > > >
> > > >Sincerely,
> > > >Chase Maupin
> > > >Integration Team Manager
> > > >Linux Core Product Development
> > > >e-mail: chase.maupin@ti.com
> > > >phone: (214) 567-2950
> > > >
> > > >For support:
> > > >Forums - http://community.ti.com/forums/ Wiki -
> > > >http://wiki.davincidsp.com/
> > > >
> > > >
> > > >>-----Original Message-----
> > > >>From: Cooper Jr., Franklin
> > > >>Sent: Monday, November 11, 2013 12:54 PM
> > > >>To: Maupin, Chase; meta-arago@arago-project.org
> > > >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> > > >>qa-utils to test packages
> > > >>
> > > >>The current patch is fine as is but should there be another patch
> > > >>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
> > > >>
> > > >>> -----Original Message-----
> > > >>> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > > >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
> > > >>> Sent: Monday, November 11, 2013 11:07 AM
> > > >>> To: meta-arago@arago-project.org
> > > >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-qa-
> > > >>utils to test
> > > >>> packages
> > > >>>
> > > >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > >>> ---
> > > >>>  .../packagegroups/packagegroup-arago-test.bb       |    3 ++-
> > > >>>  1 files changed, 2 insertions(+), 1 deletions(-)
> > > >>>
> > > >>> diff --git a/meta-arago-distro/recipes-
> > > >>core/packagegroups/packagegroup-
> > > >>> arago-test.bb b/meta-arago-distro/recipes-
> > > >>core/packagegroups/packagegroup-
> > > >>> arago-test.bb
> > > >>> index 35fa627..58ecd83 100644
> > > >>> --- a/meta-arago-distro/recipes-
> > > >core/packagegroups/packagegroup-
> > > >>arago-
> > > >>> test.bb
> > > >>> +++ b/meta-arago-distro/recipes-
> > > >core/packagegroups/packagegroup-
> > > >>arago-
> > > >>> test.bb
> > > >>> @@ -1,6 +1,6 @@
> > > >>>  DESCRIPTION = "Extended task to get System Test specific apps"
> > > >>>  LICENSE = "MIT"
> > > >>> -PR = "r9"
> > > >>> +PR = "r10"
> > > >>>
> > > >>>  inherit packagegroup
> > > >>>
> > > >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\  ARAGO_TI_TEST = "\
> > > >>>      ltp-ddt \
> > > >>>      input-utils \
> > > >>> +    linaro-pm-qa-utils \
> > > >>>      "
> > > >>>
> > > >>>  ARAGO_TI_TEST_append_omap-a15 = " \
> > > >>> --
> > > >>> 1.7.0.4
> > > >>>
> > > >>> _______________________________________________
> > > >>> meta-arago mailing list
> > > >>> meta-arago@arago-project.org
> > > >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > > >_______________________________________________
> > > >meta-arago mailing list
> > > >meta-arago@arago-project.org
> > > >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:27         ` Denys Dmytriyenko
@ 2013-11-11 19:31           ` Maupin, Chase
  2013-11-11 19:37             ` Denys Dmytriyenko
  0 siblings, 1 reply; 17+ messages in thread
From: Maupin, Chase @ 2013-11-11 19:31 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago, Cooper Jr., Franklin

>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Monday, November 11, 2013 1:27 PM
>To: Maupin, Chase
>Cc: Cooper Jr., Franklin; meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
>qa-utils to test packages
>
>AFAIK, ltp-ddt in meta-oe is very old and hasn't been updated in
>years. I
>doubt that particular one had any thermal features.
>
>It should be Ok to add this dependency in meta-arago in bbappend,
>once these
>recipes land in meta-linaro, since we already have such
>dependency.

Any idea who to work with for meta-linaro?

And can't this dependency be added now since even before it lands in meta-linaro it will be in meta-arago?

>
>--
>Denys
>
>
>On Mon, Nov 11, 2013 at 07:22:27PM +0000, Maupin, Chase wrote:
>> Denys,
>>
>> I could use some advice here though.  Ltp-ddt sits in meta-
>openembedded so
>> even if we get the pm-utils into meta-linaro we still should not
>introduce
>> this dependency between layers right?
>>
>> However, we do append ltp-ddt in meta-arago so if we introduce
>this
>> dependency there would that be an issue?
>>
>> What do you think about how to handle this?
>>
>> >-----Original Message-----
>> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>> >bounces@arago-project.org] On Behalf Of Maupin, Chase
>> >Sent: Monday, November 11, 2013 1:19 PM
>> >To: Cooper Jr., Franklin; meta-arago@arago-project.org
>> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-
>pm-
>> >qa-utils to test packages
>> >
>> >Good point.
>> >
>> >Sincerely,
>> >Chase Maupin
>> >Integration Team Manager
>> >Linux Core Product Development
>> >e-mail: chase.maupin@ti.com
>> >phone: (214) 567-2950
>> >
>> >For support:
>> >Forums - http://community.ti.com/forums/
>> >Wiki - http://wiki.davincidsp.com/
>> >
>> >
>> >>-----Original Message-----
>> >>From: Cooper Jr., Franklin
>> >>Sent: Monday, November 11, 2013 12:54 PM
>> >>To: Maupin, Chase; meta-arago@arago-project.org
>> >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-
>pm-
>> >>qa-utils to test packages
>> >>
>> >>The current patch is fine as is but should there be another
>patch
>> >>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
>> >>
>> >>> -----Original Message-----
>> >>> From: meta-arago-bounces@arago-project.org [mailto:meta-
>arago-
>> >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
>> >>> Sent: Monday, November 11, 2013 11:07 AM
>> >>> To: meta-arago@arago-project.org
>> >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
>qa-
>> >>utils to test
>> >>> packages
>> >>>
>> >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> >>> ---
>> >>>  .../packagegroups/packagegroup-arago-test.bb       |    3
>++-
>> >>>  1 files changed, 2 insertions(+), 1 deletions(-)
>> >>>
>> >>> diff --git a/meta-arago-distro/recipes-
>> >>core/packagegroups/packagegroup-
>> >>> arago-test.bb b/meta-arago-distro/recipes-
>> >>core/packagegroups/packagegroup-
>> >>> arago-test.bb
>> >>> index 35fa627..58ecd83 100644
>> >>> --- a/meta-arago-distro/recipes-
>> >core/packagegroups/packagegroup-
>> >>arago-
>> >>> test.bb
>> >>> +++ b/meta-arago-distro/recipes-
>> >core/packagegroups/packagegroup-
>> >>arago-
>> >>> test.bb
>> >>> @@ -1,6 +1,6 @@
>> >>>  DESCRIPTION = "Extended task to get System Test specific
>apps"
>> >>>  LICENSE = "MIT"
>> >>> -PR = "r9"
>> >>> +PR = "r10"
>> >>>
>> >>>  inherit packagegroup
>> >>>
>> >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
>> >>>  ARAGO_TI_TEST = "\
>> >>>      ltp-ddt \
>> >>>      input-utils \
>> >>> +    linaro-pm-qa-utils \
>> >>>      "
>> >>>
>> >>>  ARAGO_TI_TEST_append_omap-a15 = " \
>> >>> --
>> >>> 1.7.0.4
>> >>>
>> >>> _______________________________________________
>> >>> meta-arago mailing list
>> >>> meta-arago@arago-project.org
>> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>> >_______________________________________________
>> >meta-arago mailing list
>> >meta-arago@arago-project.org
>> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>>


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:31           ` Maupin, Chase
@ 2013-11-11 19:37             ` Denys Dmytriyenko
  2013-11-11 19:42               ` Maupin, Chase
  0 siblings, 1 reply; 17+ messages in thread
From: Denys Dmytriyenko @ 2013-11-11 19:37 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago, Cooper Jr., Franklin

On Mon, Nov 11, 2013 at 07:31:40PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: Dmytriyenko, Denys
> >Sent: Monday, November 11, 2013 1:27 PM
> >To: Maupin, Chase
> >Cc: Cooper Jr., Franklin; meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >qa-utils to test packages
> >
> >AFAIK, ltp-ddt in meta-oe is very old and hasn't been updated in
> >years. I
> >doubt that particular one had any thermal features.
> >
> >It should be Ok to add this dependency in meta-arago in bbappend,
> >once these
> >recipes land in meta-linaro, since we already have such
> >dependency.
> 
> Any idea who to work with for meta-linaro?
> 
> And can't this dependency be added now since even before it lands in 
> meta-linaro it will be in meta-arago?

Try linaro-dev@lists.linaro.org:
http://lists.linaro.org/mailman/listinfo/linaro-dev

Fathi Boudra has been responsive lately... Not sure if Koen will own that 
layer now. Either way, sending to the list is best, just add [meta-linaro] 
prefix...


> >On Mon, Nov 11, 2013 at 07:22:27PM +0000, Maupin, Chase wrote:
> >> Denys,
> >>
> >> I could use some advice here though.  Ltp-ddt sits in meta-
> >openembedded so
> >> even if we get the pm-utils into meta-linaro we still should not
> >introduce
> >> this dependency between layers right?
> >>
> >> However, we do append ltp-ddt in meta-arago so if we introduce
> >this
> >> dependency there would that be an issue?
> >>
> >> What do you think about how to handle this?
> >>
> >> >-----Original Message-----
> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >> >bounces@arago-project.org] On Behalf Of Maupin, Chase
> >> >Sent: Monday, November 11, 2013 1:19 PM
> >> >To: Cooper Jr., Franklin; meta-arago@arago-project.org
> >> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-
> >pm-
> >> >qa-utils to test packages
> >> >
> >> >Good point.
> >> >
> >> >Sincerely,
> >> >Chase Maupin
> >> >Integration Team Manager
> >> >Linux Core Product Development
> >> >e-mail: chase.maupin@ti.com
> >> >phone: (214) 567-2950
> >> >
> >> >For support:
> >> >Forums - http://community.ti.com/forums/
> >> >Wiki - http://wiki.davincidsp.com/
> >> >
> >> >
> >> >>-----Original Message-----
> >> >>From: Cooper Jr., Franklin
> >> >>Sent: Monday, November 11, 2013 12:54 PM
> >> >>To: Maupin, Chase; meta-arago@arago-project.org
> >> >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add linaro-
> >pm-
> >> >>qa-utils to test packages
> >> >>
> >> >>The current patch is fine as is but should there be another
> >patch
> >> >>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
> >> >>
> >> >>> -----Original Message-----
> >> >>> From: meta-arago-bounces@arago-project.org [mailto:meta-
> >arago-
> >> >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
> >> >>> Sent: Monday, November 11, 2013 11:07 AM
> >> >>> To: meta-arago@arago-project.org
> >> >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >qa-
> >> >>utils to test
> >> >>> packages
> >> >>>
> >> >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> >> >>> ---
> >> >>>  .../packagegroups/packagegroup-arago-test.bb       |    3
> >++-
> >> >>>  1 files changed, 2 insertions(+), 1 deletions(-)
> >> >>>
> >> >>> diff --git a/meta-arago-distro/recipes-
> >> >>core/packagegroups/packagegroup-
> >> >>> arago-test.bb b/meta-arago-distro/recipes-
> >> >>core/packagegroups/packagegroup-
> >> >>> arago-test.bb
> >> >>> index 35fa627..58ecd83 100644
> >> >>> --- a/meta-arago-distro/recipes-
> >> >core/packagegroups/packagegroup-
> >> >>arago-
> >> >>> test.bb
> >> >>> +++ b/meta-arago-distro/recipes-
> >> >core/packagegroups/packagegroup-
> >> >>arago-
> >> >>> test.bb
> >> >>> @@ -1,6 +1,6 @@
> >> >>>  DESCRIPTION = "Extended task to get System Test specific
> >apps"
> >> >>>  LICENSE = "MIT"
> >> >>> -PR = "r9"
> >> >>> +PR = "r10"
> >> >>>
> >> >>>  inherit packagegroup
> >> >>>
> >> >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
> >> >>>  ARAGO_TI_TEST = "\
> >> >>>      ltp-ddt \
> >> >>>      input-utils \
> >> >>> +    linaro-pm-qa-utils \
> >> >>>      "
> >> >>>
> >> >>>  ARAGO_TI_TEST_append_omap-a15 = " \
> >> >>> --
> >> >>> 1.7.0.4
> >> >>>
> >> >>> _______________________________________________
> >> >>> meta-arago mailing list
> >> >>> meta-arago@arago-project.org
> >> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >> >_______________________________________________
> >> >meta-arago mailing list
> >> >meta-arago@arago-project.org
> >> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >> _______________________________________________
> >> meta-arago mailing list
> >> meta-arago@arago-project.org
> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:37             ` Denys Dmytriyenko
@ 2013-11-11 19:42               ` Maupin, Chase
  2013-11-11 20:23                 ` Denys Dmytriyenko
  0 siblings, 1 reply; 17+ messages in thread
From: Maupin, Chase @ 2013-11-11 19:42 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago, Cooper Jr., Franklin

>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Monday, November 11, 2013 1:38 PM
>To: Maupin, Chase
>Cc: meta-arago@arago-project.org; Cooper Jr., Franklin
>Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
>qa-utils to test packages
>
>On Mon, Nov 11, 2013 at 07:31:40PM +0000, Maupin, Chase wrote:
>> >-----Original Message-----
>> >From: Dmytriyenko, Denys
>> >Sent: Monday, November 11, 2013 1:27 PM
>> >To: Maupin, Chase
>> >Cc: Cooper Jr., Franklin; meta-arago@arago-project.org
>> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-
>pm-
>> >qa-utils to test packages
>> >
>> >AFAIK, ltp-ddt in meta-oe is very old and hasn't been updated
>in
>> >years. I
>> >doubt that particular one had any thermal features.
>> >
>> >It should be Ok to add this dependency in meta-arago in
>bbappend,
>> >once these
>> >recipes land in meta-linaro, since we already have such
>> >dependency.
>>
>> Any idea who to work with for meta-linaro?
>>
>> And can't this dependency be added now since even before it
>lands in
>> meta-linaro it will be in meta-arago?
>
>Try linaro-dev@lists.linaro.org:
>http://lists.linaro.org/mailman/listinfo/linaro-dev
>
>Fathi Boudra has been responsive lately... Not sure if Koen will
>own that
>layer now. Either way, sending to the list is best, just add
>[meta-linaro]
>prefix...

Thanks.  As for this patch, how does it look to you before I send it on?

>
>
>> >On Mon, Nov 11, 2013 at 07:22:27PM +0000, Maupin, Chase wrote:
>> >> Denys,
>> >>
>> >> I could use some advice here though.  Ltp-ddt sits in meta-
>> >openembedded so
>> >> even if we get the pm-utils into meta-linaro we still should
>not
>> >introduce
>> >> this dependency between layers right?
>> >>
>> >> However, we do append ltp-ddt in meta-arago so if we
>introduce
>> >this
>> >> dependency there would that be an issue?
>> >>
>> >> What do you think about how to handle this?
>> >>
>> >> >-----Original Message-----
>> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-
>arago-
>> >> >bounces@arago-project.org] On Behalf Of Maupin, Chase
>> >> >Sent: Monday, November 11, 2013 1:19 PM
>> >> >To: Cooper Jr., Franklin; meta-arago@arago-project.org
>> >> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add
>linaro-
>> >pm-
>> >> >qa-utils to test packages
>> >> >
>> >> >Good point.
>> >> >
>> >> >Sincerely,
>> >> >Chase Maupin
>> >> >Integration Team Manager
>> >> >Linux Core Product Development
>> >> >e-mail: chase.maupin@ti.com
>> >> >phone: (214) 567-2950
>> >> >
>> >> >For support:
>> >> >Forums - http://community.ti.com/forums/
>> >> >Wiki - http://wiki.davincidsp.com/
>> >> >
>> >> >
>> >> >>-----Original Message-----
>> >> >>From: Cooper Jr., Franklin
>> >> >>Sent: Monday, November 11, 2013 12:54 PM
>> >> >>To: Maupin, Chase; meta-arago@arago-project.org
>> >> >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add
>linaro-
>> >pm-
>> >> >>qa-utils to test packages
>> >> >>
>> >> >>The current patch is fine as is but should there be another
>> >patch
>> >> >>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
>> >> >>
>> >> >>> -----Original Message-----
>> >> >>> From: meta-arago-bounces@arago-project.org [mailto:meta-
>> >arago-
>> >> >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
>> >> >>> Sent: Monday, November 11, 2013 11:07 AM
>> >> >>> To: meta-arago@arago-project.org
>> >> >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-
>pm-
>> >qa-
>> >> >>utils to test
>> >> >>> packages
>> >> >>>
>> >> >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> >> >>> ---
>> >> >>>  .../packagegroups/packagegroup-arago-test.bb       |
>3
>> >++-
>> >> >>>  1 files changed, 2 insertions(+), 1 deletions(-)
>> >> >>>
>> >> >>> diff --git a/meta-arago-distro/recipes-
>> >> >>core/packagegroups/packagegroup-
>> >> >>> arago-test.bb b/meta-arago-distro/recipes-
>> >> >>core/packagegroups/packagegroup-
>> >> >>> arago-test.bb
>> >> >>> index 35fa627..58ecd83 100644
>> >> >>> --- a/meta-arago-distro/recipes-
>> >> >core/packagegroups/packagegroup-
>> >> >>arago-
>> >> >>> test.bb
>> >> >>> +++ b/meta-arago-distro/recipes-
>> >> >core/packagegroups/packagegroup-
>> >> >>arago-
>> >> >>> test.bb
>> >> >>> @@ -1,6 +1,6 @@
>> >> >>>  DESCRIPTION = "Extended task to get System Test specific
>> >apps"
>> >> >>>  LICENSE = "MIT"
>> >> >>> -PR = "r9"
>> >> >>> +PR = "r10"
>> >> >>>
>> >> >>>  inherit packagegroup
>> >> >>>
>> >> >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
>> >> >>>  ARAGO_TI_TEST = "\
>> >> >>>      ltp-ddt \
>> >> >>>      input-utils \
>> >> >>> +    linaro-pm-qa-utils \
>> >> >>>      "
>> >> >>>
>> >> >>>  ARAGO_TI_TEST_append_omap-a15 = " \
>> >> >>> --
>> >> >>> 1.7.0.4
>> >> >>>
>> >> >>> _______________________________________________
>> >> >>> meta-arago mailing list
>> >> >>> meta-arago@arago-project.org
>> >> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-
>arago
>> >> >_______________________________________________
>> >> >meta-arago mailing list
>> >> >meta-arago@arago-project.org
>> >> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>> >> _______________________________________________
>> >> meta-arago mailing list
>> >> meta-arago@arago-project.org
>> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>> >>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>>


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

* Re: [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages
  2013-11-11 19:42               ` Maupin, Chase
@ 2013-11-11 20:23                 ` Denys Dmytriyenko
  0 siblings, 0 replies; 17+ messages in thread
From: Denys Dmytriyenko @ 2013-11-11 20:23 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago, Cooper Jr., Franklin

On Mon, Nov 11, 2013 at 07:42:21PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: Dmytriyenko, Denys
> >Sent: Monday, November 11, 2013 1:38 PM
> >To: Maupin, Chase
> >Cc: meta-arago@arago-project.org; Cooper Jr., Franklin
> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-pm-
> >qa-utils to test packages
> >
> >On Mon, Nov 11, 2013 at 07:31:40PM +0000, Maupin, Chase wrote:
> >> >-----Original Message-----
> >> >From: Dmytriyenko, Denys
> >> >Sent: Monday, November 11, 2013 1:27 PM
> >> >To: Maupin, Chase
> >> >Cc: Cooper Jr., Franklin; meta-arago@arago-project.org
> >> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add linaro-
> >pm-
> >> >qa-utils to test packages
> >> >
> >> >AFAIK, ltp-ddt in meta-oe is very old and hasn't been updated
> >in
> >> >years. I
> >> >doubt that particular one had any thermal features.
> >> >
> >> >It should be Ok to add this dependency in meta-arago in
> >bbappend,
> >> >once these
> >> >recipes land in meta-linaro, since we already have such
> >> >dependency.
> >>
> >> Any idea who to work with for meta-linaro?
> >>
> >> And can't this dependency be added now since even before it
> >lands in
> >> meta-linaro it will be in meta-arago?
> >
> >Try linaro-dev@lists.linaro.org:
> >http://lists.linaro.org/mailman/listinfo/linaro-dev
> >
> >Fathi Boudra has been responsive lately... Not sure if Koen will
> >own that
> >layer now. Either way, sending to the list is best, just add
> >[meta-linaro]
> >prefix...
> 
> Thanks.  As for this patch, how does it look to you before I send it on?

Seem reasonable to me. Will you be sending input-utils to meta-oe or keep it 
local?


> >> >On Mon, Nov 11, 2013 at 07:22:27PM +0000, Maupin, Chase wrote:
> >> >> Denys,
> >> >>
> >> >> I could use some advice here though.  Ltp-ddt sits in meta-
> >> >openembedded so
> >> >> even if we get the pm-utils into meta-linaro we still should
> >not
> >> >introduce
> >> >> this dependency between layers right?
> >> >>
> >> >> However, we do append ltp-ddt in meta-arago so if we
> >introduce
> >> >this
> >> >> dependency there would that be an issue?
> >> >>
> >> >> What do you think about how to handle this?
> >> >>
> >> >> >-----Original Message-----
> >> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-
> >arago-
> >> >> >bounces@arago-project.org] On Behalf Of Maupin, Chase
> >> >> >Sent: Monday, November 11, 2013 1:19 PM
> >> >> >To: Cooper Jr., Franklin; meta-arago@arago-project.org
> >> >> >Subject: Re: [meta-arago] [PATCH 4/4] arago-test: add
> >linaro-
> >> >pm-
> >> >> >qa-utils to test packages
> >> >> >
> >> >> >Good point.
> >> >> >
> >> >> >Sincerely,
> >> >> >Chase Maupin
> >> >> >Integration Team Manager
> >> >> >Linux Core Product Development
> >> >> >e-mail: chase.maupin@ti.com
> >> >> >phone: (214) 567-2950
> >> >> >
> >> >> >For support:
> >> >> >Forums - http://community.ti.com/forums/
> >> >> >Wiki - http://wiki.davincidsp.com/
> >> >> >
> >> >> >
> >> >> >>-----Original Message-----
> >> >> >>From: Cooper Jr., Franklin
> >> >> >>Sent: Monday, November 11, 2013 12:54 PM
> >> >> >>To: Maupin, Chase; meta-arago@arago-project.org
> >> >> >>Subject: RE: [meta-arago] [PATCH 4/4] arago-test: add
> >linaro-
> >> >pm-
> >> >> >>qa-utils to test packages
> >> >> >>
> >> >> >>The current patch is fine as is but should there be another
> >> >patch
> >> >> >>that makes ltp-ddt RDEPENDS on linaro-pm-qa-utils?
> >> >> >>
> >> >> >>> -----Original Message-----
> >> >> >>> From: meta-arago-bounces@arago-project.org [mailto:meta-
> >> >arago-
> >> >> >>> bounces@arago-project.org] On Behalf Of Maupin, Chase
> >> >> >>> Sent: Monday, November 11, 2013 11:07 AM
> >> >> >>> To: meta-arago@arago-project.org
> >> >> >>> Subject: [meta-arago] [PATCH 4/4] arago-test: add linaro-
> >pm-
> >> >qa-
> >> >> >>utils to test
> >> >> >>> packages
> >> >> >>>
> >> >> >>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> >> >> >>> ---
> >> >> >>>  .../packagegroups/packagegroup-arago-test.bb       |
> >3
> >> >++-
> >> >> >>>  1 files changed, 2 insertions(+), 1 deletions(-)
> >> >> >>>
> >> >> >>> diff --git a/meta-arago-distro/recipes-
> >> >> >>core/packagegroups/packagegroup-
> >> >> >>> arago-test.bb b/meta-arago-distro/recipes-
> >> >> >>core/packagegroups/packagegroup-
> >> >> >>> arago-test.bb
> >> >> >>> index 35fa627..58ecd83 100644
> >> >> >>> --- a/meta-arago-distro/recipes-
> >> >> >core/packagegroups/packagegroup-
> >> >> >>arago-
> >> >> >>> test.bb
> >> >> >>> +++ b/meta-arago-distro/recipes-
> >> >> >core/packagegroups/packagegroup-
> >> >> >>arago-
> >> >> >>> test.bb
> >> >> >>> @@ -1,6 +1,6 @@
> >> >> >>>  DESCRIPTION = "Extended task to get System Test specific
> >> >apps"
> >> >> >>>  LICENSE = "MIT"
> >> >> >>> -PR = "r9"
> >> >> >>> +PR = "r10"
> >> >> >>>
> >> >> >>>  inherit packagegroup
> >> >> >>>
> >> >> >>> @@ -21,6 +21,7 @@ ARAGO_TEST = "\
> >> >> >>>  ARAGO_TI_TEST = "\
> >> >> >>>      ltp-ddt \
> >> >> >>>      input-utils \
> >> >> >>> +    linaro-pm-qa-utils \
> >> >> >>>      "
> >> >> >>>
> >> >> >>>  ARAGO_TI_TEST_append_omap-a15 = " \
> >> >> >>> --
> >> >> >>> 1.7.0.4
> >> >> >>>
> >> >> >>> _______________________________________________
> >> >> >>> meta-arago mailing list
> >> >> >>> meta-arago@arago-project.org
> >> >> >>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-
> >arago
> >> >> >_______________________________________________
> >> >> >meta-arago mailing list
> >> >> >meta-arago@arago-project.org
> >> >> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >> >> _______________________________________________
> >> >> meta-arago mailing list
> >> >> meta-arago@arago-project.org
> >> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >> >>
> >> _______________________________________________
> >> meta-arago mailing list
> >> meta-arago@arago-project.org
> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> >>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

end of thread, other threads:[~2013-11-11 20:23 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-11 17:07 [PATCH 1/4] input-utils: Add the input-utils package recipe Chase Maupin
2013-11-11 17:07 ` [PATCH 2/4] arago-test: Add input-utils to test packages Chase Maupin
2013-11-11 17:07 ` [PATCH 3/4] linaro-pm-qa-utils: Add utils used by Linaro PM scripts Chase Maupin
2013-11-11 18:56   ` Cooper Jr., Franklin
2013-11-11 19:02     ` Maupin, Chase
2013-11-11 17:07 ` [PATCH 4/4] arago-test: add linaro-pm-qa-utils to test packages Chase Maupin
2013-11-11 18:53   ` Cooper Jr., Franklin
2013-11-11 19:18     ` Maupin, Chase
2013-11-11 19:22       ` Maupin, Chase
2013-11-11 19:26         ` Cooper Jr., Franklin
2013-11-11 19:27           ` Denys Dmytriyenko
2013-11-11 19:28             ` Cooper Jr., Franklin
2013-11-11 19:27         ` Denys Dmytriyenko
2013-11-11 19:31           ` Maupin, Chase
2013-11-11 19:37             ` Denys Dmytriyenko
2013-11-11 19:42               ` Maupin, Chase
2013-11-11 20:23                 ` Denys Dmytriyenko

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.