All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure
@ 2016-08-08 13:39 Jacob Stiffler
  2016-08-08 13:39 ` [PATCH 2/3] copy-defconfig: add ARAGO_KERNEL_SUFFIX to defconfig name Jacob Stiffler
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jacob Stiffler @ 2016-08-08 13:39 UTC (permalink / raw)
  To: meta-arago

* With sstate support for the sourceipk class, create_srcipk can no
  longer be successfully called within another task.
* Move the create_srcipk task after configure so that the build
  defconfig is included in the src package.

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc          | 7 +++++--
 .../recipes-kernel/linux/linux-ti-staging-rt_%.bbappend            | 2 +-
 .../recipes-kernel/linux/linux-ti-staging-systest_%.bbappend       | 2 +-
 meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend | 2 +-
 4 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
index b9db1ee..46de4a3 100644
--- a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
+++ b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
@@ -5,7 +5,10 @@ CONFIG_NAME ?= "tisdk_${MACHINE}_defconfig"
 # the function to build the sourceipk again.  This is done as a
 # do_compile_prepend so that we can pick up any changes to the
 # defconfig thay may have been done by the sanitizer code.
-do_compile_prepend() {
+do_configure_append() {
     cp ${B}/.config ${S}/arch/arm/configs/${CONFIG_NAME}
-    sourceipk_do_create_srcipk
 }
+
+# Move create_srcipk task so that the release defconfig is included.
+deltask do_create_srcipk
+addtask create_srcipk after do_configure before do_compile
diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
index 7c90ac5..a3241ab 100644
--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
@@ -1,4 +1,4 @@
-MACHINE_KERNEL_PR_append = ".arago0"
+MACHINE_KERNEL_PR_append = ".arago1"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
 
diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
index 7c90ac5..a3241ab 100644
--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
@@ -1,4 +1,4 @@
-MACHINE_KERNEL_PR_append = ".arago0"
+MACHINE_KERNEL_PR_append = ".arago1"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
 
diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
index 4c50655..6ae4bd7 100644
--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
@@ -1,4 +1,4 @@
-MACHINE_KERNEL_PR_append = ".arago4"
+MACHINE_KERNEL_PR_append = ".arago5"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
 
-- 
2.7.4



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

* [PATCH 2/3] copy-defconfig: add ARAGO_KERNEL_SUFFIX to defconfig name
  2016-08-08 13:39 [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Jacob Stiffler
@ 2016-08-08 13:39 ` Jacob Stiffler
  2016-08-08 13:39 ` [PATCH 3/3] ti-tisdk-makefile: update " Jacob Stiffler
  2016-08-08 14:44 ` [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Denys Dmytriyenko
  2 siblings, 0 replies; 6+ messages in thread
From: Jacob Stiffler @ 2016-08-08 13:39 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
index 46de4a3..ffc8b2b 100644
--- a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
+++ b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
@@ -1,4 +1,4 @@
-CONFIG_NAME ?= "tisdk_${MACHINE}_defconfig"
+CONFIG_NAME ?= "tisdk_${MACHINE}${ARAGO_KERNEL_SUFFIX}_defconfig"
 
 # Copy the configuration file used during the SDK build in Arago to
 # the kernel sources to be packaged into the sourceipk.  Then call
-- 
2.7.4



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

* [PATCH 3/3] ti-tisdk-makefile: update defconfig name
  2016-08-08 13:39 [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Jacob Stiffler
  2016-08-08 13:39 ` [PATCH 2/3] copy-defconfig: add ARAGO_KERNEL_SUFFIX to defconfig name Jacob Stiffler
@ 2016-08-08 13:39 ` Jacob Stiffler
  2016-08-08 14:44 ` [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Denys Dmytriyenko
  2 siblings, 0 replies; 6+ messages in thread
From: Jacob Stiffler @ 2016-08-08 13:39 UTC (permalink / raw)
  To: meta-arago

* Add ARAGO_KERNEL_SUFFIX to defconfig name

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index 9184568..75f40d2 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -48,7 +48,7 @@ SRC_URI = "\
     file://Makefile_linalg-examples \
 "
 
-PR = "r72"
+PR = "r73"
 
 MAKEFILES_MATRIX_GUI = "matrix-gui-browser \
                         refresh-screen \
@@ -187,7 +187,7 @@ KERNEL_DEVICETREE_k2e-evm = "keystone-k2e-evm.dtb"
 KERNEL_DEVICETREE_k2g-evm = "keystone-k2g-evm.dtb"
 KERNEL_DEVICETREE_k2l-evm = "keystone-k2l-evm.dtb"
 
-DEFCONFIG = "tisdk_${MACHINE}_defconfig"
+DEFCONFIG = "tisdk_${MACHINE}${ARAGO_KERNEL_SUFFIX}_defconfig"
 
 AMSDK_DEFCONFIG = "singlecore-omap2plus_defconfig"
 
-- 
2.7.4



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

* Re: [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure
  2016-08-08 13:39 [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Jacob Stiffler
  2016-08-08 13:39 ` [PATCH 2/3] copy-defconfig: add ARAGO_KERNEL_SUFFIX to defconfig name Jacob Stiffler
  2016-08-08 13:39 ` [PATCH 3/3] ti-tisdk-makefile: update " Jacob Stiffler
@ 2016-08-08 14:44 ` Denys Dmytriyenko
  2016-08-08 15:09   ` Jacob Stiffler
  2 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2016-08-08 14:44 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-arago

Didn't I already submit this last week when Sam reported it?


On Mon, Aug 08, 2016 at 09:39:28AM -0400, Jacob Stiffler wrote:
> * With sstate support for the sourceipk class, create_srcipk can no
>   longer be successfully called within another task.
> * Move the create_srcipk task after configure so that the build
>   defconfig is included in the src package.
> 
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
>  meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc          | 7 +++++--
>  .../recipes-kernel/linux/linux-ti-staging-rt_%.bbappend            | 2 +-
>  .../recipes-kernel/linux/linux-ti-staging-systest_%.bbappend       | 2 +-
>  meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend | 2 +-
>  4 files changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
> index b9db1ee..46de4a3 100644
> --- a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
> +++ b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
> @@ -5,7 +5,10 @@ CONFIG_NAME ?= "tisdk_${MACHINE}_defconfig"
>  # the function to build the sourceipk again.  This is done as a
>  # do_compile_prepend so that we can pick up any changes to the
>  # defconfig thay may have been done by the sanitizer code.
> -do_compile_prepend() {
> +do_configure_append() {
>      cp ${B}/.config ${S}/arch/arm/configs/${CONFIG_NAME}
> -    sourceipk_do_create_srcipk
>  }
> +
> +# Move create_srcipk task so that the release defconfig is included.
> +deltask do_create_srcipk
> +addtask create_srcipk after do_configure before do_compile
> diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
> index 7c90ac5..a3241ab 100644
> --- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
> +++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
> @@ -1,4 +1,4 @@
> -MACHINE_KERNEL_PR_append = ".arago0"
> +MACHINE_KERNEL_PR_append = ".arago1"
>  
>  FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>  
> diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
> index 7c90ac5..a3241ab 100644
> --- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
> +++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
> @@ -1,4 +1,4 @@
> -MACHINE_KERNEL_PR_append = ".arago0"
> +MACHINE_KERNEL_PR_append = ".arago1"
>  
>  FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>  
> diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
> index 4c50655..6ae4bd7 100644
> --- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
> +++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
> @@ -1,4 +1,4 @@
> -MACHINE_KERNEL_PR_append = ".arago4"
> +MACHINE_KERNEL_PR_append = ".arago5"
>  
>  FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>  
> -- 
> 2.7.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure
  2016-08-08 14:44 ` [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Denys Dmytriyenko
@ 2016-08-08 15:09   ` Jacob Stiffler
  2016-08-08 15:36     ` Denys Dmytriyenko
  0 siblings, 1 reply; 6+ messages in thread
From: Jacob Stiffler @ 2016-08-08 15:09 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago



On 8/8/2016 10:44 AM, Denys Dmytriyenko wrote:
> Didn't I already submit this last week when Sam reported it?

I don't recall seeing it. I just checked patchwork, but I do not see it 
there either.

>
> On Mon, Aug 08, 2016 at 09:39:28AM -0400, Jacob Stiffler wrote:
>> * With sstate support for the sourceipk class, create_srcipk can no
>>    longer be successfully called within another task.
>> * Move the create_srcipk task after configure so that the build
>>    defconfig is included in the src package.
>>
>> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
>> ---
>>   meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc          | 7 +++++--
>>   .../recipes-kernel/linux/linux-ti-staging-rt_%.bbappend            | 2 +-
>>   .../recipes-kernel/linux/linux-ti-staging-systest_%.bbappend       | 2 +-
>>   meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend | 2 +-
>>   4 files changed, 8 insertions(+), 5 deletions(-)
>>
>> diff --git a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
>> index b9db1ee..46de4a3 100644
>> --- a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
>> +++ b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
>> @@ -5,7 +5,10 @@ CONFIG_NAME ?= "tisdk_${MACHINE}_defconfig"
>>   # the function to build the sourceipk again.  This is done as a
>>   # do_compile_prepend so that we can pick up any changes to the
>>   # defconfig thay may have been done by the sanitizer code.
>> -do_compile_prepend() {
>> +do_configure_append() {
>>       cp ${B}/.config ${S}/arch/arm/configs/${CONFIG_NAME}
>> -    sourceipk_do_create_srcipk
>>   }
>> +
>> +# Move create_srcipk task so that the release defconfig is included.
>> +deltask do_create_srcipk
>> +addtask create_srcipk after do_configure before do_compile
>> diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
>> index 7c90ac5..a3241ab 100644
>> --- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
>> +++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
>> @@ -1,4 +1,4 @@
>> -MACHINE_KERNEL_PR_append = ".arago0"
>> +MACHINE_KERNEL_PR_append = ".arago1"
>>   
>>   FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>>   
>> diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
>> index 7c90ac5..a3241ab 100644
>> --- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
>> +++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
>> @@ -1,4 +1,4 @@
>> -MACHINE_KERNEL_PR_append = ".arago0"
>> +MACHINE_KERNEL_PR_append = ".arago1"
>>   
>>   FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>>   
>> diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
>> index 4c50655..6ae4bd7 100644
>> --- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
>> +++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
>> @@ -1,4 +1,4 @@
>> -MACHINE_KERNEL_PR_append = ".arago4"
>> +MACHINE_KERNEL_PR_append = ".arago5"
>>   
>>   FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
>>   
>> -- 
>> 2.7.4
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago



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

* Re: [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure
  2016-08-08 15:09   ` Jacob Stiffler
@ 2016-08-08 15:36     ` Denys Dmytriyenko
  0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2016-08-08 15:36 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-arago

On Mon, Aug 08, 2016 at 11:09:32AM -0400, Jacob Stiffler wrote:
> 
> 
> On 8/8/2016 10:44 AM, Denys Dmytriyenko wrote:
> >Didn't I already submit this last week when Sam reported it?
> 
> I don't recall seeing it. I just checked patchwork, but I do not see
> it there either.

Hmm, it seems the fix got buried in my secure boot work that got me 
distracted... Nevermind.


> >On Mon, Aug 08, 2016 at 09:39:28AM -0400, Jacob Stiffler wrote:
> >>* With sstate support for the sourceipk class, create_srcipk can no
> >>   longer be successfully called within another task.
> >>* Move the create_srcipk task after configure so that the build
> >>   defconfig is included in the src package.
> >>
> >>Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> >>---
> >>  meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc          | 7 +++++--
> >>  .../recipes-kernel/linux/linux-ti-staging-rt_%.bbappend            | 2 +-
> >>  .../recipes-kernel/linux/linux-ti-staging-systest_%.bbappend       | 2 +-
> >>  meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend | 2 +-
> >>  4 files changed, 8 insertions(+), 5 deletions(-)
> >>
> >>diff --git a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
> >>index b9db1ee..46de4a3 100644
> >>--- a/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
> >>+++ b/meta-arago-distro/recipes-kernel/linux/copy-defconfig.inc
> >>@@ -5,7 +5,10 @@ CONFIG_NAME ?= "tisdk_${MACHINE}_defconfig"
> >>  # the function to build the sourceipk again.  This is done as a
> >>  # do_compile_prepend so that we can pick up any changes to the
> >>  # defconfig thay may have been done by the sanitizer code.
> >>-do_compile_prepend() {
> >>+do_configure_append() {
> >>      cp ${B}/.config ${S}/arch/arm/configs/${CONFIG_NAME}
> >>-    sourceipk_do_create_srcipk
> >>  }
> >>+
> >>+# Move create_srcipk task so that the release defconfig is included.
> >>+deltask do_create_srcipk
> >>+addtask create_srcipk after do_configure before do_compile
> >>diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
> >>index 7c90ac5..a3241ab 100644
> >>--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
> >>+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-rt_%.bbappend
> >>@@ -1,4 +1,4 @@
> >>-MACHINE_KERNEL_PR_append = ".arago0"
> >>+MACHINE_KERNEL_PR_append = ".arago1"
> >>  FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
> >>diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
> >>index 7c90ac5..a3241ab 100644
> >>--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
> >>+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging-systest_%.bbappend
> >>@@ -1,4 +1,4 @@
> >>-MACHINE_KERNEL_PR_append = ".arago0"
> >>+MACHINE_KERNEL_PR_append = ".arago1"
> >>  FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
> >>diff --git a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
> >>index 4c50655..6ae4bd7 100644
> >>--- a/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
> >>+++ b/meta-arago-distro/recipes-kernel/linux/linux-ti-staging_%.bbappend
> >>@@ -1,4 +1,4 @@
> >>-MACHINE_KERNEL_PR_append = ".arago4"
> >>+MACHINE_KERNEL_PR_append = ".arago5"
> >>  FILESEXTRAPATHS_prepend := "${THISDIR}/${P}:"
> >>-- 
> >>2.7.4
> >>
> >>_______________________________________________
> >>meta-arago mailing list
> >>meta-arago@arago-project.org
> >>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

end of thread, other threads:[~2016-08-08 15:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-08 13:39 [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Jacob Stiffler
2016-08-08 13:39 ` [PATCH 2/3] copy-defconfig: add ARAGO_KERNEL_SUFFIX to defconfig name Jacob Stiffler
2016-08-08 13:39 ` [PATCH 3/3] ti-tisdk-makefile: update " Jacob Stiffler
2016-08-08 14:44 ` [PATCH 1/3] linux: copy-defconfig: move create_srcipk task after configure Denys Dmytriyenko
2016-08-08 15:09   ` Jacob Stiffler
2016-08-08 15:36     ` 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.