diff mbox series

[meta-ti,master/kirkstone,v2,4/5] linux-ti-next: Add defconfig for OMAP-L138

Message ID 20230411174037.32244-4-afd@ti.com
State Superseded
Delegated to: Ryan Eatmon
Headers show
Series [meta-ti,master/kirkstone,v2,1/5] linux-ti-mainline: Use upstream configs with upstream kernel | expand

Commit Message

Andrew Davis April 11, 2023, 5:40 p.m. UTC
Not sure if anyone is testing on this device with -next, but for
completeness add its defconfig.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb | 1 +
 1 file changed, 1 insertion(+)

Comments

Denys Dmytriyenko April 11, 2023, 7:51 p.m. UTC | #1
On Tue, Apr 11, 2023 at 12:40:36PM -0500, Andrew Davis via lists.yoctoproject.org wrote:
> Not sure if anyone is testing on this device with -next, but for
> completeness add its defconfig.
> 
> Signed-off-by: Andrew Davis <afd@ti.com>
> ---
>  meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
> index b540e508..62831c9c 100644
> --- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
> +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
> @@ -20,6 +20,7 @@ PV = "6.1.0-rc1+git${SRCPV}"

Should PV/SRCREV be bumped past 6.1-rc1?


>  SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git;protocol=https;branch=master"
>  
>  DEFCONFIG_NAME = "multi_v7_defconfig"
> +DEFCONFIG_NAME:omapl138 = "davinci_all_defconfig"
>  DEFCONFIG_NAME:k3 = "defconfig"
>  KERNEL_CONFIG_COMMAND = "oe_runmake -C ${S} O=${B} ${DEFCONFIG_NAME}"
>  
> -- 
> 2.39.2
Andrew Davis April 11, 2023, 9:14 p.m. UTC | #2
On 4/11/23 2:51 PM, Denys Dmytriyenko wrote:
> On Tue, Apr 11, 2023 at 12:40:36PM -0500, Andrew Davis via lists.yoctoproject.org wrote:
>> Not sure if anyone is testing on this device with -next, but for
>> completeness add its defconfig.
>>
>> Signed-off-by: Andrew Davis <afd@ti.com>
>> ---
>>   meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
>> index b540e508..62831c9c 100644
>> --- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
>> +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
>> @@ -20,6 +20,7 @@ PV = "6.1.0-rc1+git${SRCPV}"
> 
> Should PV/SRCREV be bumped past 6.1-rc1?
> 

Someone should. But unless we automate then it will get stale again.

It could be part of the build automation scripts when we start -next testing..

Andrew

> 
>>   SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git;protocol=https;branch=master"
>>   
>>   DEFCONFIG_NAME = "multi_v7_defconfig"
>> +DEFCONFIG_NAME:omapl138 = "davinci_all_defconfig"
>>   DEFCONFIG_NAME:k3 = "defconfig"
>>   KERNEL_CONFIG_COMMAND = "oe_runmake -C ${S} O=${B} ${DEFCONFIG_NAME}"
>>   
>> -- 
>> 2.39.2
Denys Dmytriyenko April 11, 2023, 9:32 p.m. UTC | #3
On Tue, Apr 11, 2023 at 04:14:47PM -0500, Andrew Davis wrote:
> On 4/11/23 2:51 PM, Denys Dmytriyenko wrote:
> >On Tue, Apr 11, 2023 at 12:40:36PM -0500, Andrew Davis via lists.yoctoproject.org wrote:
> >>Not sure if anyone is testing on this device with -next, but for
> >>completeness add its defconfig.
> >>
> >>Signed-off-by: Andrew Davis <afd@ti.com>
> >>---
> >>  meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb | 1 +
> >>  1 file changed, 1 insertion(+)
> >>
> >>diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
> >>index b540e508..62831c9c 100644
> >>--- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
> >>+++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
> >>@@ -20,6 +20,7 @@ PV = "6.1.0-rc1+git${SRCPV}"
> >
> >Should PV/SRCREV be bumped past 6.1-rc1?
> >
> 
> Someone should. But unless we automate then it will get stale again.
> 
> It could be part of the build automation scripts when we start -next 
> testing..

And it already is - Arago Distro branding-next AUTOREVs it:
https://git.yoctoproject.org/meta-arago/tree/meta-arago-distro/conf/distro/include/branding-next.inc#n4

It is done indirectly through the Distro/branding as recipes shouldn't default 
to AUTOREV. You don't want bitbake to hit kernel.org everytime the recipe gets 
parsed, even when you are not building it.

I know "next" will be getting stale very quickly and it's expected, but it may 
be nice to get it updated now, since you are changing it anyway...
Andrew Davis April 11, 2023, 9:42 p.m. UTC | #4
On 4/11/23 4:32 PM, Denys Dmytriyenko wrote:
> On Tue, Apr 11, 2023 at 04:14:47PM -0500, Andrew Davis wrote:
>> On 4/11/23 2:51 PM, Denys Dmytriyenko wrote:
>>> On Tue, Apr 11, 2023 at 12:40:36PM -0500, Andrew Davis via lists.yoctoproject.org wrote:
>>>> Not sure if anyone is testing on this device with -next, but for
>>>> completeness add its defconfig.
>>>>
>>>> Signed-off-by: Andrew Davis <afd@ti.com>
>>>> ---
>>>>   meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb | 1 +
>>>>   1 file changed, 1 insertion(+)
>>>>
>>>> diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
>>>> index b540e508..62831c9c 100644
>>>> --- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
>>>> +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
>>>> @@ -20,6 +20,7 @@ PV = "6.1.0-rc1+git${SRCPV}"
>>>
>>> Should PV/SRCREV be bumped past 6.1-rc1?
>>>
>>
>> Someone should. But unless we automate then it will get stale again.
>>
>> It could be part of the build automation scripts when we start -next
>> testing..
> 
> And it already is - Arago Distro branding-next AUTOREVs it:
> https://git.yoctoproject.org/meta-arago/tree/meta-arago-distro/conf/distro/include/branding-next.inc#n4
> 
> It is done indirectly through the Distro/branding as recipes shouldn't default
> to AUTOREV. You don't want bitbake to hit kernel.org everytime the recipe gets
> parsed, even when you are not building it.
> 
> I know "next" will be getting stale very quickly and it's expected, but it may
> be nice to get it updated now, since you are changing it anyway...
> 

Sure, why not, will add a patch for v3

Andrew
diff mbox series

Patch

diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
index b540e508..62831c9c 100644
--- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
+++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-next_git.bb
@@ -20,6 +20,7 @@  PV = "6.1.0-rc1+git${SRCPV}"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git;protocol=https;branch=master"
 
 DEFCONFIG_NAME = "multi_v7_defconfig"
+DEFCONFIG_NAME:omapl138 = "davinci_all_defconfig"
 DEFCONFIG_NAME:k3 = "defconfig"
 KERNEL_CONFIG_COMMAND = "oe_runmake -C ${S} O=${B} ${DEFCONFIG_NAME}"