All of lore.kernel.org
 help / color / mirror / Atom feed
* [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access
@ 2018-08-29  0:13 Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 2/7] toolchain-gcc: update preference for glibc 2.28 Denys Dmytriyenko
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:13 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../recipes-support/devmem2/devmem2.bbappend       |  1 -
 ...sure-word-is-32-bit-and-add-support-for-6.patch | 70 ----------------------
 2 files changed, 71 deletions(-)
 delete mode 100644 meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem.c-ensure-word-is-32-bit-and-add-support-for-6.patch

diff --git a/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend b/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend
index 1e30c9b..281b76a 100644
--- a/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend
+++ b/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend
@@ -1,6 +1,5 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
 SRC_URI += " \
-file://0001-devmem.c-ensure-word-is-32-bit-and-add-support-for-6.patch \
 file://0001-devmem2-support-different-page-sizes-at-run-time.patch \
 "
diff --git a/meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem.c-ensure-word-is-32-bit-and-add-support-for-6.patch b/meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem.c-ensure-word-is-32-bit-and-add-support-for-6.patch
deleted file mode 100644
index ad8ae67..0000000
--- a/meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem.c-ensure-word-is-32-bit-and-add-support-for-6.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-From 1360a907879dd24041797a3b709d49aeac2ab444 Mon Sep 17 00:00:00 2001
-From: Denys Dmytriyenko <denys@ti.com>
-Date: Tue, 29 May 2018 16:55:42 -0400
-Subject: [PATCH] devmem.c: ensure word is 32-bit and add support for 64-bit
- double
-
-Signed-off-by: Denys Dmytriyenko <denys@ti.com>
----
- devmem2.c | 23 +++++++++++++++++------
- 1 file changed, 17 insertions(+), 6 deletions(-)
-
-diff --git a/devmem2.c b/devmem2.c
-index 5845381..68131b2 100644
---- a/devmem2.c
-+++ b/devmem2.c
-@@ -39,6 +39,7 @@
- 
- #include <stdio.h>
- #include <stdlib.h>
-+#include <stdint.h>
- #include <unistd.h>
- #include <string.h>
- #include <errno.h>
-@@ -69,7 +70,7 @@ int main(int argc, char **argv) {
- 	if(argc < 2) {
- 		fprintf(stderr, "\nUsage:\t%s { address } [ type [ data ] ]\n"
- 			"\taddress : memory address to act upon\n"
--			"\ttype    : access operation type : [b]yte, [h]alfword, [w]ord\n"
-+			"\ttype    : access operation type : [b]yte, [h]alfword, [w]ord, [d]ouble\n"
- 			"\tdata    : data to be written\n\n",
- 			argv[0]);
- 		exit(1);
-@@ -103,9 +104,14 @@ int main(int argc, char **argv) {
- 			read_result = *((unsigned short *) virt_addr);
- 			break;
- 		case 'w':
--			data_size = sizeof(unsigned long);
-+			data_size = sizeof(uint32_t);
- 			virt_addr = fixup_addr(virt_addr, data_size);
--			read_result = *((unsigned long *) virt_addr);
-+			read_result = *((uint32_t *) virt_addr);
-+			break;
-+		case 'd':
-+			data_size = sizeof(uint64_t);
-+			virt_addr = fixup_addr(virt_addr, data_size);
-+			read_result = *((uint64_t *) virt_addr);
- 			break;
- 		default:
- 			fprintf(stderr, "Illegal data type '%c'.\n", access_type);
-@@ -129,9 +135,14 @@ int main(int argc, char **argv) {
- 				read_result = *((unsigned short *) virt_addr);
- 				break;
- 			case 'w':
--				virt_addr = fixup_addr(virt_addr, sizeof(unsigned long));
--				*((unsigned long *) virt_addr) = write_val;
--				read_result = *((unsigned long *) virt_addr);
-+				virt_addr = fixup_addr(virt_addr, sizeof(uint32_t));
-+				*((uint32_t *) virt_addr) = write_val;
-+				read_result = *((uint32_t *) virt_addr);
-+				break;
-+			case 'd':
-+				virt_addr = fixup_addr(virt_addr, sizeof(uint64_t));
-+				*((uint64_t *) virt_addr) = write_val;
-+				read_result = *((uint64_t *) virt_addr);
- 				break;
- 		}
- 		sprintf(fmt_str, "Write at address 0x%%08lX (%%p): 0x%%0%dlX, "
--- 
-2.7.4
-
-- 
2.7.4



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

* [master][PATCH 2/7] toolchain-gcc: update preference for glibc 2.28
  2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
@ 2018-08-29  0:13 ` Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 3/7] arago-prefs: update prefernce for gstreamer to 1.14.2 Denys Dmytriyenko
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:13 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/include/toolchain-gcc.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/toolchain-gcc.inc b/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
index da1deea..8e83edb 100644
--- a/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
+++ b/meta-arago-distro/conf/distro/include/toolchain-gcc.inc
@@ -15,7 +15,7 @@ PREFERRED_PROVIDER_gdb-cross-canadian-${TRANSLATED_TARGET_ARCH} = "gdb-cross-can
 # Set Cross and SDK toolchain preferences
 SDKGCCVERSION ?= "7.3%"
 SDKBINUVERSION ?= "2.31%"
-SDKGLIBCVERSION ?= "2.27%"
+SDKGLIBCVERSION ?= "2.28%"
 SDKLINUXLIBCVERSION ?= "4.14%"
 
 PREFERRED_VERSION_gcc-crosssdk-${SDK_SYS} ?= "${SDKGCCVERSION}"
@@ -34,7 +34,7 @@ PREFERRED_VERSION_nativesdk-glibc-initial ?= "${SDKGLIBCVERSION}"
 # Can be overwritten globally, if needed
 GCCVERSION ?= "7.3%"
 BINUVERSION ?= "2.31%"
-GLIBCVERSION ?= "2.27%"
+GLIBCVERSION ?= "2.28%"
 LINUXLIBCVERSION ?= "4.14%"
 
 PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
-- 
2.7.4



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

* [master][PATCH 3/7] arago-prefs: update prefernce for gstreamer to 1.14.2
  2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 2/7] toolchain-gcc: update preference for glibc 2.28 Denys Dmytriyenko
@ 2018-08-29  0:13 ` Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 4/7] packagegroup-arago-cross-canadian: fix leaked deprecated base_conditional Denys Dmytriyenko
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:13 UTC (permalink / raw)
  To: meta-arago

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

diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index 0d2f31c..d5f7fbb 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -47,9 +47,9 @@ PREFERRED_PROVIDER_wpa-supplicant_ti33x = "wpa-supplicant-wl18xx"
 PREFERRED_PROVIDER_wpa-supplicant_ti43x = "wpa-supplicant-wl18xx"
 PREFERRED_PROVIDER_wpa-supplicant_omap-a15 = "wpa-supplicant-wl18xx"
 
-PREFERRED_VERSION_gstreamer1.0 = "1.14.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-ugly = "1.14.1"
-PREFERRED_VERSION_gstreamer1.0-libav = "1.14.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-good = "1.14.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-bad = "1.14.1"
-PREFERRED_VERSION_gstreamer1.0-plugins-base = "1.14.1"
+PREFERRED_VERSION_gstreamer1.0 = "1.14.2"
+PREFERRED_VERSION_gstreamer1.0-plugins-ugly = "1.14.2"
+PREFERRED_VERSION_gstreamer1.0-libav = "1.14.2"
+PREFERRED_VERSION_gstreamer1.0-plugins-good = "1.14.2"
+PREFERRED_VERSION_gstreamer1.0-plugins-bad = "1.14.2"
+PREFERRED_VERSION_gstreamer1.0-plugins-base = "1.14.2"
-- 
2.7.4



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

* [master][PATCH 4/7] packagegroup-arago-cross-canadian: fix leaked deprecated base_conditional
  2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 2/7] toolchain-gcc: update preference for glibc 2.28 Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 3/7] arago-prefs: update prefernce for gstreamer to 1.14.2 Denys Dmytriyenko
@ 2018-08-29  0:13 ` Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 5/7] v4l-utils: remove old local version as meta-oe provides newer one Denys Dmytriyenko
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:13 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 .../packagegroups/packagegroup-arago-cross-canadian.bbappend            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-cross-canadian.bbappend b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-cross-canadian.bbappend
index b05e493..fb728e0 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-cross-canadian.bbappend
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-cross-canadian.bbappend
@@ -6,5 +6,5 @@ SECONDARY_TOOLCHAIN = "gcc-cross-canadian-${SECONDARY_TARGET_ARCH} \
                        binutils-cross-canadian-${SECONDARY_TARGET_ARCH}"
 
 RDEPENDS_${PN}_append = " \
-    ${@base_conditional('SECONDARY_TARGET_ARCH', '', '', '${SECONDARY_TOOLCHAIN}', d)} \
+    ${@oe.utils.conditional('SECONDARY_TARGET_ARCH', '', '', '${SECONDARY_TOOLCHAIN}', d)} \
 "
-- 
2.7.4



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

* [master][PATCH 5/7] v4l-utils: remove old local version as meta-oe provides newer one
  2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
                   ` (2 preceding siblings ...)
  2018-08-29  0:13 ` [master][PATCH 4/7] packagegroup-arago-cross-canadian: fix leaked deprecated base_conditional Denys Dmytriyenko
@ 2018-08-29  0:13 ` Denys Dmytriyenko
  2018-08-29  0:13 ` [master][PATCH 6/7] gstreamer1.0-plugins-bad: update bbappend, whitelist faad2 as commerical Denys Dmytriyenko
  2018-08-29  0:14 ` [master][PATCH 7/7] thttpd: add dependency on virtual/crypt Denys Dmytriyenko
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:13 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 ...a-ctl-Don-t-install-libmediactl-and-libv4.patch | 41 --------------------
 .../v4l-utils/export-mediactl-headers.patch        | 15 --------
 .../v4l2apps/v4l-utils/mediactl-pkgconfig.patch    | 12 ------
 .../v4l2apps/v4l-utils_1.10.1.bb                   | 45 ----------------------
 4 files changed, 113 deletions(-)
 delete mode 100644 meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch
 delete mode 100644 meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/export-mediactl-headers.patch
 delete mode 100644 meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/mediactl-pkgconfig.patch
 delete mode 100644 meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils_1.10.1.bb

diff --git a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch b/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch
deleted file mode 100644
index 4b3de3c..0000000
--- a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 4ee15a8a69b84526ece1180a288a37db077bcd9b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 27 Feb 2015 21:55:36 +0000
-Subject: [PATCH] Revert "media-ctl: Don't install libmediactl and
- libv4l2subdev"
-
-This reverts commit 0911dce53b08b0df3066be2c75f67e8a314d8729.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Conflicts:
-	utils/media-ctl/Makefile.am
----
- utils/media-ctl/Makefile.am | 11 +++--------
- 1 file changed, 3 insertions(+), 8 deletions(-)
-
-diff --git a/utils/media-ctl/Makefile.am b/utils/media-ctl/Makefile.am
-index a3931fb..fe1fea5 100644
---- a/utils/media-ctl/Makefile.am
-+++ b/utils/media-ctl/Makefile.am
-@@ -1,14 +1,9 @@
--noinst_LTLIBRARIES = libmediactl.la libv4l2subdev.la
--
-+lib_LTLIBRARIES = libmediactl.la libv4l2subdev.la
- libmediactl_la_SOURCES = libmediactl.c mediactl-priv.h
--libmediactl_la_CFLAGS = -static $(LIBUDEV_CFLAGS)
--libmediactl_la_LDFLAGS = -static $(LIBUDEV_LIBS)
--
-+libmediactl_la_CFLAGS = $(LIBUDEV_CFLAGS)
-+libmediactl_la_LDFLAGS = $(LIBUDEV_LIBS)
- libv4l2subdev_la_SOURCES = libv4l2subdev.c
- libv4l2subdev_la_LIBADD = libmediactl.la
--libv4l2subdev_la_CFLAGS = -static
--libv4l2subdev_la_LDFLAGS = -static
--
- mediactl_includedir=$(includedir)/mediactl
- noinst_HEADERS = mediactl.h v4l2subdev.h
- 
--- 
-2.1.4
-
diff --git a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/export-mediactl-headers.patch b/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/export-mediactl-headers.patch
deleted file mode 100644
index c610e7e..0000000
--- a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/export-mediactl-headers.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: v4l-utils-1.6.2/utils/media-ctl/Makefile.am
-===================================================================
---- v4l-utils-1.6.2.orig/utils/media-ctl/Makefile.am
-+++ v4l-utils-1.6.2/utils/media-ctl/Makefile.am
-@@ -4,8 +4,8 @@ libmediactl_la_CFLAGS = $(LIBUDEV_CFLAGS
- libmediactl_la_LDFLAGS = $(LIBUDEV_LIBS)
- libv4l2subdev_la_SOURCES = libv4l2subdev.c
- libv4l2subdev_la_LIBADD = libmediactl.la
--mediactl_includedir=$(includedir)/mediactl
--noinst_HEADERS = mediactl.h v4l2subdev.h
-+otherincludedir = $(includedir)/mediactl
-+otherinclude_HEADERS = mediactl.h v4l2subdev.h
- 
- pkgconfig_DATA = libmediactl.pc
- bin_PROGRAMS = media-ctl
diff --git a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/mediactl-pkgconfig.patch b/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/mediactl-pkgconfig.patch
deleted file mode 100644
index 34fb3cf..0000000
--- a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils/mediactl-pkgconfig.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: v4l-utils-1.6.2/utils/media-ctl/Makefile.am
-===================================================================
---- v4l-utils-1.6.2.orig/utils/media-ctl/Makefile.am
-+++ v4l-utils-1.6.2/utils/media-ctl/Makefile.am
-@@ -7,6 +7,7 @@ libv4l2subdev_la_LIBADD = libmediactl.la
- mediactl_includedir=$(includedir)/mediactl
- noinst_HEADERS = mediactl.h v4l2subdev.h
- 
-+pkgconfig_DATA = libmediactl.pc
- bin_PROGRAMS = media-ctl
- media_ctl_SOURCES = media-ctl.c options.c options.h tools.h
- media_ctl_LDADD = libmediactl.la libv4l2subdev.la
diff --git a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils_1.10.1.bb b/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils_1.10.1.bb
deleted file mode 100644
index 6148695..0000000
--- a/meta-arago-extras/recipes-multimedia/v4l2apps/v4l-utils_1.10.1.bb
+++ /dev/null
@@ -1,45 +0,0 @@
-SUMMARY = "v4l2 and IR applications"
-LICENSE = "GPLv2 & LGPLv2.1"
-LIC_FILES_CHKSUM = "file://COPYING;md5=48da9957849056017dc568bbc43d8975 \
-                    file://COPYING.libv4l;md5=d749e86a105281d7a44c2328acebc4b0"
-PROVIDES = "libv4l media-ctl"
-
-DEPENDS = "jpeg \
-           ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'virtual/libx11', '', d)}"
-
-inherit autotools gettext pkgconfig
-
-PACKAGECONFIG ??= "media-ctl"
-PACKAGECONFIG[media-ctl] = "--enable-v4l-utils,--disable-v4l-utils,,"
-
-SRC_URI = "http://linuxtv.org/downloads/v4l-utils/v4l-utils-${PV}.tar.bz2 \
-           file://0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch \
-           file://mediactl-pkgconfig.patch \
-           file://export-mediactl-headers.patch \
-          "
-SRC_URI[md5sum] = "936c9c58343840e91294e4dcec7dc05f"
-SRC_URI[sha256sum] = "6147ccc29fe7dd3c5c3994d613c4f2a099bac8b44694a96e5cf4d7caca8336c0"
-
-EXTRA_OECONF = "--disable-qv4l2 --enable-shared --with-udevdir=${base_libdir}/udev"
-
-VIRTUAL-RUNTIME_ir-keytable-keymaps ?= "rc-keymaps"
-
-PACKAGES =+ "media-ctl ir-keytable rc-keymaps libv4l libv4l-dbg libv4l-dev"
-
-FILES_media-ctl = "${bindir}/media-ctl ${libdir}/libmediactl.so.*"
-
-FILES_ir-keytable = "${bindir}/ir-keytable ${base_libdir}/udev/rules.d/*-infrared.rules"
-RDEPENDS_ir-keytable += "${VIRTUAL-RUNTIME_ir-keytable-keymaps}"
-
-FILES_rc-keymaps = "${sysconfdir}/rc* ${base_libdir}/udev/rc*"
-
-FILES_${PN} = "${bindir} ${sbindir}"
-
-FILES_libv4l += "${libdir}/libv4l*${SOLIBS} ${libdir}/libv4l/*.so ${libdir}/libv4l/plugins/*.so \
-                 ${libdir}/libdvbv5*${SOLIBS} \
-                 ${libdir}/libv4l/*-decomp"
-
-FILES_libv4l-dbg += "${libdir}/libv4l/.debug ${libdir}/libv4l/plugins/.debug"
-FILES_libv4l-dev += "${includedir} ${libdir}/pkgconfig \
-                     ${libdir}/libv4l*${SOLIBSDEV} ${libdir}/*.la \
-                     ${libdir}/v4l*${SOLIBSDEV} ${libdir}/libv4l/*.la ${libdir}/libv4l/plugins/*.la"
-- 
2.7.4



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

* [master][PATCH 6/7] gstreamer1.0-plugins-bad: update bbappend, whitelist faad2 as commerical
  2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
                   ` (3 preceding siblings ...)
  2018-08-29  0:13 ` [master][PATCH 5/7] v4l-utils: remove old local version as meta-oe provides newer one Denys Dmytriyenko
@ 2018-08-29  0:13 ` Denys Dmytriyenko
  2018-08-29  0:14 ` [master][PATCH 7/7] thttpd: add dependency on virtual/crypt Denys Dmytriyenko
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:13 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf                                | 2 +-
 ...ins-bad_1.14.1.bbappend => gstreamer1.0-plugins-bad_1.14.2.bbappend} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta-arago-extras/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-bad_1.14.1.bbappend => gstreamer1.0-plugins-bad_1.14.2.bbappend} (100%)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index 773a1b6..51a57a3 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -179,7 +179,7 @@ ENTERPRISE_DISTRO = "1"
 # disable by default the codecs in libav that causes issues with shipping an
 # Arago based SDK. No need to prevent gst-ffmpeg from being used since we
 # disable troublesome software.
-LICENSE_FLAGS_WHITELIST = "commercial_gst-ffmpeg commercial_gstreamer1.0-libav"
+LICENSE_FLAGS_WHITELIST = "commercial_gst-ffmpeg commercial_gstreamer1.0-libav commercial_faad2"
 
 # Do not package own copy of perl into devkit, rely on host one
 ASSUME_PROVIDED += "nativesdk-perl"
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bbappend b/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.2.bbappend
similarity index 100%
rename from meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bbappend
rename to meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.2.bbappend
-- 
2.7.4



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

* [master][PATCH 7/7] thttpd: add dependency on virtual/crypt
  2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
                   ` (4 preceding siblings ...)
  2018-08-29  0:13 ` [master][PATCH 6/7] gstreamer1.0-plugins-bad: update bbappend, whitelist faad2 as commerical Denys Dmytriyenko
@ 2018-08-29  0:14 ` Denys Dmytriyenko
  5 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2018-08-29  0:14 UTC (permalink / raw)
  To: meta-arago

Required with glibc 2.28+ where crypt is no longer part of glibc.

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 meta-arago-extras/recipes-extended/thttpd/thttpd_2.28.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-arago-extras/recipes-extended/thttpd/thttpd_2.28.bb b/meta-arago-extras/recipes-extended/thttpd/thttpd_2.28.bb
index 0477509..741e1bd 100644
--- a/meta-arago-extras/recipes-extended/thttpd/thttpd_2.28.bb
+++ b/meta-arago-extras/recipes-extended/thttpd/thttpd_2.28.bb
@@ -6,6 +6,8 @@ LICENSE = "BSD"
 HOMEPAGE = "http://www.acme.com/software/thttpd/"
 PR ="r0"
 
+DEPENDS += "virtual/crypt"
+
 LIC_FILES_CHKSUM = "file://thttpd.c;beginline=1;endline=26;md5=525c6428ecff95f4e71d5b3c88a34fff"
 SRC_URI = "http://www.acme.com/software/thttpd/thttpd-${PV}.tar.gz \
 	   file://install.patch \
-- 
2.7.4



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

end of thread, other threads:[~2018-08-29  0:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-29  0:13 [master][PATCH 1/7] devmem2: drop upstreamed patch for proper 32/64 bit access Denys Dmytriyenko
2018-08-29  0:13 ` [master][PATCH 2/7] toolchain-gcc: update preference for glibc 2.28 Denys Dmytriyenko
2018-08-29  0:13 ` [master][PATCH 3/7] arago-prefs: update prefernce for gstreamer to 1.14.2 Denys Dmytriyenko
2018-08-29  0:13 ` [master][PATCH 4/7] packagegroup-arago-cross-canadian: fix leaked deprecated base_conditional Denys Dmytriyenko
2018-08-29  0:13 ` [master][PATCH 5/7] v4l-utils: remove old local version as meta-oe provides newer one Denys Dmytriyenko
2018-08-29  0:13 ` [master][PATCH 6/7] gstreamer1.0-plugins-bad: update bbappend, whitelist faad2 as commerical Denys Dmytriyenko
2018-08-29  0:14 ` [master][PATCH 7/7] thttpd: add dependency on virtual/crypt Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.