All of lore.kernel.org
 help / color / mirror / Atom feed
* Problems fetching and compiling imx-gst1.0-plugin_4.1.6.bb
@ 2017-12-29 12:43 Diaz de Grenu, Jose
  2018-01-12 16:04 ` Diaz de Grenu, Jose
  0 siblings, 1 reply; 3+ messages in thread
From: Diaz de Grenu, Jose @ 2017-12-29 12:43 UTC (permalink / raw)
  To: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 2436 bytes --]

Hi,

I am using Yocto 2.4 and compiling for a i.MX6QP platform. On the rocko branch I get the following ERROR trying to fetch the package:

ERROR: imx-gst1.0-plugin-4.1.6-r0 do_fetch: Fetcher failure for URL: 'git://source.codeaurora.org/external/imx/gst1.0-plugins-fsl.git;protocol=https;branch=nxp/MM_04.02.01_1705_L4.9.11_CONSOLIDATED_GA'. Please
set a valid SRCREV for url ['SRCREV_default_pn-imx-gst1.0-plugin', 'SRCREV_default', 'SRCREV_pn-imx-gst1.0-plugin', 'SRCREV'] (possible key names are git://source.codeaurora.org/external/imx/gst1.0-plugins-fsl.
git;protocol=https;branch=nxp/MM_04.02.01_1705_L4.9.11_CONSOLIDATED_GA, or use a ;rev=X URL parameter)
ERROR: imx-gst1.0-plugin-4.1.6-r0 do_fetch: Function failed: base_do_fetch
ERROR: Logfile of failure stored in: /home/jdepedro/workspaces-yocto/2.4/tmp/work/ccimx6sbc-dey-linux-gnueabi/imx-gst1.0-plugin/4.1.6-r0/temp/log.do_fetch.1756
ERROR: Task (/home/jdepedro/dey-2.4/sources/meta-freescale/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb:do_fetch) failed with exit code '1'

This gets solved just adding AUTOREV:

diff --git a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb
index 89a14d5df80d..46c3a0d40f9e 100644
--- a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb
+++ b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb
@@ -29,6 +29,8 @@ SRC_URI = " \
     git://source.codeaurora.org/external/imx/gst1.0-plugins-fsl.git;protocol=https;branch=${SRCBRANCH} \
"
+SRCREV = "${AUTOREV}"
+
S = "${WORKDIR}/git"
 inherit autotools pkgconfig

I am not sure if SRCREV is really needed or I am missing something. Could you suggest?

On the other hand, after solving that, I get the following compilation error:

| In file included from ../../git/libs/overlaycompositionmeta/../device-2d/imx_2d_device.h:25:0,
|                  from ../../git/libs/overlaycompositionmeta/imxoverlaycompositionmeta.h:25,
|                  from ../../git/libs/overlaycompositionmeta/imxoverlaycompositionmeta.c:30:
| ../../git/libs/overlaycompositionmeta/../device-2d/imx_2d_device_allocator.h:24:10: fatal error: gst/allocators/gstallocatorphymem.h: No such file or directory
|  #include <gst/allocators/gstallocatorphymem.h>
|           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| compilation terminated.

Should this be fixed? Am I missing something?

Thank you.

[-- Attachment #2: Type: text/html, Size: 5820 bytes --]

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

* Re: Problems fetching and compiling imx-gst1.0-plugin_4.1.6.bb
  2017-12-29 12:43 Problems fetching and compiling imx-gst1.0-plugin_4.1.6.bb Diaz de Grenu, Jose
@ 2018-01-12 16:04 ` Diaz de Grenu, Jose
  2018-01-12 16:35   ` Otavio Salvador
  0 siblings, 1 reply; 3+ messages in thread
From: Diaz de Grenu, Jose @ 2018-01-12 16:04 UTC (permalink / raw)
  To: Diaz de Grenu, Jose, meta-freescale

[-- Attachment #1: Type: text/plain, Size: 2783 bytes --]

This is solved using the master-next branch.

From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-bounces@yoctoproject.org] On Behalf Of Diaz de Grenu, Jose
Sent: Friday, December 29, 2017 1:43 PM
To: meta-freescale@yoctoproject.org
Subject: [meta-freescale] Problems fetching and compiling imx-gst1.0-plugin_4.1.6.bb

Hi,

I am using Yocto 2.4 and compiling for a i.MX6QP platform. On the rocko branch I get the following ERROR trying to fetch the package:

ERROR: imx-gst1.0-plugin-4.1.6-r0 do_fetch: Fetcher failure for URL: 'git://source.codeaurora.org/external/imx/gst1.0-plugins-fsl.git;protocol=https;branch=nxp/MM_04.02.01_1705_L4.9.11_CONSOLIDATED_GA'. Please
set a valid SRCREV for url ['SRCREV_default_pn-imx-gst1.0-plugin', 'SRCREV_default', 'SRCREV_pn-imx-gst1.0-plugin', 'SRCREV'] (possible key names are git://source.codeaurora.org/external/imx/gst1.0-plugins-fsl.
git;protocol=https;branch=nxp/MM_04.02.01_1705_L4.9.11_CONSOLIDATED_GA, or use a ;rev=X URL parameter)
ERROR: imx-gst1.0-plugin-4.1.6-r0 do_fetch: Function failed: base_do_fetch
ERROR: Logfile of failure stored in: /home/jdepedro/workspaces-yocto/2.4/tmp/work/ccimx6sbc-dey-linux-gnueabi/imx-gst1.0-plugin/4.1.6-r0/temp/log.do_fetch.1756
ERROR: Task (/home/jdepedro/dey-2.4/sources/meta-freescale/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb:do_fetch) failed with exit code '1'

This gets solved just adding AUTOREV:

diff --git a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb
index 89a14d5df80d..46c3a0d40f9e 100644
--- a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb
+++ b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_4.1.6.bb
@@ -29,6 +29,8 @@ SRC_URI = " \
     git://source.codeaurora.org/external/imx/gst1.0-plugins-fsl.git;protocol=https;branch=${SRCBRANCH} \
"

+SRCREV = "${AUTOREV}"
+
S = "${WORKDIR}/git"

 inherit autotools pkgconfig

I am not sure if SRCREV is really needed or I am missing something. Could you suggest?

On the other hand, after solving that, I get the following compilation error:

| In file included from ../../git/libs/overlaycompositionmeta/../device-2d/imx_2d_device.h:25:0,
|                  from ../../git/libs/overlaycompositionmeta/imxoverlaycompositionmeta.h:25,
|                  from ../../git/libs/overlaycompositionmeta/imxoverlaycompositionmeta.c:30:
| ../../git/libs/overlaycompositionmeta/../device-2d/imx_2d_device_allocator.h:24:10: fatal error: gst/allocators/gstallocatorphymem.h: No such file or directory
|  #include <gst/allocators/gstallocatorphymem.h>
|           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| compilation terminated.

Should this be fixed? Am I missing something?

Thank you.

[-- Attachment #2: Type: text/html, Size: 6981 bytes --]

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

* Re: Problems fetching and compiling imx-gst1.0-plugin_4.1.6.bb
  2018-01-12 16:04 ` Diaz de Grenu, Jose
@ 2018-01-12 16:35   ` Otavio Salvador
  0 siblings, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2018-01-12 16:35 UTC (permalink / raw)
  To: Diaz de Grenu, Jose; +Cc: meta-freescale

On Fri, Jan 12, 2018 at 2:04 PM, Diaz de Grenu, Jose
<Jose.DiazdeGrenu@digi.com> wrote:
> This is solved using the master-next branch.

Not solved ;-) it is a test.



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2018-01-12 16:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-29 12:43 Problems fetching and compiling imx-gst1.0-plugin_4.1.6.bb Diaz de Grenu, Jose
2018-01-12 16:04 ` Diaz de Grenu, Jose
2018-01-12 16:35   ` Otavio Salvador

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.