All of lore.kernel.org
 help / color / mirror / Atom feed
* [dunfell/master PATCH] linux-ti-mainline: Bump kernel version to v5.13
@ 2021-06-29 23:37 Nishanth Menon
  2021-06-30  0:30 ` [meta-ti] " Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Nishanth Menon @ 2021-06-29 23:37 UTC (permalink / raw)
  To: praneeth, yogeshs, denys; +Cc: Tom Rini, meta-ti, Nishanth Menon

And lets work with the latest kernel and while at it bump the system up
to latest ti-upstream-tools repo to get:
* AM65x SR1.0 overlay support
* EFI configuration to allow for the eventual support
* Few more cleanups for new architectures that have popped in.

Signed-off-by: Nishanth Menon <nm@ti.com>
---
 recipes-kernel/linux/linux-ti-mainline_git.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/recipes-kernel/linux/linux-ti-mainline_git.bb b/recipes-kernel/linux/linux-ti-mainline_git.bb
index 6770adcae3f7..5d043da7fee1 100644
--- a/recipes-kernel/linux/linux-ti-mainline_git.bb
+++ b/recipes-kernel/linux/linux-ti-mainline_git.bb
@@ -20,9 +20,9 @@ S = "${WORKDIR}/git"
 BRANCH = "master"
 TOOLS_BRANCH = "master"
 
-# 5.12 Mainline version
-SRCREV = "9f4ad9e425a1d3b6a34617b8ea226d56a119a717"
-PV = "5.12+git${SRCPV}"
+# 5.13 Mainline version
+SRCREV = "62fb9874f5da54fdb243003b386128037319b219"
+PV = "5.13+git${SRCPV}"
 
 # Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause a rebuild
 MACHINE_KERNEL_PR_append = "b"
@@ -36,7 +36,7 @@ SRC_URI += " \
     file://defconfig \
 "
 
-SRCREV_ti-upstream-tools = "d59b7471d99b806e3dc22342c8f42d5bb33f8cce"
+SRCREV_ti-upstream-tools = "c9b8150cb00a5beb7b7f3e42d0d817aa9392fabd"
 SRCREV_FORMAT = "linux"
 
 KERNEL_DEVICETREE = ""
-- 
2.32.0


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

* Re: [meta-ti] [dunfell/master PATCH] linux-ti-mainline: Bump kernel version to v5.13
  2021-06-29 23:37 [dunfell/master PATCH] linux-ti-mainline: Bump kernel version to v5.13 Nishanth Menon
@ 2021-06-30  0:30 ` Denys Dmytriyenko
  2021-06-30  2:11   ` Nishanth Menon
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2021-06-30  0:30 UTC (permalink / raw)
  To: nm; +Cc: praneeth, yogeshs, denys, Tom Rini, meta-ti

On Tue, Jun 29, 2021 at 06:37:03PM -0500, Nishanth Menon via lists.yoctoproject.org wrote:
> And lets work with the latest kernel and while at it bump the system up
> to latest ti-upstream-tools repo to get:
> * AM65x SR1.0 overlay support
> * EFI configuration to allow for the eventual support
> * Few more cleanups for new architectures that have popped in.
> 
> Signed-off-by: Nishanth Menon <nm@ti.com>

Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>


> ---
>  recipes-kernel/linux/linux-ti-mainline_git.bb | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/recipes-kernel/linux/linux-ti-mainline_git.bb b/recipes-kernel/linux/linux-ti-mainline_git.bb
> index 6770adcae3f7..5d043da7fee1 100644
> --- a/recipes-kernel/linux/linux-ti-mainline_git.bb
> +++ b/recipes-kernel/linux/linux-ti-mainline_git.bb
> @@ -20,9 +20,9 @@ S = "${WORKDIR}/git"
>  BRANCH = "master"
>  TOOLS_BRANCH = "master"
>  
> -# 5.12 Mainline version
> -SRCREV = "9f4ad9e425a1d3b6a34617b8ea226d56a119a717"
> -PV = "5.12+git${SRCPV}"
> +# 5.13 Mainline version
> +SRCREV = "62fb9874f5da54fdb243003b386128037319b219"
> +PV = "5.13+git${SRCPV}"

BTW, the "+git${SRCPV}" part is to append the specific SRCREV or git SHA of 
the kernel you are building to the resulting package version. That might be 
useful in tracking the kernel binary on the target to a specific SHA, as well 
as with binary feeds.

But if you only use official releases, you might want to drop it, as you'd 
trust that SRCREV you specify for 5.13 always corresponds to the release SHA 
in Linus' tree :) Just makes the package name and version much shorter...


>  # Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause a rebuild
>  MACHINE_KERNEL_PR_append = "b"
> @@ -36,7 +36,7 @@ SRC_URI += " \
>      file://defconfig \
>  "
>  
> -SRCREV_ti-upstream-tools = "d59b7471d99b806e3dc22342c8f42d5bb33f8cce"
> +SRCREV_ti-upstream-tools = "c9b8150cb00a5beb7b7f3e42d0d817aa9392fabd"
>  SRCREV_FORMAT = "linux"
>  
>  KERNEL_DEVICETREE = ""
> -- 
> 2.32.0
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964

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

* Re: [meta-ti] [dunfell/master PATCH] linux-ti-mainline: Bump kernel version to v5.13
  2021-06-30  0:30 ` [meta-ti] " Denys Dmytriyenko
@ 2021-06-30  2:11   ` Nishanth Menon
  0 siblings, 0 replies; 3+ messages in thread
From: Nishanth Menon @ 2021-06-30  2:11 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: praneeth, yogeshs, denys, Tom Rini, meta-ti

On 20:30-20210629, Denys Dmytriyenko wrote:
> On Tue, Jun 29, 2021 at 06:37:03PM -0500, Nishanth Menon via lists.yoctoproject.org wrote:
> > And lets work with the latest kernel and while at it bump the system up
> > to latest ti-upstream-tools repo to get:
> > * AM65x SR1.0 overlay support
> > * EFI configuration to allow for the eventual support
> > * Few more cleanups for new architectures that have popped in.
> > 
> > Signed-off-by: Nishanth Menon <nm@ti.com>
> 
> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>
> 
> 
> > ---
> >  recipes-kernel/linux/linux-ti-mainline_git.bb | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/recipes-kernel/linux/linux-ti-mainline_git.bb b/recipes-kernel/linux/linux-ti-mainline_git.bb
> > index 6770adcae3f7..5d043da7fee1 100644
> > --- a/recipes-kernel/linux/linux-ti-mainline_git.bb
> > +++ b/recipes-kernel/linux/linux-ti-mainline_git.bb
> > @@ -20,9 +20,9 @@ S = "${WORKDIR}/git"
> >  BRANCH = "master"
> >  TOOLS_BRANCH = "master"
> >  
> > -# 5.12 Mainline version
> > -SRCREV = "9f4ad9e425a1d3b6a34617b8ea226d56a119a717"
> > -PV = "5.12+git${SRCPV}"
> > +# 5.13 Mainline version
> > +SRCREV = "62fb9874f5da54fdb243003b386128037319b219"
> > +PV = "5.13+git${SRCPV}"
> 
> BTW, the "+git${SRCPV}" part is to append the specific SRCREV or git SHA of 
> the kernel you are building to the resulting package version. That might be 
> useful in tracking the kernel binary on the target to a specific SHA, as well 
> as with binary feeds.
> 
> But if you only use official releases, you might want to drop it, as you'd 
> trust that SRCREV you specify for 5.13 always corresponds to the release SHA 
> in Linus' tree :) Just makes the package name and version much shorter...
> 

hehe, the history of v5.12-rc1-dontuse comes to mind for now. I think we
can leave as is for now.

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D)/Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

end of thread, other threads:[~2021-06-30  2:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-29 23:37 [dunfell/master PATCH] linux-ti-mainline: Bump kernel version to v5.13 Nishanth Menon
2021-06-30  0:30 ` [meta-ti] " Denys Dmytriyenko
2021-06-30  2:11   ` Nishanth Menon

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.