Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH][for-danny] lttng-2.0: fix srcrev/pv to match the recipe filenames
@ 2012-10-22 15:28 Christopher Larson
  2012-10-22 17:49 ` Tom Zanussi
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Larson @ 2012-10-22 15:28 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

Somehow the recipe names got bumped, but the SRCREV and PVs in the recipes
didn't get updated, so they were still building old versions.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb | 7 +++----
 meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb   | 4 ++--
 meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb    | 4 ++--
 3 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb b/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb
index 4c78f36..baae25f 100644
--- a/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb
+++ b/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb
@@ -10,13 +10,12 @@ DEPENDS = "virtual/kernel"
 
 inherit module
 
-SRCREV = "4d3e89e379fc66480d729abe8daa5c86eb585400"
-PV = "2.0.pre11+git${SRCREV}"
+SRCREV = "a848cad4cc82d05493c487a709f6b55f22695ec6"
+PV = "2.0.5"
 PR = "r0"
 
 SRC_URI = "git://git.lttng.org/lttng-modules.git;protocol=git \
-           file://lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch \
-           file://lttng-sycalls-protect-is_compat_task-from-redefiniti.patch"
+           file://lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch"
 
 export INSTALL_MOD_DIR="kernel/lttng-modules"
 export KERNEL_SRC="${STAGING_KERNEL_DIR}"
diff --git a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb
index e7f1016..0bafcb3 100644
--- a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb
+++ b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb
@@ -11,8 +11,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=61273c2e3f60dd38a74b01beb5f51fbd \
 
 DEPENDS = "liburcu popt lttng2-ust"
 
-SRCREV = "8c3919ea2dc77fdd47fb1c90e41490a20bb4d478"
-PV = "v2.0.1+git${SRCREV}"
+SRCREV = "98c8c95b0e1afb2dac686338efdf036f6446d790"
+PV = "v2.0.4"
 PR = "r0"
 
 SRC_URI = "git://git.lttng.org/lttng-tools.git;protocol=git"
diff --git a/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb b/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb
index 8f650a4..0574fe9 100644
--- a/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb
+++ b/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb
@@ -12,8 +12,8 @@ inherit autotools
 
 DEPENDS = "liburcu util-linux"
 
-SRCREV = "a367ee66aad3ffd21ef64d1b24efc6f862e09562"
-PV = "2.0.2+git${SRCPV}"
+SRCREV = "5fbf75f52c808b648feebea1ed4874c5f6264b05"
+PV = "2.0.5"
 PR = "r0"
 
 SRC_URI = "git://git.lttng.org/lttng-ust.git;protocol=git"
-- 
1.7.12.4




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

* Re: [PATCH][for-danny] lttng-2.0: fix srcrev/pv to match the recipe filenames
       [not found] <1350919506-4517-1-git-send-email-kergoth@gmail.com>
@ 2012-10-22 15:47 ` Christopher Larson
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Larson @ 2012-10-22 15:47 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

On Mon, Oct 22, 2012 at 8:25 AM, Christopher Larson <kergoth@gmail.com> wrote:
> From: Christopher Larson <chris_larson@mentor.com>
>
> Somehow the recipe names got bumped, but the SRCREV and PVs in the recipes
> didn't get updated, so they were still building old versions.
>
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>

Ignore this one, use the second that got sent 5 minutes later.



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

* Re: [PATCH][for-danny] lttng-2.0: fix srcrev/pv to match the recipe filenames
  2012-10-22 15:28 [PATCH][for-danny] lttng-2.0: fix srcrev/pv to match the recipe filenames Christopher Larson
@ 2012-10-22 17:49 ` Tom Zanussi
  2012-10-23  1:02   ` Chris Larson
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Zanussi @ 2012-10-22 17:49 UTC (permalink / raw)
  To: Christopher Larson; +Cc: Christopher Larson, openembedded-core

On Mon, 2012-10-22 at 08:28 -0700, Christopher Larson wrote:
> From: Christopher Larson <chris_larson@mentor.com>
> 
> Somehow the recipe names got bumped, but the SRCREV and PVs in the recipes
> didn't get updated, so they were still building old versions.
> 
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> ---
>  meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb | 7 +++----
>  meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb   | 4 ++--
>  meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb    | 4 ++--
>  3 files changed, 7 insertions(+), 8 deletions(-)
> 
> diff --git a/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb b/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb
> index 4c78f36..baae25f 100644
> --- a/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb
> +++ b/meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb
> @@ -10,13 +10,12 @@ DEPENDS = "virtual/kernel"
>  
>  inherit module
>  
> -SRCREV = "4d3e89e379fc66480d729abe8daa5c86eb585400"
> -PV = "2.0.pre11+git${SRCREV}"
> +SRCREV = "a848cad4cc82d05493c487a709f6b55f22695ec6"
> +PV = "2.0.5"
>  PR = "r0"
>  
>  SRC_URI = "git://git.lttng.org/lttng-modules.git;protocol=git \
> -           file://lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch \
> -           file://lttng-sycalls-protect-is_compat_task-from-redefiniti.patch"
> +           file://lttng-modules-replace-KERNELDIR-with-KERNEL_SRC.patch"
>  

I guess the patch for lttng-modules should also remove the patch itself.
I sent a patch to do that last week:

http://lists.linuxtogo.org/pipermail/openembedded-core/2012-October/030957.html
http://lists.linuxtogo.org/pipermail/openembedded-core/2012-October/030958.html

which also updated the PV.  I didn't update the other lttng recipes as
your patch does though, since I was assuming the lttng-modules thing was
a typo and had probably been tested with the other recipe versions as
they were.

In any case, I did test the other versions once I got it building again,
and here's a little writeup of what worked:

https://wiki.yoctoproject.org/wiki/Tracing_and_Profiling#LTTng_.28Linux_Trace_Toolkit.2C_next_generation.29


Tom

>  export INSTALL_MOD_DIR="kernel/lttng-modules"
>  export KERNEL_SRC="${STAGING_KERNEL_DIR}"
> diff --git a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb
> index e7f1016..0bafcb3 100644
> --- a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb
> +++ b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb
> @@ -11,8 +11,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=61273c2e3f60dd38a74b01beb5f51fbd \
>  
>  DEPENDS = "liburcu popt lttng2-ust"
>  
> -SRCREV = "8c3919ea2dc77fdd47fb1c90e41490a20bb4d478"
> -PV = "v2.0.1+git${SRCREV}"
> +SRCREV = "98c8c95b0e1afb2dac686338efdf036f6446d790"
> +PV = "v2.0.4"
>  PR = "r0"
>  
>  SRC_URI = "git://git.lttng.org/lttng-tools.git;protocol=git"
> diff --git a/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb b/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb
> index 8f650a4..0574fe9 100644
> --- a/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb
> +++ b/meta/recipes-kernel/lttng-2.0/lttng2-ust_2.0.5.bb
> @@ -12,8 +12,8 @@ inherit autotools
>  
>  DEPENDS = "liburcu util-linux"
>  
> -SRCREV = "a367ee66aad3ffd21ef64d1b24efc6f862e09562"
> -PV = "2.0.2+git${SRCPV}"
> +SRCREV = "5fbf75f52c808b648feebea1ed4874c5f6264b05"
> +PV = "2.0.5"
>  PR = "r0"
>  
>  SRC_URI = "git://git.lttng.org/lttng-ust.git;protocol=git"





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

* Re: [PATCH][for-danny] lttng-2.0: fix srcrev/pv to match the recipe filenames
  2012-10-22 17:49 ` Tom Zanussi
@ 2012-10-23  1:02   ` Chris Larson
  0 siblings, 0 replies; 4+ messages in thread
From: Chris Larson @ 2012-10-23  1:02 UTC (permalink / raw)
  To: Tom Zanussi; +Cc: openembedded-core

On Mon, Oct 22, 2012 at 10:49 AM, Tom Zanussi <tom.zanussi@intel.com> wrote:
> I guess the patch for lttng-modules should also remove the patch itself.
> I sent a patch to do that last week:
>
> http://lists.linuxtogo.org/pipermail/openembedded-core/2012-October/030957.html
> http://lists.linuxtogo.org/pipermail/openembedded-core/2012-October/030958.html

Indeed, your patch for lttng-modules should be applied, and we'll
address the others through a separate commit.
-- 
Christopher Larson



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

end of thread, other threads:[~2012-10-23  1:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-22 15:28 [PATCH][for-danny] lttng-2.0: fix srcrev/pv to match the recipe filenames Christopher Larson
2012-10-22 17:49 ` Tom Zanussi
2012-10-23  1:02   ` Chris Larson
     [not found] <1350919506-4517-1-git-send-email-kergoth@gmail.com>
2012-10-22 15:47 ` Christopher Larson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox