All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] arago.conf: minor cleanup, version bump
@ 2014-04-24  1:51 Denys Dmytriyenko
  2014-04-24  1:51 ` [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream Denys Dmytriyenko
                   ` (7 more replies)
  0 siblings, 8 replies; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index cc3cedf..1c8c572 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -1,6 +1,6 @@
 # Name and version of the distribution
 DISTRO_NAME = "Arago"
-DISTRO_VERSION = "2014.03"
+DISTRO_VERSION = "2014.05"
 
 # SDK paths and names
 SDK_NAME_PREFIX = "arago"
@@ -10,8 +10,8 @@ SDK_NAME = "${SDK_NAME_PREFIX}-${SDK_VERSION}"
 SDKPATH_REAL = "/usr/local/${SDK_NAME_PREFIX}-${SDK_VERSION}"
 SDKPATH = "${@"/tmp/"+"x"*96+"/"+"y"*96}"
 
-# Mask some broken recipes
-BBMASK = "meta-ti/recipes-misc|meta-linaro/recipes-lamp|meta-oe/recipes-extended/lighttpd|meta-linaro/recipes-core/netbase"
+# Mask any broken recipes (currently none)
+#BBMASK = ""
 
 # Bump the connection timeout to 5 minutes to overcome slow proxy servers
 FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 300 -nv --passive-ftp --no-check-certificate"
-- 
1.9.2



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

* [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:32   ` Maupin, Chase
  2014-04-24  1:51 ` [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf Denys Dmytriyenko
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend | 10 ----------
 .../recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend    | 12 +-----------
 2 files changed, 1 insertion(+), 21 deletions(-)

diff --git a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend
index 911a8ce..1fb654b 100644
--- a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend
+++ b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend
@@ -1,13 +1,3 @@
 PR_append = "-arago4"
 
 UBOOT_LOCALVERSION = "-g${@d.getVar('SRCPV', True).partition('+')[2][0:7]}"
-
-# the lines below can be removed once the U-Boot LOCALVERSION patches are merged
-# into the oe-core danny branch. Update: not coming to danny, wait for dylan.
-do_compile_prepend() {
-    if [ ! -e ${B}/.scmversion -a ! -e ${S}/.scmversion ]
-    then
-        echo ${UBOOT_LOCALVERSION} > ${B}/.scmversion
-        echo ${UBOOT_LOCALVERSION} > ${S}/.scmversion
-    fi
-}
diff --git a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend
index 8174bc7..f015993 100644
--- a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend
+++ b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend
@@ -1,13 +1,3 @@
-PR_append = "-arago0"
-
-SRCREV = "${AUTOREV}"
+PR_append = "-arago1"
 
 UBOOT_LOCALVERSION = "-g${@d.getVar('SRCPV', True).partition('+')[2][0:7]}"
-
-do_compile_prepend() {
-    if [ ! -e ${B}/.scmversion -a ! -e ${S}/.scmversion ]
-    then
-        echo ${UBOOT_LOCALVERSION} > ${B}/.scmversion
-        echo ${UBOOT_LOCALVERSION} > ${S}/.scmversion
-    fi
-}
-- 
1.9.2



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

* [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
  2014-04-24  1:51 ` [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:33   ` Maupin, Chase
  2014-04-24  1:51 ` [PATCH 4/8] wpa-gui-e: fix recipe permissions Denys Dmytriyenko
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf               | 5 +++++
 meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend | 4 +---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index 1c8c572..7bd1de2 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -26,6 +26,11 @@ DISTRO_FEATURES = "alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbh
 DISTRO_FEATURES += "opengl"
 PACKAGECONFIG_pn-weston = "kms fbdev"
 
+# Configure Qt5 flags (GLES is disabled for now)
+#PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
+PACKAGECONFIG_GL_pn-qtbase = "linuxfb"
+PACKAGECONFIG_DISTRO_pn-qtbase = "icu"
+
 # ARM9 is not supported by the Linaro toolchain so default back to the Arago
 # toolchain for ARM9 based SOCs.
 TC_SANE_DEFAULT := "${@bb.utils.contains('SOC_FAMILY','omapl138','arago','linaro',d)}"
diff --git a/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend b/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
index d35a948..2c0a52d 100644
--- a/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
+++ b/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
@@ -1,10 +1,8 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-PACKAGECONFIG_GL = "icu linuxfb"
-
 SRC_URI += " \
 	file://0001-qeglfswindow.cpp.patch \
 	file://0002-qeglfswindow.cpp.patch \
 "
 
-PR_append = "-arago0"
+PR_append = "-arago1"
-- 
1.9.2



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

* [PATCH 4/8] wpa-gui-e: fix recipe permissions
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
  2014-04-24  1:51 ` [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream Denys Dmytriyenko
  2014-04-24  1:51 ` [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:33   ` Maupin, Chase
  2014-04-24  1:51 ` [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora Denys Dmytriyenko
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-connectivity/wpa-supplicant/wpa-gui-e_git.bbappend            | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 mode change 100755 => 100644 meta-arago-distro/recipes-connectivity/wpa-supplicant/wpa-gui-e_git.bbappend

diff --git a/meta-arago-distro/recipes-connectivity/wpa-supplicant/wpa-gui-e_git.bbappend b/meta-arago-distro/recipes-connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
old mode 100755
new mode 100644
-- 
1.9.2



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

* [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
                   ` (2 preceding siblings ...)
  2014-04-24  1:51 ` [PATCH 4/8] wpa-gui-e: fix recipe permissions Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:34   ` Maupin, Chase
  2014-04-24  1:51 ` [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch Denys Dmytriyenko
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-core/base-files/base-files_3.0.14.bbappend        | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/meta-arago-distro/recipes-core/base-files/base-files_3.0.14.bbappend b/meta-arago-distro/recipes-core/base-files/base-files_3.0.14.bbappend
index 4d831fd..8c65bd1 100644
--- a/meta-arago-distro/recipes-core/base-files/base-files_3.0.14.bbappend
+++ b/meta-arago-distro/recipes-core/base-files/base-files_3.0.14.bbappend
@@ -1,13 +1,4 @@
 # look for files in this layer first
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-PR_append = "-arago1"
-
-# Pre-create /run symlink to point to /var/run at build time
-# This normally happens on first boot, but may be too late for automount,
-# which tries to create mount-points in /run
-# NOTE: This step is not required in Dora and up, due to reverse direction
-# of symlinking between /run and /var/run
-do_install_append () {
-	ln -sf /var/run ${D}/run
-}
+PR_append = "-arago2"
-- 
1.9.2



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

* [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
                   ` (3 preceding siblings ...)
  2014-04-24  1:51 ` [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:35   ` Maupin, Chase
  2014-04-24  1:51 ` [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause Denys Dmytriyenko
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../icu/icu-51.2/icu-pkgdata-large-cmd.patch       | 29 ------------
 meta-arago-distro/recipes-support/icu/icu.inc      | 55 ----------------------
 .../{icu-51.2 => icu}/disable-ldflagsicudt.patch   |  0
 meta-arago-distro/recipes-support/icu/icu_51.2.bb  | 14 ------
 .../recipes-support/icu/icu_51.2.bbappend          |  5 ++
 5 files changed, 5 insertions(+), 98 deletions(-)
 delete mode 100644 meta-arago-distro/recipes-support/icu/icu-51.2/icu-pkgdata-large-cmd.patch
 delete mode 100644 meta-arago-distro/recipes-support/icu/icu.inc
 rename meta-arago-distro/recipes-support/icu/{icu-51.2 => icu}/disable-ldflagsicudt.patch (100%)
 delete mode 100644 meta-arago-distro/recipes-support/icu/icu_51.2.bb
 create mode 100644 meta-arago-distro/recipes-support/icu/icu_51.2.bbappend

diff --git a/meta-arago-distro/recipes-support/icu/icu-51.2/icu-pkgdata-large-cmd.patch b/meta-arago-distro/recipes-support/icu/icu-51.2/icu-pkgdata-large-cmd.patch
deleted file mode 100644
index 6e40659..0000000
--- a/meta-arago-distro/recipes-support/icu/icu-51.2/icu-pkgdata-large-cmd.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-pkgdata.cpp: use LARGE_BUFFER_MAX_SIZE for cmd
-
-Use LARGE_BUFFER_MAX_SIZE for cmd rather than SMALL_BUFFER_MAX_SIZE,
-otherwise there was a Segmentation fault error when the command line is
-long, this should be a misplay since other cmd uses
-LARGE_BUFFER_MAX_SIZE.
-
-Upstream-Status: Pending
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
----
- tools/pkgdata/pkgdata.cpp |    2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/tools/pkgdata/pkgdata.cpp b/tools/pkgdata/pkgdata.cpp
---- a/tools/pkgdata/pkgdata.cpp
-+++ b/tools/pkgdata/pkgdata.cpp
-@@ -1019,7 +1019,7 @@ normal_symlink_mode:
- 
- static int32_t pkg_installLibrary(const char *installDir, const char *targetDir, UBool noVersion) {
-     int32_t result = 0;
--    char cmd[SMALL_BUFFER_MAX_SIZE];
-+    char cmd[LARGE_BUFFER_MAX_SIZE];
- 
-     sprintf(cmd, "cd %s && %s %s %s%s%s",
-             targetDir,
--- 
-1.7.10.4
-
diff --git a/meta-arago-distro/recipes-support/icu/icu.inc b/meta-arago-distro/recipes-support/icu/icu.inc
deleted file mode 100644
index e3944cd..0000000
--- a/meta-arago-distro/recipes-support/icu/icu.inc
+++ /dev/null
@@ -1,55 +0,0 @@
-SUMMARY = "International Component for Unicode libraries"
-DESCRIPTION = "The International Component for Unicode (ICU) is a mature, portable set of C/C++ and Java libraries for Unicode support, software internationalization (I18N) and globalization (G11N), giving applications the same results on all platforms."
-HOMEPAGE = "http://site.icu-project.org/"
-
-LICENSE = "ICU"
-DEPENDS = "icu-native"
-DEPENDS_class-native = ""
-
-S = "${WORKDIR}/icu/source"
-STAGING_ICU_DIR_NATIVE = "${STAGING_DATADIR_NATIVE}/${BPN}/${PV}"
-
-PARALLEL_MAKE = ""
-CPPFLAGS_append_libc-uclibc = " -DU_TIMEZONE=0"
-
-inherit autotools pkgconfig binconfig
-
-# ICU needs the native build directory as an argument to its --with-cross-build option when
-# cross-compiling. Taken the situation that different builds may share a common sstate-cache
-# into consideration, the native build directory needs to be staged.
-EXTRA_OECONF = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}"
-EXTRA_OECONF_class-native = ""
-
-# ICU puts custom m4 autoconf functions in aclocal.m4.
-# However, this file is deleted in our build system. 
-# To make it work, we copy aclocal.m4 to acinclude.m4.
-# This is a bug of ICU. See bug reference:
-# http://bugs.icu-project.org/trac/ticket/9790
-do_configure_prepend() {
-    [ -f ${S}/acinclude.m4 ] || cp ${S}/aclocal.m4 ${S}/acinclude.m4
-}
-
-do_install_append_class-native() {
-	mkdir -p ${D}/${STAGING_ICU_DIR_NATIVE}/config
-	cp -r ${B}/config/icucross.mk ${D}/${STAGING_ICU_DIR_NATIVE}/config
-        cp -r ${B}/config/icucross.inc ${D}/${STAGING_ICU_DIR_NATIVE}/config
-	cp -r ${B}/lib ${D}/${STAGING_ICU_DIR_NATIVE}
-	cp -r ${B}/bin ${D}/${STAGING_ICU_DIR_NATIVE}
-	cp -r ${B}/tools ${D}/${STAGING_ICU_DIR_NATIVE}
-
-}
-
-PACKAGES =+ "libicudata libicuuc libicui18n libicule libiculx libicutu libicuio"
-
-FILES_${PN}-dev += "${libdir}/${BPN}/"
-
-FILES_libicudata = "${libdir}/libicudata.so.*"
-FILES_libicuuc = "${libdir}/libicuuc.so.*"
-FILES_libicui18n = "${libdir}/libicui18n.so.*"
-FILES_libicule = "${libdir}/libicule.so.*"
-FILES_libiculx = "${libdir}/libiculx.so.*"
-FILES_libicutu = "${libdir}/libicutu.so.*"
-FILES_libicuio = "${libdir}/libicuio.so.*"
-
-BBCLASSEXTEND = "native"
-
diff --git a/meta-arago-distro/recipes-support/icu/icu-51.2/disable-ldflagsicudt.patch b/meta-arago-distro/recipes-support/icu/icu/disable-ldflagsicudt.patch
similarity index 100%
rename from meta-arago-distro/recipes-support/icu/icu-51.2/disable-ldflagsicudt.patch
rename to meta-arago-distro/recipes-support/icu/icu/disable-ldflagsicudt.patch
diff --git a/meta-arago-distro/recipes-support/icu/icu_51.2.bb b/meta-arago-distro/recipes-support/icu/icu_51.2.bb
deleted file mode 100644
index 9a6fd70..0000000
--- a/meta-arago-distro/recipes-support/icu/icu_51.2.bb
+++ /dev/null
@@ -1,14 +0,0 @@
-require icu.inc
-
-LIC_FILES_CHKSUM = "file://../license.html;md5=443a74288a72fad9069a74e7637192c1"
-
-PR = "r1"
-
-BASE_SRC_URI = "http://download.icu-project.org/files/icu4c/${PV}/icu4c-51_2-src.tgz"
-SRC_URI = "${BASE_SRC_URI} \
-           file://icu-pkgdata-large-cmd.patch \
-           file://disable-ldflagsicudt.patch \
-          "
-
-SRC_URI[md5sum] = "072e501b87065f3a0ca888f1b5165709"
-SRC_URI[sha256sum] = "deb027a05f1b3bec03298b96fb93b28c84e9683c22e6f94effa67fdc7bd704cc"
diff --git a/meta-arago-distro/recipes-support/icu/icu_51.2.bbappend b/meta-arago-distro/recipes-support/icu/icu_51.2.bbappend
new file mode 100644
index 0000000..f812148
--- /dev/null
+++ b/meta-arago-distro/recipes-support/icu/icu_51.2.bbappend
@@ -0,0 +1,5 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+
+PR_append = "-arago0"
+
+SRC_URI += "file://disable-ldflagsicudt.patch"
-- 
1.9.2



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

* [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
                   ` (4 preceding siblings ...)
  2014-04-24  1:51 ` [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:35   ` Maupin, Chase
  2014-04-24  1:51 ` [PATCH 8/8] linux-ti-staging: disable AUTOREV Denys Dmytriyenko
  2014-04-24 12:31 ` [PATCH 1/8] arago.conf: minor cleanup, version bump Maupin, Chase
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
index 208b955..32c76e1 100644
--- a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
+++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
@@ -1,10 +1,10 @@
 DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics"
 HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/"
 SECTION = "console/network"
-LICENSE = "NewBSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz \
             file://000-Iperf_Fix-CPU-Usage.diff \
-- 
1.9.2



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

* [PATCH 8/8] linux-ti-staging: disable AUTOREV
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
                   ` (5 preceding siblings ...)
  2014-04-24  1:51 ` [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause Denys Dmytriyenko
@ 2014-04-24  1:51 ` Denys Dmytriyenko
  2014-04-24 12:36   ` Maupin, Chase
  2014-04-24 12:31 ` [PATCH 1/8] arago.conf: minor cleanup, version bump Maupin, Chase
  7 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24  1:51 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/recipes-kernel/linux/linux-ti-staging_3.12.bbappend | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_3.12.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_3.12.bbappend
index f99482c..2a6f090 100644
--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_3.12.bbappend
+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_3.12.bbappend
@@ -1,11 +1,9 @@
-MACHINE_KERNEL_PR_append = "-arago0"
+MACHINE_KERNEL_PR_append = "-arago1"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
 
 require copy-defconfig.inc
 
-SRCREV = "${AUTOREV}"
-
 KERNEL_LOCALVERSION = "-g${@d.getVar('SRCPV', True).partition('+')[2][0:7]}"
 
 kernel_do_configure_prepend() {
-- 
1.9.2



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

* Re: [PATCH 1/8] arago.conf: minor cleanup, version bump
  2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
                   ` (6 preceding siblings ...)
  2014-04-24  1:51 ` [PATCH 8/8] linux-ti-staging: disable AUTOREV Denys Dmytriyenko
@ 2014-04-24 12:31 ` Maupin, Chase
  2014-04-24 14:29   ` Cooper Jr., Franklin
  7 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:31 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 1/8] arago.conf: minor cleanup,
>version bump
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> meta-arago-distro/conf/distro/arago.conf | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
>diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-
>arago-distro/conf/distro/arago.conf
>index cc3cedf..1c8c572 100644
>--- a/meta-arago-distro/conf/distro/arago.conf
>+++ b/meta-arago-distro/conf/distro/arago.conf
>@@ -1,6 +1,6 @@
> # Name and version of the distribution
> DISTRO_NAME = "Arago"
>-DISTRO_VERSION = "2014.03"
>+DISTRO_VERSION = "2014.05"
>
> # SDK paths and names
> SDK_NAME_PREFIX = "arago"
>@@ -10,8 +10,8 @@ SDK_NAME = "${SDK_NAME_PREFIX}-${SDK_VERSION}"
> SDKPATH_REAL = "/usr/local/${SDK_NAME_PREFIX}-${SDK_VERSION}"
> SDKPATH = "${@"/tmp/"+"x"*96+"/"+"y"*96}"
>
>-# Mask some broken recipes
>-BBMASK = "meta-ti/recipes-misc|meta-linaro/recipes-lamp|meta-
>oe/recipes-extended/lighttpd|meta-linaro/recipes-core/netbase"
>+# Mask any broken recipes (currently none)
>+#BBMASK = ""
>
> # Bump the connection timeout to 5 minutes to overcome slow proxy
>servers
> FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 300 -nv --passive-ftp
>--no-check-certificate"
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream
  2014-04-24  1:51 ` [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream Denys Dmytriyenko
@ 2014-04-24 12:32   ` Maupin, Chase
  2014-04-24 14:29     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:32 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 2/8] u-boot-ti-staging: remove
>UBOOT_LOCALVERSION handling, now upstream
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> .../recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend | 10
>----------
> .../recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend    | 12
>+-----------
> 2 files changed, 1 insertion(+), 21 deletions(-)
>
>diff --git a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
>staging_2013.01.01.bbappend b/meta-arago-distro/recipes-bsp/u-
>boot/u-boot-ti-staging_2013.01.01.bbappend
>index 911a8ce..1fb654b 100644
>--- a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
>staging_2013.01.01.bbappend
>+++ b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
>staging_2013.01.01.bbappend
>@@ -1,13 +1,3 @@
> PR_append = "-arago4"
>
> UBOOT_LOCALVERSION = "-g${@d.getVar('SRCPV',
>True).partition('+')[2][0:7]}"
>-
>-# the lines below can be removed once the U-Boot LOCALVERSION
>patches are merged
>-# into the oe-core danny branch. Update: not coming to danny,
>wait for dylan.
>-do_compile_prepend() {
>-    if [ ! -e ${B}/.scmversion -a ! -e ${S}/.scmversion ]
>-    then
>-        echo ${UBOOT_LOCALVERSION} > ${B}/.scmversion
>-        echo ${UBOOT_LOCALVERSION} > ${S}/.scmversion
>-    fi
>-}
>diff --git a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
>staging_2013.10.bbappend b/meta-arago-distro/recipes-bsp/u-boot/u-
>boot-ti-staging_2013.10.bbappend
>index 8174bc7..f015993 100644
>--- a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
>staging_2013.10.bbappend
>+++ b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
>staging_2013.10.bbappend
>@@ -1,13 +1,3 @@
>-PR_append = "-arago0"
>-
>-SRCREV = "${AUTOREV}"
>+PR_append = "-arago1"
>
> UBOOT_LOCALVERSION = "-g${@d.getVar('SRCPV',
>True).partition('+')[2][0:7]}"
>-
>-do_compile_prepend() {
>-    if [ ! -e ${B}/.scmversion -a ! -e ${S}/.scmversion ]
>-    then
>-        echo ${UBOOT_LOCALVERSION} > ${B}/.scmversion
>-        echo ${UBOOT_LOCALVERSION} > ${S}/.scmversion
>-    fi
>-}
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf
  2014-04-24  1:51 ` [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf Denys Dmytriyenko
@ 2014-04-24 12:33   ` Maupin, Chase
  2014-04-24 14:50     ` Denys Dmytriyenko
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:33 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago


>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 3/8] qtbase: move setting
>PACKAGECONFIG flags to arago.conf
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> meta-arago-distro/conf/distro/arago.conf               | 5 +++++
> meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend | 4 +---
> 2 files changed, 6 insertions(+), 3 deletions(-)
>
>diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-
>arago-distro/conf/distro/arago.conf
>index 1c8c572..7bd1de2 100644
>--- a/meta-arago-distro/conf/distro/arago.conf
>+++ b/meta-arago-distro/conf/distro/arago.conf
>@@ -26,6 +26,11 @@ DISTRO_FEATURES = "alsa argp bluetooth ext2
>irda largefile pcmcia usbgadget usbh
> DISTRO_FEATURES += "opengl"
> PACKAGECONFIG_pn-weston = "kms fbdev"
>
>+# Configure Qt5 flags (GLES is disabled for now)
>+#PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
>+PACKAGECONFIG_GL_pn-qtbase = "linuxfb"
>+PACKAGECONFIG_DISTRO_pn-qtbase = "icu"
>+

Can you explain this a bit more?  What is the advantage of moving it to the config vs in the recipe?

> # ARM9 is not supported by the Linaro toolchain so default back
>to the Arago
> # toolchain for ARM9 based SOCs.
> TC_SANE_DEFAULT :=
>"${@bb.utils.contains('SOC_FAMILY','omapl138','arago','linaro',d)}
>"
>diff --git a/meta-arago-distro/recipes-
>qt/qt5/qtbase_5.2.0.bbappend b/meta-arago-distro/recipes-
>qt/qt5/qtbase_5.2.0.bbappend
>index d35a948..2c0a52d 100644
>--- a/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
>+++ b/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
>@@ -1,10 +1,8 @@
> FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>
>-PACKAGECONFIG_GL = "icu linuxfb"
>-
> SRC_URI += " \
> 	file://0001-qeglfswindow.cpp.patch \
> 	file://0002-qeglfswindow.cpp.patch \
> "
>
>-PR_append = "-arago0"
>+PR_append = "-arago1"
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 4/8] wpa-gui-e: fix recipe permissions
  2014-04-24  1:51 ` [PATCH 4/8] wpa-gui-e: fix recipe permissions Denys Dmytriyenko
@ 2014-04-24 12:33   ` Maupin, Chase
  2014-04-24 14:29     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:33 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 4/8] wpa-gui-e: fix recipe
>permissions
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> .../recipes-connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
>| 0
> 1 file changed, 0 insertions(+), 0 deletions(-)
> mode change 100755 => 100644 meta-arago-distro/recipes-
>connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
>
>diff --git a/meta-arago-distro/recipes-connectivity/wpa-
>supplicant/wpa-gui-e_git.bbappend b/meta-arago-distro/recipes-
>connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
>old mode 100755
>new mode 100644
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora
  2014-04-24  1:51 ` [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora Denys Dmytriyenko
@ 2014-04-24 12:34   ` Maupin, Chase
  2014-04-24 14:30     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:34 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com> 


>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 5/8] base-files: remove symlinking of
>/run vs. /var/run not needed in Dora
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> .../recipes-core/base-files/base-files_3.0.14.bbappend        |
>11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
>diff --git a/meta-arago-distro/recipes-core/base-files/base-
>files_3.0.14.bbappend b/meta-arago-distro/recipes-core/base-
>files/base-files_3.0.14.bbappend
>index 4d831fd..8c65bd1 100644
>--- a/meta-arago-distro/recipes-core/base-files/base-
>files_3.0.14.bbappend
>+++ b/meta-arago-distro/recipes-core/base-files/base-
>files_3.0.14.bbappend
>@@ -1,13 +1,4 @@
> # look for files in this layer first
> FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>
>-PR_append = "-arago1"
>-
>-# Pre-create /run symlink to point to /var/run at build time
>-# This normally happens on first boot, but may be too late for
>automount,
>-# which tries to create mount-points in /run
>-# NOTE: This step is not required in Dora and up, due to reverse
>direction
>-# of symlinking between /run and /var/run
>-do_install_append () {
>-	ln -sf /var/run ${D}/run
>-}
>+PR_append = "-arago2"
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch
  2014-04-24  1:51 ` [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch Denys Dmytriyenko
@ 2014-04-24 12:35   ` Maupin, Chase
  2014-04-24 14:32     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:35 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 6/8] icu: replace overlayed recipe
>with bbappend for 1 patch
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> .../icu/icu-51.2/icu-pkgdata-large-cmd.patch       | 29 ---------
>---
> meta-arago-distro/recipes-support/icu/icu.inc      | 55 ---------
>-------------
> .../{icu-51.2 => icu}/disable-ldflagsicudt.patch   |  0
> meta-arago-distro/recipes-support/icu/icu_51.2.bb  | 14 ------
> .../recipes-support/icu/icu_51.2.bbappend          |  5 ++
> 5 files changed, 5 insertions(+), 98 deletions(-)
> delete mode 100644 meta-arago-distro/recipes-support/icu/icu-
>51.2/icu-pkgdata-large-cmd.patch
> delete mode 100644 meta-arago-distro/recipes-support/icu/icu.inc
> rename meta-arago-distro/recipes-support/icu/{icu-51.2 =>
>icu}/disable-ldflagsicudt.patch (100%)
> delete mode 100644 meta-arago-distro/recipes-
>support/icu/icu_51.2.bb
> create mode 100644 meta-arago-distro/recipes-
>support/icu/icu_51.2.bbappend
>
>diff --git a/meta-arago-distro/recipes-support/icu/icu-51.2/icu-
>pkgdata-large-cmd.patch b/meta-arago-distro/recipes-
>support/icu/icu-51.2/icu-pkgdata-large-cmd.patch
>deleted file mode 100644
>index 6e40659..0000000
>--- a/meta-arago-distro/recipes-support/icu/icu-51.2/icu-pkgdata-
>large-cmd.patch
>+++ /dev/null
>@@ -1,29 +0,0 @@
>-pkgdata.cpp: use LARGE_BUFFER_MAX_SIZE for cmd
>-
>-Use LARGE_BUFFER_MAX_SIZE for cmd rather than
>SMALL_BUFFER_MAX_SIZE,
>-otherwise there was a Segmentation fault error when the command
>line is
>-long, this should be a misplay since other cmd uses
>-LARGE_BUFFER_MAX_SIZE.
>-
>-Upstream-Status: Pending
>-
>-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>----
>- tools/pkgdata/pkgdata.cpp |    2 +-
>- 1 file changed, 1 insertion(+), 1 deletion(-)
>-
>-diff --git a/tools/pkgdata/pkgdata.cpp
>b/tools/pkgdata/pkgdata.cpp
>---- a/tools/pkgdata/pkgdata.cpp
>-+++ b/tools/pkgdata/pkgdata.cpp
>-@@ -1019,7 +1019,7 @@ normal_symlink_mode:
>-
>- static int32_t pkg_installLibrary(const char *installDir, const
>char *targetDir, UBool noVersion) {
>-     int32_t result = 0;
>--    char cmd[SMALL_BUFFER_MAX_SIZE];
>-+    char cmd[LARGE_BUFFER_MAX_SIZE];
>-
>-     sprintf(cmd, "cd %s && %s %s %s%s%s",
>-             targetDir,
>---
>-1.7.10.4
>-
>diff --git a/meta-arago-distro/recipes-support/icu/icu.inc b/meta-
>arago-distro/recipes-support/icu/icu.inc
>deleted file mode 100644
>index e3944cd..0000000
>--- a/meta-arago-distro/recipes-support/icu/icu.inc
>+++ /dev/null
>@@ -1,55 +0,0 @@
>-SUMMARY = "International Component for Unicode libraries"
>-DESCRIPTION = "The International Component for Unicode (ICU) is a
>mature, portable set of C/C++ and Java libraries for Unicode
>support, software internationalization (I18N) and globalization
>(G11N), giving applications the same results on all platforms."
>-HOMEPAGE = "http://site.icu-project.org/"
>-
>-LICENSE = "ICU"
>-DEPENDS = "icu-native"
>-DEPENDS_class-native = ""
>-
>-S = "${WORKDIR}/icu/source"
>-STAGING_ICU_DIR_NATIVE = "${STAGING_DATADIR_NATIVE}/${BPN}/${PV}"
>-
>-PARALLEL_MAKE = ""
>-CPPFLAGS_append_libc-uclibc = " -DU_TIMEZONE=0"
>-
>-inherit autotools pkgconfig binconfig
>-
>-# ICU needs the native build directory as an argument to its --
>with-cross-build option when
>-# cross-compiling. Taken the situation that different builds may
>share a common sstate-cache
>-# into consideration, the native build directory needs to be
>staged.
>-EXTRA_OECONF = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}"
>-EXTRA_OECONF_class-native = ""
>-
>-# ICU puts custom m4 autoconf functions in aclocal.m4.
>-# However, this file is deleted in our build system.
>-# To make it work, we copy aclocal.m4 to acinclude.m4.
>-# This is a bug of ICU. See bug reference:
>-# http://bugs.icu-project.org/trac/ticket/9790
>-do_configure_prepend() {
>-    [ -f ${S}/acinclude.m4 ] || cp ${S}/aclocal.m4
>${S}/acinclude.m4
>-}
>-
>-do_install_append_class-native() {
>-	mkdir -p ${D}/${STAGING_ICU_DIR_NATIVE}/config
>-	cp -r ${B}/config/icucross.mk
>${D}/${STAGING_ICU_DIR_NATIVE}/config
>-        cp -r ${B}/config/icucross.inc
>${D}/${STAGING_ICU_DIR_NATIVE}/config
>-	cp -r ${B}/lib ${D}/${STAGING_ICU_DIR_NATIVE}
>-	cp -r ${B}/bin ${D}/${STAGING_ICU_DIR_NATIVE}
>-	cp -r ${B}/tools ${D}/${STAGING_ICU_DIR_NATIVE}
>-
>-}
>-
>-PACKAGES =+ "libicudata libicuuc libicui18n libicule libiculx
>libicutu libicuio"
>-
>-FILES_${PN}-dev += "${libdir}/${BPN}/"
>-
>-FILES_libicudata = "${libdir}/libicudata.so.*"
>-FILES_libicuuc = "${libdir}/libicuuc.so.*"
>-FILES_libicui18n = "${libdir}/libicui18n.so.*"
>-FILES_libicule = "${libdir}/libicule.so.*"
>-FILES_libiculx = "${libdir}/libiculx.so.*"
>-FILES_libicutu = "${libdir}/libicutu.so.*"
>-FILES_libicuio = "${libdir}/libicuio.so.*"
>-
>-BBCLASSEXTEND = "native"
>-
>diff --git a/meta-arago-distro/recipes-support/icu/icu-
>51.2/disable-ldflagsicudt.patch b/meta-arago-distro/recipes-
>support/icu/icu/disable-ldflagsicudt.patch
>similarity index 100%
>rename from meta-arago-distro/recipes-support/icu/icu-
>51.2/disable-ldflagsicudt.patch
>rename to meta-arago-distro/recipes-support/icu/icu/disable-
>ldflagsicudt.patch
>diff --git a/meta-arago-distro/recipes-support/icu/icu_51.2.bb
>b/meta-arago-distro/recipes-support/icu/icu_51.2.bb
>deleted file mode 100644
>index 9a6fd70..0000000
>--- a/meta-arago-distro/recipes-support/icu/icu_51.2.bb
>+++ /dev/null
>@@ -1,14 +0,0 @@
>-require icu.inc
>-
>-LIC_FILES_CHKSUM =
>"file://../license.html;md5=443a74288a72fad9069a74e7637192c1"
>-
>-PR = "r1"
>-
>-BASE_SRC_URI = "http://download.icu-
>project.org/files/icu4c/${PV}/icu4c-51_2-src.tgz"
>-SRC_URI = "${BASE_SRC_URI} \
>-           file://icu-pkgdata-large-cmd.patch \
>-           file://disable-ldflagsicudt.patch \
>-          "
>-
>-SRC_URI[md5sum] = "072e501b87065f3a0ca888f1b5165709"
>-SRC_URI[sha256sum] =
>"deb027a05f1b3bec03298b96fb93b28c84e9683c22e6f94effa67fdc7bd704cc"
>diff --git a/meta-arago-distro/recipes-
>support/icu/icu_51.2.bbappend b/meta-arago-distro/recipes-
>support/icu/icu_51.2.bbappend
>new file mode 100644
>index 0000000..f812148
>--- /dev/null
>+++ b/meta-arago-distro/recipes-support/icu/icu_51.2.bbappend
>@@ -0,0 +1,5 @@
>+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>+
>+PR_append = "-arago0"
>+
>+SRC_URI += "file://disable-ldflagsicudt.patch"
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause
  2014-04-24  1:51 ` [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause Denys Dmytriyenko
@ 2014-04-24 12:35   ` Maupin, Chase
  2014-04-24 14:34     ` Cooper Jr., Franklin
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:35 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 7/8] iperf: update the license from
>NewBSD to the proper BSD-3-Clause
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/meta-arago-extras/recipes-
>benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-
>benchmark/iperf/iperf_2.0.5.bb
>index 208b955..32c76e1 100644
>--- a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
>+++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
>@@ -1,10 +1,10 @@
> DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth,
>allowing the tuning of various parameters and UDP characteristics"
> HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/"
> SECTION = "console/network"
>-LICENSE = "NewBSD"
>+LICENSE = "BSD-3-Clause"
> LIC_FILES_CHKSUM =
>"file://COPYING;md5=e8478eae9f479e39bc34975193360298"
>
>-PR = "r0"
>+PR = "r1"
>
> SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz \
>             file://000-Iperf_Fix-CPU-Usage.diff \
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 8/8] linux-ti-staging: disable AUTOREV
  2014-04-24  1:51 ` [PATCH 8/8] linux-ti-staging: disable AUTOREV Denys Dmytriyenko
@ 2014-04-24 12:36   ` Maupin, Chase
  2014-04-24 14:54     ` Denys Dmytriyenko
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 12:36 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>Sent: Wednesday, April 23, 2014 8:51 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH 8/8] linux-ti-staging: disable
>AUTOREV
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> meta-arago-distro/recipes-kernel/linux/linux-ti-
>staging_3.12.bbappend | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
>diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-
>staging_3.12.bbappend b/meta-arago-distro/recipes-
>kernel/linux/linux-ti-staging_3.12.bbappend
>index f99482c..2a6f090 100644
>--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-
>staging_3.12.bbappend
>+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-
>staging_3.12.bbappend
>@@ -1,11 +1,9 @@
>-MACHINE_KERNEL_PR_append = "-arago0"
>+MACHINE_KERNEL_PR_append = "-arago1"
>
> FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>
> require copy-defconfig.inc
>
>-SRCREV = "${AUTOREV}"

Any reason not to autorev to pickup the latest stable releases?

>-
> KERNEL_LOCALVERSION = "-g${@d.getVar('SRCPV',
>True).partition('+')[2][0:7]}"
>
> kernel_do_configure_prepend() {
>--
>1.9.2
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 1/8] arago.conf: minor cleanup, version bump
  2014-04-24 12:31 ` [PATCH 1/8] arago.conf: minor cleanup, version bump Maupin, Chase
@ 2014-04-24 14:29   ` Cooper Jr., Franklin
  0 siblings, 0 replies; 28+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-24 14:29 UTC (permalink / raw)
  To: Maupin, Chase, Denys Dmytriyenko, meta-arago

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>



> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Thursday, April 24, 2014 7:32 AM
> To: Denys Dmytriyenko; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 1/8] arago.conf: minor cleanup, version
> bump
> 
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 1/8] arago.conf: minor cleanup, version
> >bump
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > meta-arago-distro/conf/distro/arago.conf | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> >diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-
> >arago-distro/conf/distro/arago.conf
> >index cc3cedf..1c8c572 100644
> >--- a/meta-arago-distro/conf/distro/arago.conf
> >+++ b/meta-arago-distro/conf/distro/arago.conf
> >@@ -1,6 +1,6 @@
> > # Name and version of the distribution  DISTRO_NAME = "Arago"
> >-DISTRO_VERSION = "2014.03"
> >+DISTRO_VERSION = "2014.05"
> >
> > # SDK paths and names
> > SDK_NAME_PREFIX = "arago"
> >@@ -10,8 +10,8 @@ SDK_NAME = "${SDK_NAME_PREFIX}-${SDK_VERSION}"
> > SDKPATH_REAL = "/usr/local/${SDK_NAME_PREFIX}-${SDK_VERSION}"
> > SDKPATH = "${@"/tmp/"+"x"*96+"/"+"y"*96}"
> >
> >-# Mask some broken recipes
> >-BBMASK = "meta-ti/recipes-misc|meta-linaro/recipes-lamp|meta-
> >oe/recipes-extended/lighttpd|meta-linaro/recipes-core/netbase"
> >+# Mask any broken recipes (currently none) #BBMASK = ""
> >
> > # Bump the connection timeout to 5 minutes to overcome slow proxy
> >servers  FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 300 -nv
> >--passive-ftp --no-check-certificate"
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream
  2014-04-24 12:32   ` Maupin, Chase
@ 2014-04-24 14:29     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 28+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-24 14:29 UTC (permalink / raw)
  To: Maupin, Chase, Denys Dmytriyenko, meta-arago

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Thursday, April 24, 2014 7:32 AM
> To: Denys Dmytriyenko; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 2/8] u-boot-ti-staging: remove
> UBOOT_LOCALVERSION handling, now upstream
> 
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 2/8] u-boot-ti-staging: remove
> >UBOOT_LOCALVERSION handling, now upstream
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > .../recipes-bsp/u-boot/u-boot-ti-staging_2013.01.01.bbappend | 10
> >----------
> > .../recipes-bsp/u-boot/u-boot-ti-staging_2013.10.bbappend    | 12
> >+-----------
> > 2 files changed, 1 insertion(+), 21 deletions(-)
> >
> >diff --git a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
> >staging_2013.01.01.bbappend b/meta-arago-distro/recipes-bsp/u-
> >boot/u-boot-ti-staging_2013.01.01.bbappend
> >index 911a8ce..1fb654b 100644
> >--- a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
> >staging_2013.01.01.bbappend
> >+++ b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
> >staging_2013.01.01.bbappend
> >@@ -1,13 +1,3 @@
> > PR_append = "-arago4"
> >
> > UBOOT_LOCALVERSION = "-g${@d.getVar('SRCPV',
> >True).partition('+')[2][0:7]}"
> >-
> >-# the lines below can be removed once the U-Boot LOCALVERSION patches
> >are merged -# into the oe-core danny branch. Update: not coming to
> >danny, wait for dylan.
> >-do_compile_prepend() {
> >-    if [ ! -e ${B}/.scmversion -a ! -e ${S}/.scmversion ]
> >-    then
> >-        echo ${UBOOT_LOCALVERSION} > ${B}/.scmversion
> >-        echo ${UBOOT_LOCALVERSION} > ${S}/.scmversion
> >-    fi
> >-}
> >diff --git a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
> >staging_2013.10.bbappend b/meta-arago-distro/recipes-bsp/u-boot/u-
> >boot-ti-staging_2013.10.bbappend
> >index 8174bc7..f015993 100644
> >--- a/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
> >staging_2013.10.bbappend
> >+++ b/meta-arago-distro/recipes-bsp/u-boot/u-boot-ti-
> >staging_2013.10.bbappend
> >@@ -1,13 +1,3 @@
> >-PR_append = "-arago0"
> >-
> >-SRCREV = "${AUTOREV}"
> >+PR_append = "-arago1"
> >
> > UBOOT_LOCALVERSION = "-g${@d.getVar('SRCPV',
> >True).partition('+')[2][0:7]}"
> >-
> >-do_compile_prepend() {
> >-    if [ ! -e ${B}/.scmversion -a ! -e ${S}/.scmversion ]
> >-    then
> >-        echo ${UBOOT_LOCALVERSION} > ${B}/.scmversion
> >-        echo ${UBOOT_LOCALVERSION} > ${S}/.scmversion
> >-    fi
> >-}
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 4/8] wpa-gui-e: fix recipe permissions
  2014-04-24 12:33   ` Maupin, Chase
@ 2014-04-24 14:29     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 28+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-24 14:29 UTC (permalink / raw)
  To: Maupin, Chase, Denys Dmytriyenko, meta-arago

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Thursday, April 24, 2014 7:34 AM
> To: Denys Dmytriyenko; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 4/8] wpa-gui-e: fix recipe permissions
> 
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 4/8] wpa-gui-e: fix recipe permissions
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > .../recipes-connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
> >| 0
> > 1 file changed, 0 insertions(+), 0 deletions(-)  mode change 100755 =>
> >100644 meta-arago-distro/recipes-
> >connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
> >
> >diff --git a/meta-arago-distro/recipes-connectivity/wpa-
> >supplicant/wpa-gui-e_git.bbappend b/meta-arago-distro/recipes-
> >connectivity/wpa-supplicant/wpa-gui-e_git.bbappend
> >old mode 100755
> >new mode 100644
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora
  2014-04-24 12:34   ` Maupin, Chase
@ 2014-04-24 14:30     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 28+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-24 14:30 UTC (permalink / raw)
  To: Maupin, Chase, Denys Dmytriyenko, meta-arago

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Thursday, April 24, 2014 7:35 AM
> To: Denys Dmytriyenko; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 5/8] base-files: remove symlinking of /run
> vs. /var/run not needed in Dora
> 
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 5/8] base-files: remove symlinking of /run
> >vs. /var/run not needed in Dora
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > .../recipes-core/base-files/base-files_3.0.14.bbappend        |
> >11 +----------
> > 1 file changed, 1 insertion(+), 10 deletions(-)
> >
> >diff --git a/meta-arago-distro/recipes-core/base-files/base-
> >files_3.0.14.bbappend b/meta-arago-distro/recipes-core/base-
> >files/base-files_3.0.14.bbappend
> >index 4d831fd..8c65bd1 100644
> >--- a/meta-arago-distro/recipes-core/base-files/base-
> >files_3.0.14.bbappend
> >+++ b/meta-arago-distro/recipes-core/base-files/base-
> >files_3.0.14.bbappend
> >@@ -1,13 +1,4 @@
> > # look for files in this layer first
> > FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> >
> >-PR_append = "-arago1"
> >-
> >-# Pre-create /run symlink to point to /var/run at build time -# This
> >normally happens on first boot, but may be too late for automount, -#
> >which tries to create mount-points in /run -# NOTE: This step is not
> >required in Dora and up, due to reverse direction -# of symlinking
> >between /run and /var/run -do_install_append () {
> >-	ln -sf /var/run ${D}/run
> >-}
> >+PR_append = "-arago2"
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch
  2014-04-24 12:35   ` Maupin, Chase
@ 2014-04-24 14:32     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 28+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-24 14:32 UTC (permalink / raw)
  To: Maupin, Chase, Denys Dmytriyenko, meta-arago

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Thursday, April 24, 2014 7:36 AM
> To: Denys Dmytriyenko; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 6/8] icu: replace overlayed recipe with
> bbappend for 1 patch
> 
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 6/8] icu: replace overlayed recipe with
> >bbappend for 1 patch
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > .../icu/icu-51.2/icu-pkgdata-large-cmd.patch       | 29 ---------
> >---
> > meta-arago-distro/recipes-support/icu/icu.inc      | 55 ---------
> >-------------
> > .../{icu-51.2 => icu}/disable-ldflagsicudt.patch   |  0
> > meta-arago-distro/recipes-support/icu/icu_51.2.bb  | 14 ------
> > .../recipes-support/icu/icu_51.2.bbappend          |  5 ++
> > 5 files changed, 5 insertions(+), 98 deletions(-)  delete mode 100644
> >meta-arago-distro/recipes-support/icu/icu-
> >51.2/icu-pkgdata-large-cmd.patch
> > delete mode 100644 meta-arago-distro/recipes-support/icu/icu.inc
> > rename meta-arago-distro/recipes-support/icu/{icu-51.2 =>
> >icu}/disable-ldflagsicudt.patch (100%)  delete mode 100644
> >meta-arago-distro/recipes- support/icu/icu_51.2.bb  create mode 100644
> >meta-arago-distro/recipes- support/icu/icu_51.2.bbappend
> >
> >diff --git a/meta-arago-distro/recipes-support/icu/icu-51.2/icu-
> >pkgdata-large-cmd.patch b/meta-arago-distro/recipes-
> >support/icu/icu-51.2/icu-pkgdata-large-cmd.patch
> >deleted file mode 100644
> >index 6e40659..0000000
> >--- a/meta-arago-distro/recipes-support/icu/icu-51.2/icu-pkgdata-
> >large-cmd.patch
> >+++ /dev/null
> >@@ -1,29 +0,0 @@
> >-pkgdata.cpp: use LARGE_BUFFER_MAX_SIZE for cmd
> >-
> >-Use LARGE_BUFFER_MAX_SIZE for cmd rather than
> SMALL_BUFFER_MAX_SIZE,
> >-otherwise there was a Segmentation fault error when the command line
> >is -long, this should be a misplay since other cmd uses
> >-LARGE_BUFFER_MAX_SIZE.
> >-
> >-Upstream-Status: Pending
> >-
> >-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> >----
> >- tools/pkgdata/pkgdata.cpp |    2 +-
> >- 1 file changed, 1 insertion(+), 1 deletion(-)
> >-
> >-diff --git a/tools/pkgdata/pkgdata.cpp b/tools/pkgdata/pkgdata.cpp
> >---- a/tools/pkgdata/pkgdata.cpp
> >-+++ b/tools/pkgdata/pkgdata.cpp
> >-@@ -1019,7 +1019,7 @@ normal_symlink_mode:
> >-
> >- static int32_t pkg_installLibrary(const char *installDir, const char
> >*targetDir, UBool noVersion) {
> >-     int32_t result = 0;
> >--    char cmd[SMALL_BUFFER_MAX_SIZE];
> >-+    char cmd[LARGE_BUFFER_MAX_SIZE];
> >-
> >-     sprintf(cmd, "cd %s && %s %s %s%s%s",
> >-             targetDir,
> >---
> >-1.7.10.4
> >-
> >diff --git a/meta-arago-distro/recipes-support/icu/icu.inc b/meta-
> >arago-distro/recipes-support/icu/icu.inc
> >deleted file mode 100644
> >index e3944cd..0000000
> >--- a/meta-arago-distro/recipes-support/icu/icu.inc
> >+++ /dev/null
> >@@ -1,55 +0,0 @@
> >-SUMMARY = "International Component for Unicode libraries"
> >-DESCRIPTION = "The International Component for Unicode (ICU) is a
> >mature, portable set of C/C++ and Java libraries for Unicode support,
> >software internationalization (I18N) and globalization (G11N), giving
> >applications the same results on all platforms."
> >-HOMEPAGE = "http://site.icu-project.org/"
> >-
> >-LICENSE = "ICU"
> >-DEPENDS = "icu-native"
> >-DEPENDS_class-native = ""
> >-
> >-S = "${WORKDIR}/icu/source"
> >-STAGING_ICU_DIR_NATIVE = "${STAGING_DATADIR_NATIVE}/${BPN}/${PV}"
> >-
> >-PARALLEL_MAKE = ""
> >-CPPFLAGS_append_libc-uclibc = " -DU_TIMEZONE=0"
> >-
> >-inherit autotools pkgconfig binconfig
> >-
> >-# ICU needs the native build directory as an argument to its --
> >with-cross-build option when -# cross-compiling. Taken the situation
> >that different builds may share a common sstate-cache -# into
> >consideration, the native build directory needs to be staged.
> >-EXTRA_OECONF = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}"
> >-EXTRA_OECONF_class-native = ""
> >-
> >-# ICU puts custom m4 autoconf functions in aclocal.m4.
> >-# However, this file is deleted in our build system.
> >-# To make it work, we copy aclocal.m4 to acinclude.m4.
> >-# This is a bug of ICU. See bug reference:
> >-# http://bugs.icu-project.org/trac/ticket/9790
> >-do_configure_prepend() {
> >-    [ -f ${S}/acinclude.m4 ] || cp ${S}/aclocal.m4
> >${S}/acinclude.m4
> >-}
> >-
> >-do_install_append_class-native() {
> >-	mkdir -p ${D}/${STAGING_ICU_DIR_NATIVE}/config
> >-	cp -r ${B}/config/icucross.mk
> >${D}/${STAGING_ICU_DIR_NATIVE}/config
> >-        cp -r ${B}/config/icucross.inc
> >${D}/${STAGING_ICU_DIR_NATIVE}/config
> >-	cp -r ${B}/lib ${D}/${STAGING_ICU_DIR_NATIVE}
> >-	cp -r ${B}/bin ${D}/${STAGING_ICU_DIR_NATIVE}
> >-	cp -r ${B}/tools ${D}/${STAGING_ICU_DIR_NATIVE}
> >-
> >-}
> >-
> >-PACKAGES =+ "libicudata libicuuc libicui18n libicule libiculx libicutu
> >libicuio"
> >-
> >-FILES_${PN}-dev += "${libdir}/${BPN}/"
> >-
> >-FILES_libicudata = "${libdir}/libicudata.so.*"
> >-FILES_libicuuc = "${libdir}/libicuuc.so.*"
> >-FILES_libicui18n = "${libdir}/libicui18n.so.*"
> >-FILES_libicule = "${libdir}/libicule.so.*"
> >-FILES_libiculx = "${libdir}/libiculx.so.*"
> >-FILES_libicutu = "${libdir}/libicutu.so.*"
> >-FILES_libicuio = "${libdir}/libicuio.so.*"
> >-
> >-BBCLASSEXTEND = "native"
> >-
> >diff --git a/meta-arago-distro/recipes-support/icu/icu-
> >51.2/disable-ldflagsicudt.patch b/meta-arago-distro/recipes-
> >support/icu/icu/disable-ldflagsicudt.patch
> >similarity index 100%
> >rename from meta-arago-distro/recipes-support/icu/icu-
> >51.2/disable-ldflagsicudt.patch
> >rename to meta-arago-distro/recipes-support/icu/icu/disable-
> >ldflagsicudt.patch
> >diff --git a/meta-arago-distro/recipes-support/icu/icu_51.2.bb
> >b/meta-arago-distro/recipes-support/icu/icu_51.2.bb
> >deleted file mode 100644
> >index 9a6fd70..0000000
> >--- a/meta-arago-distro/recipes-support/icu/icu_51.2.bb
> >+++ /dev/null
> >@@ -1,14 +0,0 @@
> >-require icu.inc
> >-
> >-LIC_FILES_CHKSUM =
> >"file://../license.html;md5=443a74288a72fad9069a74e7637192c1"
> >-
> >-PR = "r1"
> >-
> >-BASE_SRC_URI = "http://download.icu-
> >project.org/files/icu4c/${PV}/icu4c-51_2-src.tgz"
> >-SRC_URI = "${BASE_SRC_URI} \
> >-           file://icu-pkgdata-large-cmd.patch \
> >-           file://disable-ldflagsicudt.patch \
> >-          "
> >-
> >-SRC_URI[md5sum] = "072e501b87065f3a0ca888f1b5165709"
> >-SRC_URI[sha256sum] =
> >"deb027a05f1b3bec03298b96fb93b28c84e9683c22e6f94effa67fdc7bd704cc"
> >diff --git a/meta-arago-distro/recipes- support/icu/icu_51.2.bbappend
> >b/meta-arago-distro/recipes- support/icu/icu_51.2.bbappend new file
> >mode 100644 index 0000000..f812148
> >--- /dev/null
> >+++ b/meta-arago-distro/recipes-support/icu/icu_51.2.bbappend
> >@@ -0,0 +1,5 @@
> >+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> >+
> >+PR_append = "-arago0"
> >+
> >+SRC_URI += "file://disable-ldflagsicudt.patch"
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause
  2014-04-24 12:35   ` Maupin, Chase
@ 2014-04-24 14:34     ` Cooper Jr., Franklin
  0 siblings, 0 replies; 28+ messages in thread
From: Cooper Jr., Franklin @ 2014-04-24 14:34 UTC (permalink / raw)
  To: Maupin, Chase, Denys Dmytriyenko, meta-arago

Acked-by: Franklin Cooper Jr. <fcooper@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Thursday, April 24, 2014 7:36 AM
> To: Denys Dmytriyenko; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 7/8] iperf: update the license from NewBSD
> to the proper BSD-3-Clause
> 
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 7/8] iperf: update the license from NewBSD
> >to the proper BSD-3-Clause
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> >diff --git a/meta-arago-extras/recipes- benchmark/iperf/iperf_2.0.5.bb
> >b/meta-arago-extras/recipes- benchmark/iperf/iperf_2.0.5.bb index
> >208b955..32c76e1 100644
> >--- a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
> >+++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
> >@@ -1,10 +1,10 @@
> > DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth,
> >allowing the tuning of various parameters and UDP characteristics"
> > HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/"
> > SECTION = "console/network"
> >-LICENSE = "NewBSD"
> >+LICENSE = "BSD-3-Clause"
> > LIC_FILES_CHKSUM =
> >"file://COPYING;md5=e8478eae9f479e39bc34975193360298"
> >
> >-PR = "r0"
> >+PR = "r1"
> >
> > SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz \
> >             file://000-Iperf_Fix-CPU-Usage.diff \
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf
  2014-04-24 12:33   ` Maupin, Chase
@ 2014-04-24 14:50     ` Denys Dmytriyenko
  2014-04-24 14:52       ` Maupin, Chase
  0 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24 14:50 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago

On Thu, Apr 24, 2014 at 12:33:21PM +0000, Maupin, Chase wrote:
> 
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 3/8] qtbase: move setting
> >PACKAGECONFIG flags to arago.conf
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > meta-arago-distro/conf/distro/arago.conf               | 5 +++++
> > meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend | 4 +---
> > 2 files changed, 6 insertions(+), 3 deletions(-)
> >
> >diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-
> >arago-distro/conf/distro/arago.conf
> >index 1c8c572..7bd1de2 100644
> >--- a/meta-arago-distro/conf/distro/arago.conf
> >+++ b/meta-arago-distro/conf/distro/arago.conf
> >@@ -26,6 +26,11 @@ DISTRO_FEATURES = "alsa argp bluetooth ext2
> >irda largefile pcmcia usbgadget usbh
> > DISTRO_FEATURES += "opengl"
> > PACKAGECONFIG_pn-weston = "kms fbdev"
> >
> >+# Configure Qt5 flags (GLES is disabled for now)
> >+#PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
> >+PACKAGECONFIG_GL_pn-qtbase = "linuxfb"
> >+PACKAGECONFIG_DISTRO_pn-qtbase = "icu"
> >+
> 
> Can you explain this a bit more?  What is the advantage of moving it to the 
> config vs in the recipe?

Most of PACKAGECONFIG flags are set automatically based on DISTRO_FEATURES, 
but not all of them. The remainder can still be thought as distro-specific.
The big thing is to set those up centrally w/o creating unnecessary bbappends. 
Of course, in this case we still need bbappend for qtbase for patches, but I 
just wanted to start consolidating different PACKAGEGROUPS in one place, like 
I did with Weston above...


> > # ARM9 is not supported by the Linaro toolchain so default back
> >to the Arago
> > # toolchain for ARM9 based SOCs.
> > TC_SANE_DEFAULT :=
> >"${@bb.utils.contains('SOC_FAMILY','omapl138','arago','linaro',d)}
> >"
> >diff --git a/meta-arago-distro/recipes-
> >qt/qt5/qtbase_5.2.0.bbappend b/meta-arago-distro/recipes-
> >qt/qt5/qtbase_5.2.0.bbappend
> >index d35a948..2c0a52d 100644
> >--- a/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
> >+++ b/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
> >@@ -1,10 +1,8 @@
> > FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> >
> >-PACKAGECONFIG_GL = "icu linuxfb"
> >-
> > SRC_URI += " \
> > 	file://0001-qeglfswindow.cpp.patch \
> > 	file://0002-qeglfswindow.cpp.patch \
> > "
> >
> >-PR_append = "-arago0"
> >+PR_append = "-arago1"
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf
  2014-04-24 14:50     ` Denys Dmytriyenko
@ 2014-04-24 14:52       ` Maupin, Chase
  2014-04-24 14:58         ` Denys Dmytriyenko
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 14:52 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago


>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Thursday, April 24, 2014 9:51 AM
>To: Maupin, Chase
>Cc: Denys Dmytriyenko; meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 3/8] qtbase: move setting
>PACKAGECONFIG flags to arago.conf
>
>On Thu, Apr 24, 2014 at 12:33:21PM +0000, Maupin, Chase wrote:
>>
>> >-----Original Message-----
>> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>> >Sent: Wednesday, April 23, 2014 8:51 PM
>> >To: meta-arago@arago-project.org
>> >Subject: [meta-arago] [PATCH 3/8] qtbase: move setting
>> >PACKAGECONFIG flags to arago.conf
>> >
>> >From: Denys Dmytriyenko <denys@ti.com>
>> >
>> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>> >---
>> > meta-arago-distro/conf/distro/arago.conf               | 5
>+++++
>> > meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend | 4 +--
>-
>> > 2 files changed, 6 insertions(+), 3 deletions(-)
>> >
>> >diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-
>> >arago-distro/conf/distro/arago.conf
>> >index 1c8c572..7bd1de2 100644
>> >--- a/meta-arago-distro/conf/distro/arago.conf
>> >+++ b/meta-arago-distro/conf/distro/arago.conf
>> >@@ -26,6 +26,11 @@ DISTRO_FEATURES = "alsa argp bluetooth ext2
>> >irda largefile pcmcia usbgadget usbh
>> > DISTRO_FEATURES += "opengl"
>> > PACKAGECONFIG_pn-weston = "kms fbdev"
>> >
>> >+# Configure Qt5 flags (GLES is disabled for now)
>> >+#PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
>> >+PACKAGECONFIG_GL_pn-qtbase = "linuxfb"
>> >+PACKAGECONFIG_DISTRO_pn-qtbase = "icu"
>> >+
>>
>> Can you explain this a bit more?  What is the advantage of
>moving it to the
>> config vs in the recipe?
>
>Most of PACKAGECONFIG flags are set automatically based on
>DISTRO_FEATURES,
>but not all of them. The remainder can still be thought as distro-
>specific.
>The big thing is to set those up centrally w/o creating
>unnecessary bbappends.
>Of course, in this case we still need bbappend for qtbase for
>patches, but I
>just wanted to start consolidating different PACKAGEGROUPS in one
>place, like
>I did with Weston above...

OK, makes sense.  And the branding files would still allow for overrides of this?

>
>
>> > # ARM9 is not supported by the Linaro toolchain so default
>back
>> >to the Arago
>> > # toolchain for ARM9 based SOCs.
>> > TC_SANE_DEFAULT :=
>>
>>"${@bb.utils.contains('SOC_FAMILY','omapl138','arago','linaro',d)
>}
>> >"
>> >diff --git a/meta-arago-distro/recipes-
>> >qt/qt5/qtbase_5.2.0.bbappend b/meta-arago-distro/recipes-
>> >qt/qt5/qtbase_5.2.0.bbappend
>> >index d35a948..2c0a52d 100644
>> >--- a/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
>> >+++ b/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
>> >@@ -1,10 +1,8 @@
>> > FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>> >
>> >-PACKAGECONFIG_GL = "icu linuxfb"
>> >-
>> > SRC_URI += " \
>> > 	file://0001-qeglfswindow.cpp.patch \
>> > 	file://0002-qeglfswindow.cpp.patch \
>> > "
>> >
>> >-PR_append = "-arago0"
>> >+PR_append = "-arago1"
>> >--
>> >1.9.2
>> >
>> >_______________________________________________
>> >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] 28+ messages in thread

* Re: [PATCH 8/8] linux-ti-staging: disable AUTOREV
  2014-04-24 12:36   ` Maupin, Chase
@ 2014-04-24 14:54     ` Denys Dmytriyenko
  2014-04-24 14:55       ` Maupin, Chase
  0 siblings, 1 reply; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24 14:54 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago

On Thu, Apr 24, 2014 at 12:36:35PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, April 23, 2014 8:51 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH 8/8] linux-ti-staging: disable
> >AUTOREV
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > meta-arago-distro/recipes-kernel/linux/linux-ti-
> >staging_3.12.bbappend | 4 +---
> > 1 file changed, 1 insertion(+), 3 deletions(-)
> >
> >diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-
> >staging_3.12.bbappend b/meta-arago-distro/recipes-
> >kernel/linux/linux-ti-staging_3.12.bbappend
> >index f99482c..2a6f090 100644
> >--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-
> >staging_3.12.bbappend
> >+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-
> >staging_3.12.bbappend
> >@@ -1,11 +1,9 @@
> >-MACHINE_KERNEL_PR_append = "-arago0"
> >+MACHINE_KERNEL_PR_append = "-arago1"
> >
> > FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
> >
> > require copy-defconfig.inc
> >
> >-SRCREV = "${AUTOREV}"
> 
> Any reason not to autorev to pickup the latest stable releases?

AUTOREVs are evil!

It just pissed me off yesterday, when I was debugging something and it decided 
to trigger almost a complete rebuild, because kernel just got updated...


> > KERNEL_LOCALVERSION = "-g${@d.getVar('SRCPV',
> >True).partition('+')[2][0:7]}"
> >
> > kernel_do_configure_prepend() {
> >--
> >1.9.2
> >
> >_______________________________________________
> >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] 28+ messages in thread

* Re: [PATCH 8/8] linux-ti-staging: disable AUTOREV
  2014-04-24 14:54     ` Denys Dmytriyenko
@ 2014-04-24 14:55       ` Maupin, Chase
  2014-04-24 15:08         ` Denys Dmytriyenko
  0 siblings, 1 reply; 28+ messages in thread
From: Maupin, Chase @ 2014-04-24 14:55 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Thursday, April 24, 2014 9:55 AM
>To: Maupin, Chase
>Cc: Denys Dmytriyenko; meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 8/8] linux-ti-staging: disable
>AUTOREV
>
>On Thu, Apr 24, 2014 at 12:36:35PM +0000, Maupin, Chase wrote:
>> >-----Original Message-----
>> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
>> >Sent: Wednesday, April 23, 2014 8:51 PM
>> >To: meta-arago@arago-project.org
>> >Subject: [meta-arago] [PATCH 8/8] linux-ti-staging: disable
>> >AUTOREV
>> >
>> >From: Denys Dmytriyenko <denys@ti.com>
>> >
>> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>> >---
>> > meta-arago-distro/recipes-kernel/linux/linux-ti-
>> >staging_3.12.bbappend | 4 +---
>> > 1 file changed, 1 insertion(+), 3 deletions(-)
>> >
>> >diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-
>> >staging_3.12.bbappend b/meta-arago-distro/recipes-
>> >kernel/linux/linux-ti-staging_3.12.bbappend
>> >index f99482c..2a6f090 100644
>> >--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-
>> >staging_3.12.bbappend
>> >+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-
>> >staging_3.12.bbappend
>> >@@ -1,11 +1,9 @@
>> >-MACHINE_KERNEL_PR_append = "-arago0"
>> >+MACHINE_KERNEL_PR_append = "-arago1"
>> >
>> > FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>> >
>> > require copy-defconfig.inc
>> >
>> >-SRCREV = "${AUTOREV}"
>>
>> Any reason not to autorev to pickup the latest stable releases?
>
>AUTOREVs are evil!

:)

>
>It just pissed me off yesterday, when I was debugging something
>and it decided
>to trigger almost a complete rebuild, because kernel just got
>updated...

OK.  Let's not forget to bump regularly then.

>
>
>> > KERNEL_LOCALVERSION = "-g${@d.getVar('SRCPV',
>> >True).partition('+')[2][0:7]}"
>> >
>> > kernel_do_configure_prepend() {
>> >--
>> >1.9.2
>> >
>> >_______________________________________________
>> >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] 28+ messages in thread

* Re: [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf
  2014-04-24 14:52       ` Maupin, Chase
@ 2014-04-24 14:58         ` Denys Dmytriyenko
  0 siblings, 0 replies; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24 14:58 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago

On Thu, Apr 24, 2014 at 10:52:14AM -0400, Maupin, Chase wrote:
> 
> >-----Original Message-----
> >From: Dmytriyenko, Denys
> >Sent: Thursday, April 24, 2014 9:51 AM
> >To: Maupin, Chase
> >Cc: Denys Dmytriyenko; meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [PATCH 3/8] qtbase: move setting
> >PACKAGECONFIG flags to arago.conf
> >
> >On Thu, Apr 24, 2014 at 12:33:21PM +0000, Maupin, Chase wrote:
> >>
> >> >-----Original Message-----
> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >> >Sent: Wednesday, April 23, 2014 8:51 PM
> >> >To: meta-arago@arago-project.org
> >> >Subject: [meta-arago] [PATCH 3/8] qtbase: move setting
> >> >PACKAGECONFIG flags to arago.conf
> >> >
> >> >From: Denys Dmytriyenko <denys@ti.com>
> >> >
> >> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >> >---
> >> > meta-arago-distro/conf/distro/arago.conf               | 5
> >+++++
> >> > meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend | 4 +--
> >-
> >> > 2 files changed, 6 insertions(+), 3 deletions(-)
> >> >
> >> >diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-
> >> >arago-distro/conf/distro/arago.conf
> >> >index 1c8c572..7bd1de2 100644
> >> >--- a/meta-arago-distro/conf/distro/arago.conf
> >> >+++ b/meta-arago-distro/conf/distro/arago.conf
> >> >@@ -26,6 +26,11 @@ DISTRO_FEATURES = "alsa argp bluetooth ext2
> >> >irda largefile pcmcia usbgadget usbh
> >> > DISTRO_FEATURES += "opengl"
> >> > PACKAGECONFIG_pn-weston = "kms fbdev"
> >> >
> >> >+# Configure Qt5 flags (GLES is disabled for now)
> >> >+#PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
> >> >+PACKAGECONFIG_GL_pn-qtbase = "linuxfb"
> >> >+PACKAGECONFIG_DISTRO_pn-qtbase = "icu"
> >> >+
> >>
> >> Can you explain this a bit more?  What is the advantage of
> >moving it to the
> >> config vs in the recipe?
> >
> >Most of PACKAGECONFIG flags are set automatically based on
> >DISTRO_FEATURES,
> >but not all of them. The remainder can still be thought as distro-
> >specific.
> >The big thing is to set those up centrally w/o creating
> >unnecessary bbappends.
> >Of course, in this case we still need bbappend for qtbase for
> >patches, but I
> >just wanted to start consolidating different PACKAGEGROUPS in one

Obviously, this instance above should be PACKAGECONFIG, not PACKAGEGROUP - 
force of habit... :)


> >place, like
> >I did with Weston above...
> 
> OK, makes sense.  And the branding files would still allow for overrides of 
> this?

Indeed. Even though it is a list, but now we have _remove override to easily 
remove from the list.


> >> > # ARM9 is not supported by the Linaro toolchain so default
> >back
> >> >to the Arago
> >> > # toolchain for ARM9 based SOCs.
> >> > TC_SANE_DEFAULT :=
> >>
> >>"${@bb.utils.contains('SOC_FAMILY','omapl138','arago','linaro',d)
> >}
> >> >"
> >> >diff --git a/meta-arago-distro/recipes-
> >> >qt/qt5/qtbase_5.2.0.bbappend b/meta-arago-distro/recipes-
> >> >qt/qt5/qtbase_5.2.0.bbappend
> >> >index d35a948..2c0a52d 100644
> >> >--- a/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
> >> >+++ b/meta-arago-distro/recipes-qt/qt5/qtbase_5.2.0.bbappend
> >> >@@ -1,10 +1,8 @@
> >> > FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
> >> >
> >> >-PACKAGECONFIG_GL = "icu linuxfb"
> >> >-
> >> > SRC_URI += " \
> >> > 	file://0001-qeglfswindow.cpp.patch \
> >> > 	file://0002-qeglfswindow.cpp.patch \
> >> > "
> >> >
> >> >-PR_append = "-arago0"
> >> >+PR_append = "-arago1"
> >> >--
> >> >1.9.2
> >> >
> >> >_______________________________________________
> >> >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] 28+ messages in thread

* Re: [PATCH 8/8] linux-ti-staging: disable AUTOREV
  2014-04-24 14:55       ` Maupin, Chase
@ 2014-04-24 15:08         ` Denys Dmytriyenko
  0 siblings, 0 replies; 28+ messages in thread
From: Denys Dmytriyenko @ 2014-04-24 15:08 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago

On Thu, Apr 24, 2014 at 10:55:44AM -0400, Maupin, Chase wrote:
> >-----Original Message-----
> >From: Dmytriyenko, Denys
> >Sent: Thursday, April 24, 2014 9:55 AM
> >To: Maupin, Chase
> >Cc: Denys Dmytriyenko; meta-arago@arago-project.org
> >Subject: Re: [meta-arago] [PATCH 8/8] linux-ti-staging: disable
> >AUTOREV
> >
> >On Thu, Apr 24, 2014 at 12:36:35PM +0000, Maupin, Chase wrote:
> >> >-----Original Message-----
> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >> >Sent: Wednesday, April 23, 2014 8:51 PM
> >> >To: meta-arago@arago-project.org
> >> >Subject: [meta-arago] [PATCH 8/8] linux-ti-staging: disable
> >> >AUTOREV
> >> >
> >> >From: Denys Dmytriyenko <denys@ti.com>
> >> >
> >> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >> >---
> >> > meta-arago-distro/recipes-kernel/linux/linux-ti-
> >> >staging_3.12.bbappend | 4 +---
> >> > 1 file changed, 1 insertion(+), 3 deletions(-)
> >> >
> >> >diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-
> >> >staging_3.12.bbappend b/meta-arago-distro/recipes-
> >> >kernel/linux/linux-ti-staging_3.12.bbappend
> >> >index f99482c..2a6f090 100644
> >> >--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-
> >> >staging_3.12.bbappend
> >> >+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-
> >> >staging_3.12.bbappend
> >> >@@ -1,11 +1,9 @@
> >> >-MACHINE_KERNEL_PR_append = "-arago0"
> >> >+MACHINE_KERNEL_PR_append = "-arago1"
> >> >
> >> > FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
> >> >
> >> > require copy-defconfig.inc
> >> >
> >> >-SRCREV = "${AUTOREV}"
> >>
> >> Any reason not to autorev to pickup the latest stable releases?
> >
> >AUTOREVs are evil!
> 
> :)
> 
> >
> >It just pissed me off yesterday, when I was debugging something
> >and it decided
> >to trigger almost a complete rebuild, because kernel just got
> >updated...
> 
> OK.  Let's not forget to bump regularly then.

It's 3.12 line - I've already bumped to 3.12.17 and 3.12.18 was released 
yesterday. I'll keep bumping stable versions.
But most probably we'll switch to 3.14/3.15 by the time we'll be doing any 
Dora-based releases... So keeping 3.12 AUTOREV-ed doesn't make much sense now.


> >> > KERNEL_LOCALVERSION = "-g${@d.getVar('SRCPV',
> >> >True).partition('+')[2][0:7]}"
> >> >
> >> > kernel_do_configure_prepend() {
> >> >--
> >> >1.9.2
> >> >
> >> >_______________________________________________
> >> >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] 28+ messages in thread

end of thread, other threads:[~2014-04-24 15:08 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-24  1:51 [PATCH 1/8] arago.conf: minor cleanup, version bump Denys Dmytriyenko
2014-04-24  1:51 ` [PATCH 2/8] u-boot-ti-staging: remove UBOOT_LOCALVERSION handling, now upstream Denys Dmytriyenko
2014-04-24 12:32   ` Maupin, Chase
2014-04-24 14:29     ` Cooper Jr., Franklin
2014-04-24  1:51 ` [PATCH 3/8] qtbase: move setting PACKAGECONFIG flags to arago.conf Denys Dmytriyenko
2014-04-24 12:33   ` Maupin, Chase
2014-04-24 14:50     ` Denys Dmytriyenko
2014-04-24 14:52       ` Maupin, Chase
2014-04-24 14:58         ` Denys Dmytriyenko
2014-04-24  1:51 ` [PATCH 4/8] wpa-gui-e: fix recipe permissions Denys Dmytriyenko
2014-04-24 12:33   ` Maupin, Chase
2014-04-24 14:29     ` Cooper Jr., Franklin
2014-04-24  1:51 ` [PATCH 5/8] base-files: remove symlinking of /run vs. /var/run not needed in Dora Denys Dmytriyenko
2014-04-24 12:34   ` Maupin, Chase
2014-04-24 14:30     ` Cooper Jr., Franklin
2014-04-24  1:51 ` [PATCH 6/8] icu: replace overlayed recipe with bbappend for 1 patch Denys Dmytriyenko
2014-04-24 12:35   ` Maupin, Chase
2014-04-24 14:32     ` Cooper Jr., Franklin
2014-04-24  1:51 ` [PATCH 7/8] iperf: update the license from NewBSD to the proper BSD-3-Clause Denys Dmytriyenko
2014-04-24 12:35   ` Maupin, Chase
2014-04-24 14:34     ` Cooper Jr., Franklin
2014-04-24  1:51 ` [PATCH 8/8] linux-ti-staging: disable AUTOREV Denys Dmytriyenko
2014-04-24 12:36   ` Maupin, Chase
2014-04-24 14:54     ` Denys Dmytriyenko
2014-04-24 14:55       ` Maupin, Chase
2014-04-24 15:08         ` Denys Dmytriyenko
2014-04-24 12:31 ` [PATCH 1/8] arago.conf: minor cleanup, version bump Maupin, Chase
2014-04-24 14:29   ` 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.