All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates
@ 2017-03-14 10:32 Paul Barker
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 1/3] linux-raspberrypi_4.9.bb: Update to 4.9.13 Paul Barker
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Paul Barker @ 2017-03-14 10:32 UTC (permalink / raw)
  To: yocto

This series contains backports of patches from Khem's latest combined pull
request. I've boot tested a raspberrypi3 (4.4.y and 4.9.y kernels) and a
raspberrypi (4.9.y kernel) using these patches and all looks good.

Khem Raj (1):
  linux-raspberrypi_4.9.bb: Update to 4.9.13

Paul Barker (2):
  linux-raspberrypi: Fix uImage build on 4.9.y and later
  linux-raspberrypi_4.4: Update to 4.4.50

 ...-Add-rules-for-.dtbo-files-for-dts-overla.patch | 29 ----------------------
 recipes-kernel/linux/linux-raspberrypi_4.4.bb      |  5 ++--
 recipes-kernel/linux/linux-raspberrypi_4.9.bb      | 10 +++++---
 3 files changed, 10 insertions(+), 34 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch

-- 
2.11.0



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

* [meta-raspberrypi][morty][PATCH 1/3] linux-raspberrypi_4.9.bb: Update to 4.9.13
  2017-03-14 10:32 [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
@ 2017-03-14 10:32 ` Paul Barker
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 2/3] linux-raspberrypi: Fix uImage build on 4.9.y and later Paul Barker
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Paul Barker @ 2017-03-14 10:32 UTC (permalink / raw)
  To: yocto

From: Khem Raj <raj.khem@gmail.com>

drop upstreamed patch

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 ...-Add-rules-for-.dtbo-files-for-dts-overla.patch | 29 ----------------------
 recipes-kernel/linux/linux-raspberrypi_4.9.bb      |  5 ++--
 2 files changed, 2 insertions(+), 32 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch

diff --git a/recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch b/recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch
deleted file mode 100644
index e8bc52e..0000000
--- a/recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 922ce1fd0eb810b713f6ffa9a7ab97c11b6e38cf Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 10 Feb 2017 17:57:08 -0800
-Subject: [PATCH] build/arm64: Add rules for .dtbo files for dts overlays
-
-We now create overlays as .dtbo files.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- arch/arm64/Makefile | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile
-index 3635b8662724..822fefeb1cd0 100644
---- a/arch/arm64/Makefile
-+++ b/arch/arm64/Makefile
-@@ -113,6 +113,9 @@ zinstall install:
- %.dtb: scripts
- 	$(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
- 
-+%.dtbo: | scripts
-+	$(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@
-+
- PHONY += dtbs dtbs_install
- 
- dtbs: prepare scripts
--- 
-2.11.1
-
diff --git a/recipes-kernel/linux/linux-raspberrypi_4.9.bb b/recipes-kernel/linux/linux-raspberrypi_4.9.bb
index dcca369..7733bf1 100644
--- a/recipes-kernel/linux/linux-raspberrypi_4.9.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_4.9.bb
@@ -1,9 +1,8 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
 
-LINUX_VERSION ?= "4.9.10"
+LINUX_VERSION ?= "4.9.13"
 
-SRCREV = "095c4480e1f623bdc8a221a171ef13b2223706b1"
+SRCREV = "28ea32b9afb5d813986c4ab940c26fe298d80ed2"
 SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.9.y \
-           file://0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch \
 "
 require linux-raspberrypi.inc
-- 
2.11.0



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

* [meta-raspberrypi][morty][PATCH 2/3] linux-raspberrypi: Fix uImage build on 4.9.y and later
  2017-03-14 10:32 [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 1/3] linux-raspberrypi_4.9.bb: Update to 4.9.13 Paul Barker
@ 2017-03-14 10:32 ` Paul Barker
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 3/3] linux-raspberrypi_4.4: Update to 4.4.50 Paul Barker
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Paul Barker @ 2017-03-14 10:32 UTC (permalink / raw)
  To: yocto

Signed-off-by: Paul Barker <pbarker@toganlabs.com>
---
 recipes-kernel/linux/linux-raspberrypi_4.9.bb | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/recipes-kernel/linux/linux-raspberrypi_4.9.bb b/recipes-kernel/linux/linux-raspberrypi_4.9.bb
index 7733bf1..3aba67b 100644
--- a/recipes-kernel/linux/linux-raspberrypi_4.9.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_4.9.bb
@@ -6,3 +6,8 @@ SRCREV = "28ea32b9afb5d813986c4ab940c26fe298d80ed2"
 SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.9.y \
 "
 require linux-raspberrypi.inc
+
+# A LOADADDR is needed when building a uImage format kernel. This value is not
+# set by default in rpi-4.8.y and later branches so we need to provide it
+# manually. This value unused if KERNEL_IMAGETYPE is not uImage.
+KERNEL_EXTRA_ARGS += "LOADADDR=0x00008000"
-- 
2.11.0



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

* [meta-raspberrypi][morty][PATCH 3/3] linux-raspberrypi_4.4: Update to 4.4.50
  2017-03-14 10:32 [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 1/3] linux-raspberrypi_4.9.bb: Update to 4.9.13 Paul Barker
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 2/3] linux-raspberrypi: Fix uImage build on 4.9.y and later Paul Barker
@ 2017-03-14 10:32 ` Paul Barker
  2017-03-30  6:47 ` [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
  2017-04-03 13:36 ` Andrei Gherzan
  4 siblings, 0 replies; 7+ messages in thread
From: Paul Barker @ 2017-03-14 10:32 UTC (permalink / raw)
  To: yocto

Signed-off-by: Paul Barker <pbarker@toganlabs.com>
---
 recipes-kernel/linux/linux-raspberrypi_4.4.bb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/recipes-kernel/linux/linux-raspberrypi_4.4.bb b/recipes-kernel/linux/linux-raspberrypi_4.4.bb
index b235772..b6be0ec 100644
--- a/recipes-kernel/linux/linux-raspberrypi_4.4.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_4.4.bb
@@ -1,9 +1,10 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
 
-LINUX_VERSION ?= "4.4.48"
+LINUX_VERSION ?= "4.4.50"
 
-SRCREV = "7ddf96fbb7d637b79b449c7bd1c8d35f00571e4b"
+SRCREV = "04c8e47067d4873c584395e5cb260b4f170a99ea"
 SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.4.y \
            file://0001-fix-dtbo-rules.patch \
 "
+
 require linux-raspberrypi.inc
-- 
2.11.0



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

* Re: [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates
  2017-03-14 10:32 [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
                   ` (2 preceding siblings ...)
  2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 3/3] linux-raspberrypi_4.4: Update to 4.4.50 Paul Barker
@ 2017-03-30  6:47 ` Paul Barker
  2017-03-30 22:20   ` Andrei Gherzan
  2017-04-03 13:36 ` Andrei Gherzan
  4 siblings, 1 reply; 7+ messages in thread
From: Paul Barker @ 2017-03-30  6:47 UTC (permalink / raw)
  To: yocto, Andrei Gherzan

On Tue, 14 Mar 2017 10:32:34 +0000
Paul Barker <pbarker@toganlabs.com> wrote:

> This series contains backports of patches from Khem's latest combined pull
> request. I've boot tested a raspberrypi3 (4.4.y and 4.9.y kernels) and a
> raspberrypi (4.9.y kernel) using these patches and all looks good.
> 
> Khem Raj (1):
>   linux-raspberrypi_4.9.bb: Update to 4.9.13
> 
> Paul Barker (2):
>   linux-raspberrypi: Fix uImage build on 4.9.y and later
>   linux-raspberrypi_4.4: Update to 4.4.50
> 
>  ...-Add-rules-for-.dtbo-files-for-dts-overla.patch | 29 ----------------------
>  recipes-kernel/linux/linux-raspberrypi_4.4.bb      |  5 ++--
>  recipes-kernel/linux/linux-raspberrypi_4.9.bb      | 10 +++++---
>  3 files changed, 10 insertions(+), 34 deletions(-)
>  delete mode 100644 recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch
> 

Ping on these.


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

* Re: [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates
  2017-03-30  6:47 ` [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
@ 2017-03-30 22:20   ` Andrei Gherzan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrei Gherzan @ 2017-03-30 22:20 UTC (permalink / raw)
  To: Paul Barker; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1172 bytes --]

On Thu, Mar 30, 2017 at 07:47:07AM +0100, Paul Barker wrote:
> On Tue, 14 Mar 2017 10:32:34 +0000
> Paul Barker <pbarker@toganlabs.com> wrote:
>
> > This series contains backports of patches from Khem's latest combined pull
> > request. I've boot tested a raspberrypi3 (4.4.y and 4.9.y kernels) and a
> > raspberrypi (4.9.y kernel) using these patches and all looks good.
> >
> > Khem Raj (1):
> >   linux-raspberrypi_4.9.bb: Update to 4.9.13
> >
> > Paul Barker (2):
> >   linux-raspberrypi: Fix uImage build on 4.9.y and later
> >   linux-raspberrypi_4.4: Update to 4.4.50
> >
> >  ...-Add-rules-for-.dtbo-files-for-dts-overla.patch | 29 ----------------------
> >  recipes-kernel/linux/linux-raspberrypi_4.4.bb      |  5 ++--
> >  recipes-kernel/linux/linux-raspberrypi_4.9.bb      | 10 +++++---
> >  3 files changed, 10 insertions(+), 34 deletions(-)
> >  delete mode 100644 recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch
> >
>
> Ping on these.

Hi Paul. I'm going to test and merge tomorrow. Sorry for being late.

--
Andrei Gherzan
gpg: rsa4096/D4D94F67AD0E9640 | t: @agherzan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 849 bytes --]

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

* Re: [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates
  2017-03-14 10:32 [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
                   ` (3 preceding siblings ...)
  2017-03-30  6:47 ` [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
@ 2017-04-03 13:36 ` Andrei Gherzan
  4 siblings, 0 replies; 7+ messages in thread
From: Andrei Gherzan @ 2017-04-03 13:36 UTC (permalink / raw)
  To: Paul Barker; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1166 bytes --]

On Tue, Mar 14, 2017 at 10:32:34AM +0000, Paul Barker wrote:
> This series contains backports of patches from Khem's latest combined pull
> request. I've boot tested a raspberrypi3 (4.4.y and 4.9.y kernels) and a
> raspberrypi (4.9.y kernel) using these patches and all looks good.
>
> Khem Raj (1):
>   linux-raspberrypi_4.9.bb: Update to 4.9.13
>
> Paul Barker (2):
>   linux-raspberrypi: Fix uImage build on 4.9.y and later
>   linux-raspberrypi_4.4: Update to 4.4.50
>
>  ...-Add-rules-for-.dtbo-files-for-dts-overla.patch | 29 ----------------------
>  recipes-kernel/linux/linux-raspberrypi_4.4.bb      |  5 ++--
>  recipes-kernel/linux/linux-raspberrypi_4.9.bb      | 10 +++++---
>  3 files changed, 10 insertions(+), 34 deletions(-)
>  delete mode 100644 recipes-kernel/linux/linux-raspberrypi-4.9/0001-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch
>
> --
> 2.11.0
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

Merged to morty branch. Thanks.

--
Andrei Gherzan
gpg: rsa4096/D4D94F67AD0E9640 | t: @agherzan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 849 bytes --]

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

end of thread, other threads:[~2017-04-03 13:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-14 10:32 [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 1/3] linux-raspberrypi_4.9.bb: Update to 4.9.13 Paul Barker
2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 2/3] linux-raspberrypi: Fix uImage build on 4.9.y and later Paul Barker
2017-03-14 10:32 ` [meta-raspberrypi][morty][PATCH 3/3] linux-raspberrypi_4.4: Update to 4.4.50 Paul Barker
2017-03-30  6:47 ` [meta-raspberrypi][morty][PATCH 0/3] Stable branch kernel updates Paul Barker
2017-03-30 22:20   ` Andrei Gherzan
2017-04-03 13:36 ` Andrei Gherzan

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.