All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly
@ 2013-01-24 14:21 Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 33/47] libav: Disable any mp3 or mpeg2 related features Franklin S. Cooper Jr
                   ` (15 more replies)
  0 siblings, 16 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Remove gst-plugins-ugly due to commercial license restrictions

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../tasks/task-arago-gst-sdk-target.bb             |    3 +--
 .../recipes-core/tasks/task-arago-gst.bb           |    6 ++----
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb b/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
index 06b7184..3a737b1 100644
--- a/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "Task to build and install header and libs in sdk"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-PR = "r1"
+PR = "r2"
 
 inherit task
 
@@ -10,5 +10,4 @@ RDEPENDS_${PN} = "\
     gst-plugins-base-dev \
     gst-plugins-good-dev \
     gst-plugins-bad-dev \
-    gst-plugins-ugly-dev \
 "
diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb b/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
index b1b8f0b..4ff5494 100644
--- a/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
+++ b/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "Task to add gstreamer and gstreamer plugins"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-PR = "r1"
+PR = "r2"
 
 inherit task
 
@@ -10,12 +10,10 @@ GSTREAMER = " \
     gst-plugins-base \
     gst-plugins-good \
     gst-plugins-bad \
-    gst-plugins-ugly \
     gst-plugins-base-meta \
     gst-plugins-good-meta \
     gst-plugins-bad-meta \
-    gst-plugins-ugly-meta \
-    "
+"
 
 RDEPENDS_${PN} = "\
     ${GSTREAMER} \
-- 
1.7.0.4



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

* [PATCH 33/47] libav: Disable any mp3 or mpeg2 related features
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 34/47] gst-plugins-bad: Disable any feature based on mpeg2 or mp3 Franklin S. Cooper Jr
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Disable any features based on mpeg2 or mp3

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-multimedia/libav/libav_0.7.4.bbappend  |   25 ++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-distro/recipes-multimedia/libav/libav_0.7.4.bbappend

diff --git a/meta-arago-distro/recipes-multimedia/libav/libav_0.7.4.bbappend b/meta-arago-distro/recipes-multimedia/libav/libav_0.7.4.bbappend
new file mode 100644
index 0000000..525b546
--- /dev/null
+++ b/meta-arago-distro/recipes-multimedia/libav/libav_0.7.4.bbappend
@@ -0,0 +1,25 @@
+PR_append = "-arago0"
+
+# Disable features that have potential commercial licensing restrictions
+EXTRA_OECONF += "\
+    --disable-encoder=libmp3lame \
+    --disable-decoder=mp3 \
+    --disable-decoder=mp3adu \
+    --disable-decoder=mp3adufloat \
+    --disable-decoder=mp3float \
+    --disable-decoder=mp3on4 \
+    --disable-decoder=mp3on4float \
+    --disable-muxer=mp3 \
+    --disable-demuxer=mp3 \
+    --disable-bsf=mp3_header_decompress \
+    --disable-bsf=mp3_header_compress   \
+                                 \
+    --disable-encoder=mpeg2video \
+    --disable-decoder=mpeg2video \
+    --disable-hwaccel=mpeg2_vaapi \
+    --disable-hwaccel=mpeg2_dxva2 \
+    --disable-muxer=mpeg2dvd \
+    --disable-muxer=mpeg2svcd \
+    --disable-muxer=mpeg2video \
+    --disable-muxer=mpeg2vob \
+"
-- 
1.7.0.4



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

* [PATCH 34/47] gst-plugins-bad: Disable any feature based on mpeg2 or mp3
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 33/47] libav: Disable any mp3 or mpeg2 related features Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 35/47] arago.conf: Remove commercial license whitelisting Franklin S. Cooper Jr
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../gstreamer/gst-plugins-bad_0.10.23.bbappend     |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/meta-arago-distro/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend b/meta-arago-distro/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
index 8b1e588..8ae8050 100644
--- a/meta-arago-distro/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
+++ b/meta-arago-distro/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
@@ -1,4 +1,4 @@
-PR_append = "-arago2"
+PR_append = "-arago3"
 
 # look for files in this layer first
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
@@ -16,3 +16,9 @@ SRC_URI += "file://0001-gstfbdevsink-Fix-depth-value-for-GST_VIDEO_CAPS_RGB_.pat
 # Add faad has a dependency to insure gst-plugins-bad-faad is built.
 DEPENDS += "faad2"
 RDEPENDS_${PN}-faad += "libfaad"
+
+# Disable features that have potential commercial licensing restrictions
+EXTRA_OECONF += "\
+    --disable-mpeg2enc \
+    --disable-acm \
+"
-- 
1.7.0.4



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

* [PATCH 35/47] arago.conf: Remove commercial license whitelisting
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 33/47] libav: Disable any mp3 or mpeg2 related features Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 34/47] gst-plugins-bad: Disable any feature based on mpeg2 or mp3 Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 36/47] arago-amsdk-image: use gz compression instead of bz2 Franklin S. Cooper Jr
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Remove whitelisting for recipes with a commercial licence flag due to
  commercial licensing restrictions.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf |   12 ++++--------
 1 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index e8265a0..c0e06ae 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -85,11 +85,7 @@ POLKITAUTH = ""
 # Enable generation of source packages for SDKs
 require arago-source-ipk.conf
 
-# Whitelist several recipes that have commercial licenses
-# Need to verify with legal that the following recipes are ok to distribute
-# with the SDK
-LICENSE_FLAGS_WHITELIST = "\
-    commercial_gst-plugins-ugly \
-    commercial_mpeg2dec \
-    commercial_lame \
-"
+# Set ENTERPRISE_DISTRO flag to insure that recipes that have been flagged 
+# do not attempt to enable features that have potential commercial
+# licensing issues.
+ENTERPRISE_DISTRO = "1"
-- 
1.7.0.4



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

* [PATCH 36/47] arago-amsdk-image: use gz compression instead of bz2
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (2 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 35/47] arago.conf: Remove commercial license whitelisting Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 37/47] tisdk-image: Package gz file systems by default Franklin S. Cooper Jr
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago

From: Chase Maupin <Chase.Maupin@ti.com>

* Use gzip compression instead of bzip2 to save on extraction
  time.
* This has a tradeoff in file size but using bz2 takes too long
  to extract on many systems leading to a slow installation.

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-core/images/arago-amsdk-image.bb       |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-arago-distro/recipes-core/images/arago-amsdk-image.bb b/meta-arago-distro/recipes-core/images/arago-amsdk-image.bb
index ccb25b1..9ce7754 100644
--- a/meta-arago-distro/recipes-core/images/arago-amsdk-image.bb
+++ b/meta-arago-distro/recipes-core/images/arago-amsdk-image.bb
@@ -1,7 +1,7 @@
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
 
-IMAGE_FSTYPES = "tar.bz2"
+IMAGE_FSTYPES = "tar.gz"
 
 inherit tisdk-image
 
-- 
1.7.0.4



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

* [PATCH 37/47] tisdk-image: Package gz file systems by default
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (3 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 36/47] arago-amsdk-image: use gz compression instead of bz2 Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 38/47] tisdk-rootfs-image: Build on top of arago-base-tisdk-image Franklin S. Cooper Jr
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago

From: Chase Maupin <Chase.Maupin@ti.com>

* Allow packaging tar.gz files as well for the root file system
  if they exist.
* Usually only one tar.gz or tar.bz2 should be set to build but
  if both are there they will get packaged.  To set one or the
  other you should set IMAGE_FSTYPES in the machine.conf file
  for your machine.

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 meta-arago-distro/classes/tisdk-image.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-arago-distro/classes/tisdk-image.bbclass b/meta-arago-distro/classes/tisdk-image.bbclass
index 3222d0d..0177d7f 100644
--- a/meta-arago-distro/classes/tisdk-image.bbclass
+++ b/meta-arago-distro/classes/tisdk-image.bbclass
@@ -37,7 +37,7 @@ TISDK_TOOLCHAIN_PATH ?= "linux-devkit"
 TISDK_TOOLCHAIN ?= "meta-toolchain-arago"
 
 # List of the type of target file system images we want to include
-TARGET_IMAGE_TYPES ?= "tar.bz2 ubi"
+TARGET_IMAGE_TYPES ?= "tar.bz2 tar.gz ubi"
 
 # If EXTRA_TISDK_FILES points to a valid directory then all the contents
 # of that directory will be added to the SDK using the same directory
-- 
1.7.0.4



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

* [PATCH 38/47] tisdk-rootfs-image: Build on top of arago-base-tisdk-image
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (4 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 37/47] tisdk-image: Package gz file systems by default Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 39/47] tisdk-image: Fix missing header in SW manifest Franklin S. Cooper Jr
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Tisdk-rootfs-image builds on top of arago-base-tisdk-image.
* Require arago-base-tisdk-image.bb instead of arago-image.inc

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-core/images/tisdk-rootfs-image.bb      |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb b/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb
index 368ee51..35236ff 100644
--- a/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb
+++ b/meta-arago-distro/recipes-core/images/tisdk-rootfs-image.bb
@@ -1,13 +1,10 @@
 # Arago TI SDK filesystem image
 COMPATIBLE_MACHINE = "omap3|omapl138|ti33x"
 
-require arago-image.inc
+require arago-base-tisdk-image.bb
 
 IMAGE_INSTALL += "\
-    task-arago-base \
-    task-arago-console \
     task-arago-test \
-    task-arago-base-tisdk \
     task-arago-tisdk-graphics \
     task-arago-tisdk-qte \
     task-arago-tisdk-addons \
-- 
1.7.0.4



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

* [PATCH 39/47] tisdk-image: Fix missing header in SW manifest
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (5 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 38/47] tisdk-rootfs-image: Build on top of arago-base-tisdk-image Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement Franklin S. Cooper Jr
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago

From: Chase Maupin <Chase.Maupin@ti.com>

* Added the missing table header text in the SW manifest that
  is generated as part of the SDK build.

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 meta-arago-distro/classes/tisdk-image.bbclass |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/meta-arago-distro/classes/tisdk-image.bbclass b/meta-arago-distro/classes/tisdk-image.bbclass
index 0177d7f..bbccdc4 100644
--- a/meta-arago-distro/classes/tisdk-image.bbclass
+++ b/meta-arago-distro/classes/tisdk-image.bbclass
@@ -272,6 +272,11 @@ echo "
 sw_manifest_toolchain_target() {
     opkg_dir="${IMAGE_ROOTFS}/${TISDK_TOOLCHAIN_PATH}/arm-arago-linux-gnueabi/var/lib/opkg/info"
 
+echo "
+<h2><u>Development Libraries Installed on Host</u></h2>
+<p>This table describes software libraries and headers that are installed on the development host and used during the development of software to run on the target.  Some of this software may be licensed under GPLv3.  Customers should be careful when linking against these libraries to make sure they are complying with the license(s) of the library</p>
+" >> ${SW_MANIFEST_FILE}
+
     generate_sw_manifest_table $opkg_dir
 }
 
-- 
1.7.0.4



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

* [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (6 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 39/47] tisdk-image: Fix missing header in SW manifest Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-25 19:32   ` Denys Dmytriyenko
  2013-01-24 14:21 ` [PATCH 41/47] ti-tisdk-setup: Switch back filesystem file type Franklin S. Cooper Jr
                   ` (7 subsequent siblings)
  15 siblings, 1 reply; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* On 32bit systems, the dirname statement sometimes return an empty string.
* Replace dirname with several statements that provide the same result.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-core/meta/meta-toolchain-arago.bb      |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
index a9d07b6..332fe48 100644
--- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
+++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
@@ -4,7 +4,7 @@ TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-${ARMPKGARCH}-${TARGET_OS}-sdk-${SDK_ARCH}"
 
 require recipes-core/meta/meta-toolchain.bb
 
-PR = "r13"
+PR = "r14"
 
 SDKTARGETSYSROOT = "${SDKPATH}/${ARAGO_TARGET_SYS}"
 
@@ -59,7 +59,12 @@ toolchain_create_sdk_env_script () {
 create_shell_stub () {
 	i=$1
 	mv $i $i.real
-	printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n\t. \x60dirname \x24BASH_SOURCE\x60/../environment-setup\nfi\n" > $i
+	printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n" > $i
+	printf "\tfilename\x3D\x60echo \x24\x7BBASH_SOURCE\x23\x23\x2A\x2F\x7D\x60\n" >> $i
+	printf "\tdirname\x3D\x24\x7BBASH_SOURCE\x2F\x25\x24filename\x2F\x7D\n" >> $i
+	printf "\t\x2E \x24dirname\x2E\x2E\x2Fenvironment-setup\n" >> $i
+	printf "fi\n" >> $i
+
 	if [ "$2" == "yes" ]; then
 		echo 'export PYTHONHOME=$SDK_PATH' >> $i
 		echo 'export PYTHONPATH=lib/python2.7' >> $i
-- 
1.7.0.4



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

* [PATCH 41/47] ti-tisdk-setup: Switch back filesystem file type
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (7 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks Franklin S. Cooper Jr
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Pull in latest commit that switches the expected filesystem file type from
  tar.bz2 to tar.gz.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
index 96df155..4e63986 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
@@ -4,10 +4,10 @@ LIC_FILES_CHKSUM = "file://setup.sh;beginline=3;endline=31;md5=fc4b04a33df6d892c
 
 COMPATIBLE_MACHINE = "am37x-evm|am3517-evm|beagleboard|ti33x|am180x-evm"
 
-PR = "r1"
+PR = "r2"
 
 BRANCH ?= "master"
-SRCREV = "b7d67ebb3c3267248210e2e66b1bad273747f9b6"
+SRCREV = "49b4f5b891a4bb96990924ce6431e0c01f9f25d4"
 SRC_URI = "git://arago-project.org/git/projects/tisdk-setup-scripts.git;protocol=git;branch=${BRANCH}"
 
 S = "${WORKDIR}/git/"
-- 
1.7.0.4



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

* [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (8 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 41/47] ti-tisdk-setup: Switch back filesystem file type Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-25 19:38   ` Denys Dmytriyenko
  2013-01-24 14:21 ` [PATCH 43/47] Makefile_qml-playground: Renamed to Makefile_quick-playground Franklin S. Cooper Jr
                   ` (5 subsequent siblings)
  15 siblings, 1 reply; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: dgerlach

From: dgerlach <d-gerlach@ti.com>

* All references to am-benchmarks changed to arm-benchmarks for Makefile_arm-benchmarks

ti-tisdk-makefile: Modified to use Makefile_arm-benchmarks rather than Makefile_am-benchmarks
---
 .../ti-tisdk-makefile/Makefile_am-benchmarks       |   24 --------------------
 .../ti-tisdk-makefile/Makefile_arm-benchmarks      |   24 ++++++++++++++++++++
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |    6 ++--
 3 files changed, 27 insertions(+), 27 deletions(-)
 delete mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks
 create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks
deleted file mode 100644
index ba0e0c6..0000000
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks
+++ /dev/null
@@ -1,24 +0,0 @@
-# am-benchmarks build targets
-am-benchmarks:
-	@echo =============================
-	@echo    Building AM Benchmarks
-	@echo =============================
-	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make
-
-am-benchmarks_clean:
-	@echo =============================
-	@echo    Cleaning AM Benchmarks
-	@echo =============================
-	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make clean
-
-am-benchmarks_install:
-	@echo ==============================================
-	@echo   Installing AM Benchmarks - Release version
-	@echo ==============================================
-	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make install
-
-am-benchmarks_install_debug:
-	@echo ============================================
-	@echo   Installing AM Benchmarks - Debug Version
-	@echo ============================================
-	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
new file mode 100644
index 0000000..0447ea5
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
@@ -0,0 +1,24 @@
+# arm-benchmarks build targets
+arm-benchmarks:
+	@echo =============================
+	@echo    Building ARM Benchmarks
+	@echo =============================
+	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make
+
+arm-benchmarks_clean:
+	@echo =============================
+	@echo    Cleaning ARM Benchmarks
+	@echo =============================
+	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make clean
+
+arm-benchmarks_install:
+	@echo ==============================================
+	@echo   Installing ARM Benchmarks - Release version
+	@echo ==============================================
+	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make install
+
+arm-benchmarks_install_debug:
+	@echo ============================================
+	@echo   Installing ARM Benchmarks - Debug Version
+	@echo ============================================
+	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index 6208f21..a276140 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -16,7 +16,7 @@ SRC_URI = "\
     file://Makefile_linux \
     file://Makefile_u-boot-legacy \
     file://Makefile_matrix-gui \
-    file://Makefile_am-benchmarks \
+    file://Makefile_arm-benchmarks \
     file://Makefile_am-sysinfo \
     file://Makefile_av-examples \
     file://Makefile_u-boot-spl \
@@ -29,11 +29,11 @@ SRC_URI = "\
     file://Makefile_wireless \
 "
 
-PR = "r1"
+PR = "r2"
 
 MAKEFILES_COMMON = "linux \
                     matrix-gui \
-                    am-benchmarks \
+                    arm-benchmarks \
                     am-sysinfo \
                     matrix-gui-browser \
                     refresh-screen \
-- 
1.7.0.4



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

* [PATCH 43/47] Makefile_qml-playground: Renamed to Makefile_quick-playground
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (9 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 44/47] busybox: Enable rev utility Franklin S. Cooper Jr
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: dgerlach

From: dgerlach <d-gerlach@ti.com>

ti-tisdk-makefile: Changed all references to qml-playground to quick-playground

* Changed references to qml-playground to quick-playground in Makefile_quick-playground
---
 .../ti-tisdk-makefile/Makefile_qml-playground      |   24 --------------------
 .../ti-tisdk-makefile/Makefile_quick-playground    |   24 ++++++++++++++++++++
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |    8 +++---
 3 files changed, 28 insertions(+), 28 deletions(-)
 delete mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qml-playground
 create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qml-playground b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qml-playground
deleted file mode 100644
index 4d8709a..0000000
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qml-playground
+++ /dev/null
@@ -1,24 +0,0 @@
-# QML Playground build targets
-qml-playground:
-	@echo =================================
-	@echo    Building QML Playground App
-	@echo =================================
-	@cd example-applications; cd `find . -name "*qml-playground*"`; make -f Makefile.build release
-
-qml-playground_clean:
-	@echo =================================
-	@echo    Cleaning QML Playground App
-	@echo =================================
-	@cd example-applications; cd `find . -name "*qml-playground*"`; make -f Makefile.build clean
-
-qml-playground_install:
-	@echo ====================================================
-	@echo   Installing QML Playground App - Release version
-	@echo ====================================================
-	@cd example-applications; cd `find . -name "*qml-playground*"`; make -f Makefile.build install
-
-qml-playground_install_debug:
-	@echo ==================================================
-	@echo   Installing QML Playground App - Debug version
-	@echo ==================================================
-	@cd example-applications; cd `find . -name "*qml-playground*"`; make -f Makefile.build install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground
new file mode 100644
index 0000000..06cbd49
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground
@@ -0,0 +1,24 @@
+# Quick Playground build targets
+quick-playground:
+	@echo =================================
+	@echo    Building Quick Playground App
+	@echo =================================
+	@cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build release
+
+quick-playground_clean:
+	@echo =================================
+	@echo    Cleaning Quick Playground App
+	@echo =================================
+	@cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build clean
+
+quick-playground_install:
+	@echo ====================================================
+	@echo   Installing Quick Playground App - Release version
+	@echo ====================================================
+	@cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build install
+
+quick-playground_install_debug:
+	@echo ==================================================
+	@echo   Installing Quick Playground App - Debug version
+	@echo ==================================================
+	@cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index a276140..4691df4 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -25,11 +25,11 @@ SRC_URI = "\
     file://Makefile_pru \
     file://Makefile_ti-ocf-crypto-module \
     file://Makefile_qt-tstat \
-    file://Makefile_qml-playground \
+    file://Makefile_quick-playground \
     file://Makefile_wireless \
 "
 
-PR = "r2"
+PR = "r3"
 
 MAKEFILES_COMMON = "linux \
                     matrix-gui \
@@ -42,7 +42,7 @@ MAKEFILES_COMMON = "linux \
 
 # Add device specific make targets
 MAKEFILES_omap3 += "u-boot-spl \
-                    qml-playground \
+                    quick-playground \
 "
 MAKEFILES_am37x-evm += "av-examples \
                         ti-ocf-crypto-module \
@@ -52,7 +52,7 @@ MAKEFILES_am3517-evm += "av-examples \
                          ti-ocf-crypto-module \
 "
 MAKEFILES_ti33x += "u-boot-spl \
-                    qml-playground wireless \
+                    quick-playground wireless \
 "
 MAKEFILES_am180x-evm += "pru \
                          u-boot-legacy \
-- 
1.7.0.4



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

* [PATCH 44/47] busybox: Enable rev utility
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (10 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 43/47] Makefile_qml-playground: Renamed to Makefile_quick-playground Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 45/47] qt-tstat: Remove proxy settings Franklin S. Cooper Jr
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Enabling rev utility that is used by some test scripts.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-core/busybox/busybox/defconfig         |    2 +-
 .../recipes-core/busybox/busybox_1.19.4.bbappend   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-core/busybox/busybox/defconfig b/meta-arago-distro/recipes-core/busybox/busybox/defconfig
index f681eb7..7d3c552 100644
--- a/meta-arago-distro/recipes-core/busybox/busybox/defconfig
+++ b/meta-arago-distro/recipes-core/busybox/busybox/defconfig
@@ -518,7 +518,7 @@ CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
 # Linux System Utilities
 #
 # CONFIG_BLOCKDEV is not set
-# CONFIG_REV is not set
+CONFIG_REV=y
 # CONFIG_ACPID is not set
 # CONFIG_FEATURE_ACPID_COMPAT is not set
 # CONFIG_BLKID is not set
diff --git a/meta-arago-distro/recipes-core/busybox/busybox_1.19.4.bbappend b/meta-arago-distro/recipes-core/busybox/busybox_1.19.4.bbappend
index b2d2540..bee6201 100644
--- a/meta-arago-distro/recipes-core/busybox/busybox_1.19.4.bbappend
+++ b/meta-arago-distro/recipes-core/busybox/busybox_1.19.4.bbappend
@@ -1,7 +1,7 @@
 # look for files in this layer first
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-PR_append = "-arago4"
+PR_append = "-arago5"
 
 SRC_URI += " \
 	file://inetd \
-- 
1.7.0.4



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

* [PATCH 45/47] qt-tstat: Remove proxy settings
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (11 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 44/47] busybox: Enable rev utility Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 46/47] ti-tisdk-setup: Pull latest sources for create-sdcard fix Franklin S. Cooper Jr
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Remove default proxy settings from the application

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-qt/qt-apps/qt-tstat_2.0.bb             |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
index 143d0a2..9b9704c 100644
--- a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
+++ b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
@@ -10,10 +10,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=93a105adb99011afa5baee932b560714 \
 
 require recipes-core/matrix/matrix-gui-paths.inc
 
-PR = "r1"
+PR = "r2"
 
 BRANCH ?= "master"
-SRCREV = "429c802ea04c41f7b29efb89642828091fb83f9b"
+SRCREV = "1d3f0ecc0e9c9358166db94965b9075b5ae73723"
 
 SRC_URI = "git://gitorious.org/thermostat-demo/thermostat-demo.git;protocol=git"
 
-- 
1.7.0.4



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

* [PATCH 46/47] ti-tisdk-setup: Pull latest sources for create-sdcard fix
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (12 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 45/47] qt-tstat: Remove proxy settings Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 14:21 ` [PATCH 47/47] matrix-gui-apps-git.inc: Update Matrix v2 applications Franklin S. Cooper Jr
  2013-01-24 18:29 ` [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Denys Dmytriyenko
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago

From: Chase Maupin <Chase.Maupin@ti.com>

* Pull the latest sources to pickup a change in create-sdcard.sh
  to allow properly creating the rootfs in the case where there
  is both a .ubi and tar.gz file system in the SDK.

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
 .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
index 4e63986..92dceee 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb
@@ -4,10 +4,10 @@ LIC_FILES_CHKSUM = "file://setup.sh;beginline=3;endline=31;md5=fc4b04a33df6d892c
 
 COMPATIBLE_MACHINE = "am37x-evm|am3517-evm|beagleboard|ti33x|am180x-evm"
 
-PR = "r2"
+PR = "r3"
 
 BRANCH ?= "master"
-SRCREV = "49b4f5b891a4bb96990924ce6431e0c01f9f25d4"
+SRCREV = "9f013588bdeaaa5b24a0610d05cb8bb1e18e5e9c"
 SRC_URI = "git://arago-project.org/git/projects/tisdk-setup-scripts.git;protocol=git;branch=${BRANCH}"
 
 S = "${WORKDIR}/git/"
-- 
1.7.0.4



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

* [PATCH 47/47] matrix-gui-apps-git.inc: Update Matrix v2 applications
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (13 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 46/47] ti-tisdk-setup: Pull latest sources for create-sdcard fix Franklin S. Cooper Jr
@ 2013-01-24 14:21 ` Franklin S. Cooper Jr
  2013-01-24 18:29 ` [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Denys Dmytriyenko
  15 siblings, 0 replies; 23+ messages in thread
From: Franklin S. Cooper Jr @ 2013-01-24 14:21 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* Update Matrix v2 Audio Capture demo.
* Add check for soundcards
* Don't run demo if executed on the am335x starterkit

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-core/matrix/matrix-gui-apps-git.inc    |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
index 63e73f2..31fdf42 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
@@ -4,9 +4,9 @@ LICENSE_CHECKSUM = "LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9"
 LIC_FILES_CHKSUM := "file://../${LICENSE_CHECKSUM}"
 
 SRC_URI = "git://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}"
-SRCREV = "df5b70b2f7cd97148855fe4d0508789c710bcc4e"
+SRCREV = "24ed8977d232a6d706594a349549f481bd7087a4"
 BRANCH = "master"
-INC_PR = "r6"
+INC_PR = "r7"
 
 # Pull in the base package for installing matrix applications
 require matrix-gui-apps.inc
-- 
1.7.0.4



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

* Re: [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly
  2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
                   ` (14 preceding siblings ...)
  2013-01-24 14:21 ` [PATCH 47/47] matrix-gui-apps-git.inc: Update Matrix v2 applications Franklin S. Cooper Jr
@ 2013-01-24 18:29 ` Denys Dmytriyenko
  2013-01-24 18:44   ` Cooper Jr., Franklin
  15 siblings, 1 reply; 23+ messages in thread
From: Denys Dmytriyenko @ 2013-01-24 18:29 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago, Franklin S. Cooper Jr


So, what's with the 32/47 numbering? Is it a continuation of the previous 
series, that ended at 31/31? When properly done, the new series should have 
been a set of 16 patches from 1/16 to 16/16. Or, you should have re-submitted 
both sets in one series of 47 patches, if you wanted...

-- 
Denys


On Thu, Jan 24, 2013 at 08:21:06AM -0600, Franklin S. Cooper Jr wrote:
> * Remove gst-plugins-ugly due to commercial license restrictions
> 
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
>  .../tasks/task-arago-gst-sdk-target.bb             |    3 +--
>  .../recipes-core/tasks/task-arago-gst.bb           |    6 ++----
>  2 files changed, 3 insertions(+), 6 deletions(-)
> 
> diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb b/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
> index 06b7184..3a737b1 100644
> --- a/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
> +++ b/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
> @@ -1,7 +1,7 @@
>  DESCRIPTION = "Task to build and install header and libs in sdk"
>  LICENSE = "MIT"
>  LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
> -PR = "r1"
> +PR = "r2"
>  
>  inherit task
>  
> @@ -10,5 +10,4 @@ RDEPENDS_${PN} = "\
>      gst-plugins-base-dev \
>      gst-plugins-good-dev \
>      gst-plugins-bad-dev \
> -    gst-plugins-ugly-dev \
>  "
> diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb b/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
> index b1b8f0b..4ff5494 100644
> --- a/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
> +++ b/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
> @@ -1,7 +1,7 @@
>  DESCRIPTION = "Task to add gstreamer and gstreamer plugins"
>  LICENSE = "MIT"
>  LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
> -PR = "r1"
> +PR = "r2"
>  
>  inherit task
>  
> @@ -10,12 +10,10 @@ GSTREAMER = " \
>      gst-plugins-base \
>      gst-plugins-good \
>      gst-plugins-bad \
> -    gst-plugins-ugly \
>      gst-plugins-base-meta \
>      gst-plugins-good-meta \
>      gst-plugins-bad-meta \
> -    gst-plugins-ugly-meta \
> -    "
> +"
>  
>  RDEPENDS_${PN} = "\
>      ${GSTREAMER} \
> -- 
> 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] 23+ messages in thread

* Re: [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly
  2013-01-24 18:29 ` [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Denys Dmytriyenko
@ 2013-01-24 18:44   ` Cooper Jr., Franklin
  0 siblings, 0 replies; 23+ messages in thread
From: Cooper Jr., Franklin @ 2013-01-24 18:44 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

It's a new patch set built on top of my previously submitted patches.

I plan on submitting patch sets every so often and I didn't want things to start getting confusing by restarting the numbering until you we're caught up. I'm fine with doing that going forward or now if you want me to resubmit the patches.

On Jan 24, 2013, at 12:30 PM, "Dmytriyenko, Denys" <denys@ti.com> wrote:

> 
> So, what's with the 32/47 numbering? Is it a continuation of the previous 
> series, that ended at 31/31? When properly done, the new series should have 
> been a set of 16 patches from 1/16 to 16/16. Or, you should have re-submitted 
> both sets in one series of 47 patches, if you wanted...
> 
> -- 
> Denys
> 
> 
> On Thu, Jan 24, 2013 at 08:21:06AM -0600, Franklin S. Cooper Jr wrote:
>> * Remove gst-plugins-ugly due to commercial license restrictions
>> 
>> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
>> ---
>> .../tasks/task-arago-gst-sdk-target.bb             |    3 +--
>> .../recipes-core/tasks/task-arago-gst.bb           |    6 ++----
>> 2 files changed, 3 insertions(+), 6 deletions(-)
>> 
>> diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb b/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
>> index 06b7184..3a737b1 100644
>> --- a/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
>> +++ b/meta-arago-distro/recipes-core/tasks/task-arago-gst-sdk-target.bb
>> @@ -1,7 +1,7 @@
>> DESCRIPTION = "Task to build and install header and libs in sdk"
>> LICENSE = "MIT"
>> LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
>> -PR = "r1"
>> +PR = "r2"
>> 
>> inherit task
>> 
>> @@ -10,5 +10,4 @@ RDEPENDS_${PN} = "\
>>     gst-plugins-base-dev \
>>     gst-plugins-good-dev \
>>     gst-plugins-bad-dev \
>> -    gst-plugins-ugly-dev \
>> "
>> diff --git a/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb b/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
>> index b1b8f0b..4ff5494 100644
>> --- a/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
>> +++ b/meta-arago-distro/recipes-core/tasks/task-arago-gst.bb
>> @@ -1,7 +1,7 @@
>> DESCRIPTION = "Task to add gstreamer and gstreamer plugins"
>> LICENSE = "MIT"
>> LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
>> -PR = "r1"
>> +PR = "r2"
>> 
>> inherit task
>> 
>> @@ -10,12 +10,10 @@ GSTREAMER = " \
>>     gst-plugins-base \
>>     gst-plugins-good \
>>     gst-plugins-bad \
>> -    gst-plugins-ugly \
>>     gst-plugins-base-meta \
>>     gst-plugins-good-meta \
>>     gst-plugins-bad-meta \
>> -    gst-plugins-ugly-meta \
>> -    "
>> +"
>> 
>> RDEPENDS_${PN} = "\
>>     ${GSTREAMER} \
>> -- 
>> 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] 23+ messages in thread

* Re: [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement
  2013-01-24 14:21 ` [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement Franklin S. Cooper Jr
@ 2013-01-25 19:32   ` Denys Dmytriyenko
  2013-01-25 19:42     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 23+ messages in thread
From: Denys Dmytriyenko @ 2013-01-25 19:32 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago, Franklin S. Cooper Jr

On Thu, Jan 24, 2013 at 08:21:14AM -0600, Franklin S. Cooper Jr wrote:
> * On 32bit systems, the dirname statement sometimes return an empty string.
> * Replace dirname with several statements that provide the same result.

I know we discussed it before, but I'm still having a hard time comprehending 
the issue and the proposed "fix"... Why is it affecting only 32bit systems and 
why is it happening only sometimes? What are the other factors? And why 
splitting it in several lines instead of one "fixes" the problem?

Have you looked into it some more to understand the actual root cause?

-- 
Denys


> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
>  .../recipes-core/meta/meta-toolchain-arago.bb      |    9 +++++++--
>  1 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> index a9d07b6..332fe48 100644
> --- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> +++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> @@ -4,7 +4,7 @@ TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-${ARMPKGARCH}-${TARGET_OS}-sdk-${SDK_ARCH}"
>  
>  require recipes-core/meta/meta-toolchain.bb
>  
> -PR = "r13"
> +PR = "r14"
>  
>  SDKTARGETSYSROOT = "${SDKPATH}/${ARAGO_TARGET_SYS}"
>  
> @@ -59,7 +59,12 @@ toolchain_create_sdk_env_script () {
>  create_shell_stub () {
>  	i=$1
>  	mv $i $i.real
> -	printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n\t. \x60dirname \x24BASH_SOURCE\x60/../environment-setup\nfi\n" > $i
> +	printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n" > $i
> +	printf "\tfilename\x3D\x60echo \x24\x7BBASH_SOURCE\x23\x23\x2A\x2F\x7D\x60\n" >> $i
> +	printf "\tdirname\x3D\x24\x7BBASH_SOURCE\x2F\x25\x24filename\x2F\x7D\n" >> $i
> +	printf "\t\x2E \x24dirname\x2E\x2E\x2Fenvironment-setup\n" >> $i
> +	printf "fi\n" >> $i
> +
>  	if [ "$2" == "yes" ]; then
>  		echo 'export PYTHONHOME=$SDK_PATH' >> $i
>  		echo 'export PYTHONPATH=lib/python2.7' >> $i
> -- 
> 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] 23+ messages in thread

* Re: [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks
  2013-01-24 14:21 ` [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks Franklin S. Cooper Jr
@ 2013-01-25 19:38   ` Denys Dmytriyenko
  2013-01-25 19:53     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 23+ messages in thread
From: Denys Dmytriyenko @ 2013-01-25 19:38 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago, dgerlach

On Thu, Jan 24, 2013 at 08:21:16AM -0600, Franklin S. Cooper Jr wrote:
> From: dgerlach <d-gerlach@ti.com>

^^^^^ Can we get the correct From: line here?

And while we are at it, Franklin, do you want to set your own user.email in 
git-config with the TI email, so your From: line matches your Signed-off-by: 
line? Right now it defaults to gmail address, since you send your patches 
through it...

-- 
Denys


> * All references to am-benchmarks changed to arm-benchmarks for Makefile_arm-benchmarks
> 
> ti-tisdk-makefile: Modified to use Makefile_arm-benchmarks rather than Makefile_am-benchmarks
> ---
>  .../ti-tisdk-makefile/Makefile_am-benchmarks       |   24 --------------------
>  .../ti-tisdk-makefile/Makefile_arm-benchmarks      |   24 ++++++++++++++++++++
>  .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |    6 ++--
>  3 files changed, 27 insertions(+), 27 deletions(-)
>  delete mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks
>  create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
> 
> diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks
> deleted file mode 100644
> index ba0e0c6..0000000
> --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_am-benchmarks
> +++ /dev/null
> @@ -1,24 +0,0 @@
> -# am-benchmarks build targets
> -am-benchmarks:
> -	@echo =============================
> -	@echo    Building AM Benchmarks
> -	@echo =============================
> -	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make
> -
> -am-benchmarks_clean:
> -	@echo =============================
> -	@echo    Cleaning AM Benchmarks
> -	@echo =============================
> -	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make clean
> -
> -am-benchmarks_install:
> -	@echo ==============================================
> -	@echo   Installing AM Benchmarks - Release version
> -	@echo ==============================================
> -	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make install
> -
> -am-benchmarks_install_debug:
> -	@echo ============================================
> -	@echo   Installing AM Benchmarks - Debug Version
> -	@echo ============================================
> -	@cd example-applications; cd `find . -name "*am-benchmarks*"`; make install_debug
> diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
> new file mode 100644
> index 0000000..0447ea5
> --- /dev/null
> +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
> @@ -0,0 +1,24 @@
> +# arm-benchmarks build targets
> +arm-benchmarks:
> +	@echo =============================
> +	@echo    Building ARM Benchmarks
> +	@echo =============================
> +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make
> +
> +arm-benchmarks_clean:
> +	@echo =============================
> +	@echo    Cleaning ARM Benchmarks
> +	@echo =============================
> +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make clean
> +
> +arm-benchmarks_install:
> +	@echo ==============================================
> +	@echo   Installing ARM Benchmarks - Release version
> +	@echo ==============================================
> +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make install
> +
> +arm-benchmarks_install_debug:
> +	@echo ============================================
> +	@echo   Installing ARM Benchmarks - Debug Version
> +	@echo ============================================
> +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`; make install_debug
> diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
> index 6208f21..a276140 100644
> --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
> +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
> @@ -16,7 +16,7 @@ SRC_URI = "\
>      file://Makefile_linux \
>      file://Makefile_u-boot-legacy \
>      file://Makefile_matrix-gui \
> -    file://Makefile_am-benchmarks \
> +    file://Makefile_arm-benchmarks \
>      file://Makefile_am-sysinfo \
>      file://Makefile_av-examples \
>      file://Makefile_u-boot-spl \
> @@ -29,11 +29,11 @@ SRC_URI = "\
>      file://Makefile_wireless \
>  "
>  
> -PR = "r1"
> +PR = "r2"
>  
>  MAKEFILES_COMMON = "linux \
>                      matrix-gui \
> -                    am-benchmarks \
> +                    arm-benchmarks \
>                      am-sysinfo \
>                      matrix-gui-browser \
>                      refresh-screen \
> -- 
> 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] 23+ messages in thread

* Re: [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement
  2013-01-25 19:32   ` Denys Dmytriyenko
@ 2013-01-25 19:42     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 23+ messages in thread
From: Cooper Jr., Franklin @ 2013-01-25 19:42 UTC (permalink / raw)
  To: Dmytriyenko, Denys, Franklin S. Cooper Jr; +Cc: meta-arago

This issue only occurred on 32bit systems and it was a problem 100% of the time. I only tried on Ubuntu 10.04 and not 12.04. 
This fix was something I came up with that essentially mimicked dirname. 

Below is what my tweak looks like in the various stub files.

if [ -n "$BASH_SOURCE" ]; then
	filename=`echo ${BASH_SOURCE##*/}`
	dirname=${BASH_SOURCE/%$filename/}
	. $dirname../environment-setup
fi

So the reason why I broke it up in multiple lines is so it atleast it is easier to understand what I am trying to accomplish.

I am still unsure what the root cause of this issue is.
 
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, January 25, 2013 1:33 PM
> To: Franklin S. Cooper Jr
> Cc: meta-arago@arago-project.org; Cooper Jr., Franklin
> Subject: Re: [meta-arago] [PATCH 40/47] meta-toolchain-arago: Substitute
> dirname statement
> 
> On Thu, Jan 24, 2013 at 08:21:14AM -0600, Franklin S. Cooper Jr wrote:
> > * On 32bit systems, the dirname statement sometimes return an empty
> string.
> > * Replace dirname with several statements that provide the same result.
> 
> I know we discussed it before, but I'm still having a hard time comprehending
> the issue and the proposed "fix"... Why is it affecting only 32bit systems and
> why is it happening only sometimes? What are the other factors? And why
> splitting it in several lines instead of one "fixes" the problem?
> 
> Have you looked into it some more to understand the actual root cause?
> 
> --
> Denys
> 
> 
> > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > ---
> >  .../recipes-core/meta/meta-toolchain-arago.bb      |    9 +++++++--
> >  1 files changed, 7 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > index a9d07b6..332fe48 100644
> > --- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > +++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > @@ -4,7 +4,7 @@ TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-
> ${ARMPKGARCH}-${TARGET_OS}-sdk-${SDK_ARCH}"
> >
> >  require recipes-core/meta/meta-toolchain.bb
> >
> > -PR = "r13"
> > +PR = "r14"
> >
> >  SDKTARGETSYSROOT = "${SDKPATH}/${ARAGO_TARGET_SYS}"
> >
> > @@ -59,7 +59,12 @@ toolchain_create_sdk_env_script () {
> >  create_shell_stub () {
> >  	i=$1
> >  	mv $i $i.real
> > -	printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n\t.
> \x60dirname \x24BASH_SOURCE\x60/../environment-setup\nfi\n" > $i
> > +	printf "#!/bin/sh\nif [ -n \x22\x24BASH_SOURCE\x22 ]; then\n" > $i
> > +	printf "\tfilename\x3D\x60echo
> \x24\x7BBASH_SOURCE\x23\x23\x2A\x2F\x7D\x60\n" >> $i
> > +	printf
> "\tdirname\x3D\x24\x7BBASH_SOURCE\x2F\x25\x24filename\x2F\x7D\n" >> $i
> > +	printf "\t\x2E \x24dirname\x2E\x2E\x2Fenvironment-setup\n" >> $i
> > +	printf "fi\n" >> $i
> > +
> >  	if [ "$2" == "yes" ]; then
> >  		echo 'export PYTHONHOME=$SDK_PATH' >> $i
> >  		echo 'export PYTHONPATH=lib/python2.7' >> $i
> > --
> > 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] 23+ messages in thread

* Re: [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks
  2013-01-25 19:38   ` Denys Dmytriyenko
@ 2013-01-25 19:53     ` Cooper Jr., Franklin
  2013-01-25 19:56       ` Denys Dmytriyenko
  0 siblings, 1 reply; 23+ messages in thread
From: Cooper Jr., Franklin @ 2013-01-25 19:53 UTC (permalink / raw)
  To: Dmytriyenko, Denys, Franklin S. Cooper Jr; +Cc: meta-arago, Gerlach, Dave

The patch came from Dave Gerlach who sent it directly to me. So the From address is correct.

I'll make the user.email change.

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Dmytriyenko, Denys
> Sent: Friday, January 25, 2013 1:38 PM
> To: Franklin S. Cooper Jr
> Cc: meta-arago@arago-project.org; Gerlach, Dave
> Subject: Re: [meta-arago] [PATCH 42/47] Makefile_am-benchmarks: Renamed
> to Makefile_arm-benchmarks
> 
> On Thu, Jan 24, 2013 at 08:21:16AM -0600, Franklin S. Cooper Jr wrote:
> > From: dgerlach <d-gerlach@ti.com>
> 
> ^^^^^ Can we get the correct From: line here?
> 
> And while we are at it, Franklin, do you want to set your own user.email in git-
> config with the TI email, so your From: line matches your Signed-off-by:
> line? Right now it defaults to gmail address, since you send your patches
> through it...
> 
> --
> Denys
> 
> 
> > * All references to am-benchmarks changed to arm-benchmarks for
> Makefile_arm-benchmarks
> >
> > ti-tisdk-makefile: Modified to use Makefile_arm-benchmarks rather than
> Makefile_am-benchmarks
> > ---
> >  .../ti-tisdk-makefile/Makefile_am-benchmarks       |   24 --------------------
> >  .../ti-tisdk-makefile/Makefile_arm-benchmarks      |   24
> ++++++++++++++++++++
> >  .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |    6 ++--
> >  3 files changed, 27 insertions(+), 27 deletions(-)
> >  delete mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> tisdk-makefile/Makefile_am-benchmarks
> >  create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> tisdk-makefile/Makefile_arm-benchmarks
> >
> > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile/Makefile_am-benchmarks b/meta-arago-distro/recipes-tisdk/ti-tisdk-
> makefile/ti-tisdk-makefile/Makefile_am-benchmarks
> > deleted file mode 100644
> > index ba0e0c6..0000000
> > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile/Makefile_am-benchmarks
> > +++ /dev/null
> > @@ -1,24 +0,0 @@
> > -# am-benchmarks build targets
> > -am-benchmarks:
> > -	@echo =============================
> > -	@echo    Building AM Benchmarks
> > -	@echo =============================
> > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> make
> > -
> > -am-benchmarks_clean:
> > -	@echo =============================
> > -	@echo    Cleaning AM Benchmarks
> > -	@echo =============================
> > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> make clean
> > -
> > -am-benchmarks_install:
> > -	@echo ==============================================
> > -	@echo   Installing AM Benchmarks - Release version
> > -	@echo ==============================================
> > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> make install
> > -
> > -am-benchmarks_install_debug:
> > -	@echo ============================================
> > -	@echo   Installing AM Benchmarks - Debug Version
> > -	@echo ============================================
> > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> make install_debug
> > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile/Makefile_arm-benchmarks b/meta-arago-distro/recipes-tisdk/ti-
> tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
> > new file mode 100644
> > index 0000000..0447ea5
> > --- /dev/null
> > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile/Makefile_arm-benchmarks
> > @@ -0,0 +1,24 @@
> > +# arm-benchmarks build targets
> > +arm-benchmarks:
> > +	@echo =============================
> > +	@echo    Building ARM Benchmarks
> > +	@echo =============================
> > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> make
> > +
> > +arm-benchmarks_clean:
> > +	@echo =============================
> > +	@echo    Cleaning ARM Benchmarks
> > +	@echo =============================
> > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> make clean
> > +
> > +arm-benchmarks_install:
> > +	@echo ==============================================
> > +	@echo   Installing ARM Benchmarks - Release version
> > +	@echo ==============================================
> > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> make install
> > +
> > +arm-benchmarks_install_debug:
> > +	@echo ============================================
> > +	@echo   Installing ARM Benchmarks - Debug Version
> > +	@echo ============================================
> > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> make install_debug
> > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile_1.0.bb
> > index 6208f21..a276140 100644
> > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile_1.0.bb
> > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> makefile_1.0.bb
> > @@ -16,7 +16,7 @@ SRC_URI = "\
> >      file://Makefile_linux \
> >      file://Makefile_u-boot-legacy \
> >      file://Makefile_matrix-gui \
> > -    file://Makefile_am-benchmarks \
> > +    file://Makefile_arm-benchmarks \
> >      file://Makefile_am-sysinfo \
> >      file://Makefile_av-examples \
> >      file://Makefile_u-boot-spl \
> > @@ -29,11 +29,11 @@ SRC_URI = "\
> >      file://Makefile_wireless \
> >  "
> >
> > -PR = "r1"
> > +PR = "r2"
> >
> >  MAKEFILES_COMMON = "linux \
> >                      matrix-gui \
> > -                    am-benchmarks \
> > +                    arm-benchmarks \
> >                      am-sysinfo \
> >                      matrix-gui-browser \
> >                      refresh-screen \
> > --
> > 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] 23+ messages in thread

* Re: [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks
  2013-01-25 19:53     ` Cooper Jr., Franklin
@ 2013-01-25 19:56       ` Denys Dmytriyenko
  0 siblings, 0 replies; 23+ messages in thread
From: Denys Dmytriyenko @ 2013-01-25 19:56 UTC (permalink / raw)
  To: Cooper Jr., Franklin; +Cc: meta-arago, Gerlach, Dave

On Fri, Jan 25, 2013 at 02:53:08PM -0500, Cooper Jr., Franklin wrote:
> The patch came from Dave Gerlach who sent it directly to me. So the From address is correct.

Yeah, I mean it should have "Dave Gerlach" instead of "dgerlach"... Basically, 
he should set his user.name in git-config properly. I'll fix it manually for 
now.


> I'll make the user.email change.

Thanks!


> > -----Original Message-----
> > From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > bounces@arago-project.org] On Behalf Of Dmytriyenko, Denys
> > Sent: Friday, January 25, 2013 1:38 PM
> > To: Franklin S. Cooper Jr
> > Cc: meta-arago@arago-project.org; Gerlach, Dave
> > Subject: Re: [meta-arago] [PATCH 42/47] Makefile_am-benchmarks: Renamed
> > to Makefile_arm-benchmarks
> > 
> > On Thu, Jan 24, 2013 at 08:21:16AM -0600, Franklin S. Cooper Jr wrote:
> > > From: dgerlach <d-gerlach@ti.com>
> > 
> > ^^^^^ Can we get the correct From: line here?
> > 
> > And while we are at it, Franklin, do you want to set your own user.email in git-
> > config with the TI email, so your From: line matches your Signed-off-by:
> > line? Right now it defaults to gmail address, since you send your patches
> > through it...
> > 
> > --
> > Denys
> > 
> > 
> > > * All references to am-benchmarks changed to arm-benchmarks for
> > Makefile_arm-benchmarks
> > >
> > > ti-tisdk-makefile: Modified to use Makefile_arm-benchmarks rather than
> > Makefile_am-benchmarks
> > > ---
> > >  .../ti-tisdk-makefile/Makefile_am-benchmarks       |   24 --------------------
> > >  .../ti-tisdk-makefile/Makefile_arm-benchmarks      |   24
> > ++++++++++++++++++++
> > >  .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |    6 ++--
> > >  3 files changed, 27 insertions(+), 27 deletions(-)
> > >  delete mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> > tisdk-makefile/Makefile_am-benchmarks
> > >  create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> > tisdk-makefile/Makefile_arm-benchmarks
> > >
> > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile/Makefile_am-benchmarks b/meta-arago-distro/recipes-tisdk/ti-tisdk-
> > makefile/ti-tisdk-makefile/Makefile_am-benchmarks
> > > deleted file mode 100644
> > > index ba0e0c6..0000000
> > > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile/Makefile_am-benchmarks
> > > +++ /dev/null
> > > @@ -1,24 +0,0 @@
> > > -# am-benchmarks build targets
> > > -am-benchmarks:
> > > -	@echo =============================
> > > -	@echo    Building AM Benchmarks
> > > -	@echo =============================
> > > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> > make
> > > -
> > > -am-benchmarks_clean:
> > > -	@echo =============================
> > > -	@echo    Cleaning AM Benchmarks
> > > -	@echo =============================
> > > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> > make clean
> > > -
> > > -am-benchmarks_install:
> > > -	@echo ==============================================
> > > -	@echo   Installing AM Benchmarks - Release version
> > > -	@echo ==============================================
> > > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> > make install
> > > -
> > > -am-benchmarks_install_debug:
> > > -	@echo ============================================
> > > -	@echo   Installing AM Benchmarks - Debug Version
> > > -	@echo ============================================
> > > -	@cd example-applications; cd `find . -name "*am-benchmarks*"`;
> > make install_debug
> > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile/Makefile_arm-benchmarks b/meta-arago-distro/recipes-tisdk/ti-
> > tisdk-makefile/ti-tisdk-makefile/Makefile_arm-benchmarks
> > > new file mode 100644
> > > index 0000000..0447ea5
> > > --- /dev/null
> > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile/Makefile_arm-benchmarks
> > > @@ -0,0 +1,24 @@
> > > +# arm-benchmarks build targets
> > > +arm-benchmarks:
> > > +	@echo =============================
> > > +	@echo    Building ARM Benchmarks
> > > +	@echo =============================
> > > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> > make
> > > +
> > > +arm-benchmarks_clean:
> > > +	@echo =============================
> > > +	@echo    Cleaning ARM Benchmarks
> > > +	@echo =============================
> > > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> > make clean
> > > +
> > > +arm-benchmarks_install:
> > > +	@echo ==============================================
> > > +	@echo   Installing ARM Benchmarks - Release version
> > > +	@echo ==============================================
> > > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> > make install
> > > +
> > > +arm-benchmarks_install_debug:
> > > +	@echo ============================================
> > > +	@echo   Installing ARM Benchmarks - Debug Version
> > > +	@echo ============================================
> > > +	@cd example-applications; cd `find . -name "*arm-benchmarks*"`;
> > make install_debug
> > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile_1.0.bb
> > > index 6208f21..a276140 100644
> > > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile_1.0.bb
> > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> > makefile_1.0.bb
> > > @@ -16,7 +16,7 @@ SRC_URI = "\
> > >      file://Makefile_linux \
> > >      file://Makefile_u-boot-legacy \
> > >      file://Makefile_matrix-gui \
> > > -    file://Makefile_am-benchmarks \
> > > +    file://Makefile_arm-benchmarks \
> > >      file://Makefile_am-sysinfo \
> > >      file://Makefile_av-examples \
> > >      file://Makefile_u-boot-spl \
> > > @@ -29,11 +29,11 @@ SRC_URI = "\
> > >      file://Makefile_wireless \
> > >  "
> > >
> > > -PR = "r1"
> > > +PR = "r2"
> > >
> > >  MAKEFILES_COMMON = "linux \
> > >                      matrix-gui \
> > > -                    am-benchmarks \
> > > +                    arm-benchmarks \
> > >                      am-sysinfo \
> > >                      matrix-gui-browser \
> > >                      refresh-screen \
> > > --
> > > 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] 23+ messages in thread

end of thread, other threads:[~2013-01-25 19:56 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-24 14:21 [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 33/47] libav: Disable any mp3 or mpeg2 related features Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 34/47] gst-plugins-bad: Disable any feature based on mpeg2 or mp3 Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 35/47] arago.conf: Remove commercial license whitelisting Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 36/47] arago-amsdk-image: use gz compression instead of bz2 Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 37/47] tisdk-image: Package gz file systems by default Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 38/47] tisdk-rootfs-image: Build on top of arago-base-tisdk-image Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 39/47] tisdk-image: Fix missing header in SW manifest Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 40/47] meta-toolchain-arago: Substitute dirname statement Franklin S. Cooper Jr
2013-01-25 19:32   ` Denys Dmytriyenko
2013-01-25 19:42     ` Cooper Jr., Franklin
2013-01-24 14:21 ` [PATCH 41/47] ti-tisdk-setup: Switch back filesystem file type Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 42/47] Makefile_am-benchmarks: Renamed to Makefile_arm-benchmarks Franklin S. Cooper Jr
2013-01-25 19:38   ` Denys Dmytriyenko
2013-01-25 19:53     ` Cooper Jr., Franklin
2013-01-25 19:56       ` Denys Dmytriyenko
2013-01-24 14:21 ` [PATCH 43/47] Makefile_qml-playground: Renamed to Makefile_quick-playground Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 44/47] busybox: Enable rev utility Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 45/47] qt-tstat: Remove proxy settings Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 46/47] ti-tisdk-setup: Pull latest sources for create-sdcard fix Franklin S. Cooper Jr
2013-01-24 14:21 ` [PATCH 47/47] matrix-gui-apps-git.inc: Update Matrix v2 applications Franklin S. Cooper Jr
2013-01-24 18:29 ` [PATCH 32/47] task-arago-gst: Remove gst-plugins-ugly Denys Dmytriyenko
2013-01-24 18:44   ` Cooper Jr., Franklin

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.