Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/1] yocto-bsp: Set linux-yocto-4.1 as default for x86-64
       [not found] <cover.1456906424.git.mariano.lopez@linux.intel.com>
@ 2016-03-02  8:14 ` mariano.lopez
  2016-03-02 17:37   ` Saul Wold
  0 siblings, 1 reply; 3+ messages in thread
From: mariano.lopez @ 2016-03-02  8:14 UTC (permalink / raw)
  To: openembedded-core

From: Mariano Lopez <mariano.lopez@linux.intel.com>

Setting default kernel to linux-yocto-4.1 now that
3.19 bbappend is no longer in the tree.

[YOCTO #9047]

Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
---
 .../target/arch/x86_64/recipes-kernel/linux/kernel-list.noinstall       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/kernel-list.noinstall b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/kernel-list.noinstall
index dbbe934..7676ca8 100644
--- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/kernel-list.noinstall
+++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/kernel-list.noinstall
@@ -2,4 +2,4 @@
 {{ input type:"boolean" name:"use_default_kernel" prio:"10" msg:"Would you like to use the default (4.1) kernel? (y/n)" default:"y"}}
 
 {{ if kernel_choice != "custom" and use_default_kernel == "n": }}
-{{ input type:"choicelist" name:"kernel_choice" gen:"bsp.kernel.kernels" prio:"10" msg:"Please choose the kernel to use in this BSP:" default:"linux-yocto_3.19"}}
+{{ input type:"choicelist" name:"kernel_choice" gen:"bsp.kernel.kernels" prio:"10" msg:"Please choose the kernel to use in this BSP:" default:"linux-yocto_4.1"}}
-- 
2.6.2



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

* Re: [PATCH 1/1] yocto-bsp: Set linux-yocto-4.1 as default for x86-64
  2016-03-02  8:14 ` [PATCH 1/1] yocto-bsp: Set linux-yocto-4.1 as default for x86-64 mariano.lopez
@ 2016-03-02 17:37   ` Saul Wold
  2016-03-02 19:11     ` Lopez, Mariano
  0 siblings, 1 reply; 3+ messages in thread
From: Saul Wold @ 2016-03-02 17:37 UTC (permalink / raw)
  To: mariano.lopez, openembedded-core

On Wed, 2016-03-02 at 08:14 +0000, mariano.lopez@linux.intel.com wrote:
> From: Mariano Lopez <mariano.lopez@linux.intel.com>
> 
> Setting default kernel to linux-yocto-4.1 now that
> 3.19 bbappend is no longer in the tree.
> 
This should default to 4.4 for 2.1, correct? 4.1 is the LSB/LTS kernel
for 2.1.

Sau!

> [YOCTO #9047]
> 
> Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
> ---
>  .../target/arch/x86_64/recipes-kernel/linux/kernel-
> list.noinstall       | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-
> kernel/linux/kernel-list.noinstall
> b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-
> kernel/linux/kernel-list.noinstall
> index dbbe934..7676ca8 100644
> --- a/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-
> kernel/linux/kernel-list.noinstall
> +++ b/scripts/lib/bsp/substrate/target/arch/x86_64/recipes-
> kernel/linux/kernel-list.noinstall
> @@ -2,4 +2,4 @@
>  {{ input type:"boolean" name:"use_default_kernel" prio:"10"
> msg:"Would you like to use the default (4.1) kernel? (y/n)"
> default:"y"}}
>  
>  {{ if kernel_choice != "custom" and use_default_kernel == "n": }}
> -{{ input type:"choicelist" name:"kernel_choice"
> gen:"bsp.kernel.kernels" prio:"10" msg:"Please choose the kernel to
> use in this BSP:" default:"linux-yocto_3.19"}}
> +{{ input type:"choicelist" name:"kernel_choice"
> gen:"bsp.kernel.kernels" prio:"10" msg:"Please choose the kernel to
> use in this BSP:" default:"linux-yocto_4.1"}}
> -- 
> 2.6.2
> 


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

* Re: [PATCH 1/1] yocto-bsp: Set linux-yocto-4.1 as default for x86-64
  2016-03-02 17:37   ` Saul Wold
@ 2016-03-02 19:11     ` Lopez, Mariano
  0 siblings, 0 replies; 3+ messages in thread
From: Lopez, Mariano @ 2016-03-02 19:11 UTC (permalink / raw)
  To: Saul Wold, openembedded-core



On 3/2/2016 11:37 AM, Saul Wold wrote:
> On Wed, 2016-03-02 at 08:14 +0000, mariano.lopez@linux.intel.com wrote:
>> From: Mariano Lopez <mariano.lopez@linux.intel.com>
>>
>> Setting default kernel to linux-yocto-4.1 now that
>> 3.19 bbappend is no longer in the tree.
>>
> This should default to 4.4 for 2.1, correct? 4.1 is the LSB/LTS kernel
> for 2.1.

I was setting the default to the same as the other archs in order to fix 
the error with x86-64. If it's okay to change to version 4.4 at this 
point in the release I can send a v2 patch with all the archs updated.

Mariano


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

end of thread, other threads:[~2016-03-02 19:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <cover.1456906424.git.mariano.lopez@linux.intel.com>
2016-03-02  8:14 ` [PATCH 1/1] yocto-bsp: Set linux-yocto-4.1 as default for x86-64 mariano.lopez
2016-03-02 17:37   ` Saul Wold
2016-03-02 19:11     ` Lopez, Mariano

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