All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16
@ 2015-10-21 21:12 Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 02/11] linux-raspberrypi: support kernel 4.1.3 Andrei Gherzan
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

From: Alex J Lennon <ajlennon@dynamicdevices.co.uk>

This requires some changes to KERNEL_DEVICETREE as the dtb
layout has changed to support overlays. This change also
makes us ready to support kernel 4.x series

Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
---
 conf/machine/include/rpi-base.inc              | 22 ++++++++++------------
 recipes-kernel/linux/linux-raspberrypi_3.18.bb |  9 +++++++--
 2 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc
index 1dda207..8caa5ba 100644
--- a/conf/machine/include/rpi-base.inc
+++ b/conf/machine/include/rpi-base.inc
@@ -23,18 +23,16 @@ KERNEL_DEVICETREE ?= " \
     bcm2708-rpi-b-plus.dtb \
     bcm2709-rpi-2-b.dtb \
     \
-    ds1307-rtc-overlay.dtb \
-    hifiberry-amp-overlay.dtb \
-    hifiberry-dac-overlay.dtb \
-    hifiberry-dacplus-overlay.dtb \
-    hifiberry-digi-overlay.dtb \
-    iqaudio-dac-overlay.dtb \
-    iqaudio-dacplus-overlay.dtb \
-    lirc-rpi-overlay.dtb \
-    pcf8523-rtc-overlay.dtb \
-    pps-gpio-overlay.dtb \
-    w1-gpio-overlay.dtb \
-    w1-gpio-pullup-overlay.dtb \
+    overlays/hifiberry-amp-overlay.dtb \
+    overlays/hifiberry-dac-overlay.dtb \
+    overlays/hifiberry-dacplus-overlay.dtb \
+    overlays/hifiberry-digi-overlay.dtb \
+    overlays/iqaudio-dac-overlay.dtb \
+    overlays/iqaudio-dacplus-overlay.dtb \
+    overlays/lirc-rpi-overlay.dtb \
+    overlays/pps-gpio-overlay.dtb \
+    overlays/w1-gpio-overlay.dtb \
+    overlays/w1-gpio-pullup-overlay.dtb \
     "
 KERNEL_IMAGETYPE ?= "Image"
 
diff --git a/recipes-kernel/linux/linux-raspberrypi_3.18.bb b/recipes-kernel/linux/linux-raspberrypi_3.18.bb
index 6d8b155..a1fe6b4 100644
--- a/recipes-kernel/linux/linux-raspberrypi_3.18.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_3.18.bb
@@ -1,6 +1,11 @@
-LINUX_VERSION ?= "3.18.11"
+LINUX_VERSION ?= "3.18.16"
 
-SRCREV = "d64fa8121fca9883d6fb14ca06d2abf66496195e"
+SRCREV = "1bb18c8f721ef674a447f3622273f2e2de7a205c"
 SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y"
 
 require linux-raspberrypi.inc
+
+# Create missing out of tree 'overlays' directory prior to install step
+do_compile_prepend() {
+  mkdir -p ${B}/arch/arm/boot/dts/overlays
+}
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 02/11] linux-raspberrypi: support kernel 4.1.3
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 03/11] linux-raspberrypi: Update 4.1 recipe to 4.1.10 Andrei Gherzan
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

From: Alex J Lennon <ajlennon@dynamicdevices.co.uk>

Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
---
 recipes-kernel/linux/linux-raspberrypi_4.1.bb | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 recipes-kernel/linux/linux-raspberrypi_4.1.bb

diff --git a/recipes-kernel/linux/linux-raspberrypi_4.1.bb b/recipes-kernel/linux/linux-raspberrypi_4.1.bb
new file mode 100644
index 0000000..637c5b2
--- /dev/null
+++ b/recipes-kernel/linux/linux-raspberrypi_4.1.bb
@@ -0,0 +1,6 @@
+LINUX_VERSION ?= "4.1.3"
+
+SRCREV = "2a2dc4e5e4946e75b98c71eacc3660e913dbd302"
+SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.1.y"
+
+require linux-raspberrypi.inc
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 03/11] linux-raspberrypi: Update 4.1 recipe to 4.1.10
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 02/11] linux-raspberrypi: support kernel 4.1.3 Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 04/11] linux-raspberrypi: Remove old 3.12 version Andrei Gherzan
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-kernel/linux/linux-raspberrypi_4.1.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-kernel/linux/linux-raspberrypi_4.1.bb b/recipes-kernel/linux/linux-raspberrypi_4.1.bb
index 637c5b2..3a3cf40 100644
--- a/recipes-kernel/linux/linux-raspberrypi_4.1.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_4.1.bb
@@ -1,6 +1,6 @@
-LINUX_VERSION ?= "4.1.3"
+LINUX_VERSION ?= "4.1.10"
 
-SRCREV = "2a2dc4e5e4946e75b98c71eacc3660e913dbd302"
+SRCREV = "b74df9228c27f55361c065bc5dbfba88861cc771"
 SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.1.y"
 
 require linux-raspberrypi.inc
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 04/11] linux-raspberrypi: Remove old 3.12 version
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 02/11] linux-raspberrypi: support kernel 4.1.3 Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 03/11] linux-raspberrypi: Update 4.1 recipe to 4.1.10 Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 05/11] rpi-default-versions: Default kernel on 4.1.% Andrei Gherzan
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-kernel/linux/linux-raspberrypi_3.12.bb | 7 -------
 1 file changed, 7 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-raspberrypi_3.12.bb

diff --git a/recipes-kernel/linux/linux-raspberrypi_3.12.bb b/recipes-kernel/linux/linux-raspberrypi_3.12.bb
deleted file mode 100644
index 71fba49..0000000
--- a/recipes-kernel/linux/linux-raspberrypi_3.12.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-LINUX_VERSION ?= "3.12.36"
-
-SRCREV = "ee9b8c7d46f2b1787b1e64604acafc70f70191cf"
-SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.12.y \
-          "
-
-require linux-raspberrypi.inc
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 05/11] rpi-default-versions: Default kernel on 4.1.%
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (2 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 04/11] linux-raspberrypi: Remove old 3.12 version Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 06/11] bcm2835: Update to v1.46 Andrei Gherzan
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 conf/machine/include/rpi-default-versions.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/machine/include/rpi-default-versions.inc b/conf/machine/include/rpi-default-versions.inc
index bcf7828..c879dde 100644
--- a/conf/machine/include/rpi-default-versions.inc
+++ b/conf/machine/include/rpi-default-versions.inc
@@ -1,3 +1,3 @@
 # RaspberryPi BSP default versions
 
-PREFERRED_VERSION_linux-raspberrypi ?= "3.18.%"
+PREFERRED_VERSION_linux-raspberrypi ?= "4.1.%"
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 06/11] bcm2835: Update to v1.46
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (3 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 05/11] rpi-default-versions: Default kernel on 4.1.% Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 07/11] firmware: Bump revision Andrei Gherzan
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-devtools/bcm2835/bcm2835_1.44.bb | 40 --------------------------------
 recipes-devtools/bcm2835/bcm2835_1.46.bb | 40 ++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+), 40 deletions(-)
 delete mode 100644 recipes-devtools/bcm2835/bcm2835_1.44.bb
 create mode 100644 recipes-devtools/bcm2835/bcm2835_1.46.bb

diff --git a/recipes-devtools/bcm2835/bcm2835_1.44.bb b/recipes-devtools/bcm2835/bcm2835_1.44.bb
deleted file mode 100644
index a0d349d..0000000
--- a/recipes-devtools/bcm2835/bcm2835_1.44.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-DESCRIPTION = "Package that provides access to GPIO and other IO\
-functions on the Broadcom BCM 2835 chip, allowing access to the\
-GPIO pins on the 26 pin IDE plug on the RPi board"
-SECTION = "base"
-HOMEPAGE = "http://www.open.com.au/mikem/bcm2835"
-AUTHOR = "Mike McCauley (mikem@open.com.au)"
-
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-
-COMPATIBLE_MACHINE = "raspberrypi"
-
-SRC_URI = "http://www.airspayce.com/mikem/bcm2835/bcm2835-${PV}.tar.gz"
-
-SRC_URI[md5sum] = "a974af22a2fa2c0b131becd55c4b31c0"
-SRC_URI[sha256sum] = "608b60bf95ff909a027155303090b71643f333116584d4a2c3b8f6edbf49c612"
-
-inherit autotools
-
-do_compile_append() {
-    # Now compiling the examples provided by the package
-    mkdir -p ${B}/examples
-    for file in `ls ${S}/examples`; do
-        ${CC} ${S}/examples/${file}/${file}.c -o ${B}/examples/${file} -Bstatic -L${B}/src -lbcm2835 -I${S}/src
-    done
-}
-
-do_install_append() {
-    install -d ${D}/${libdir}/${BPN}
-    for file in ${B}/examples/*
-    do
-        install -m 0755 ${file} ${D}/${libdir}/${BPN}
-    done
-}
-
-PACKAGES += "${PN}-tests"
-
-FILES_${PN} = ""
-FILES_${PN}-tests = "${libdir}/${BPN}"
-FILES_${PN}-dbg += "${libdir}/${BPN}/.debug"
diff --git a/recipes-devtools/bcm2835/bcm2835_1.46.bb b/recipes-devtools/bcm2835/bcm2835_1.46.bb
new file mode 100644
index 0000000..dd37b8f
--- /dev/null
+++ b/recipes-devtools/bcm2835/bcm2835_1.46.bb
@@ -0,0 +1,40 @@
+DESCRIPTION = "Package that provides access to GPIO and other IO\
+functions on the Broadcom BCM 2835 chip, allowing access to the\
+GPIO pins on the 26 pin IDE plug on the RPi board"
+SECTION = "base"
+HOMEPAGE = "http://www.open.com.au/mikem/bcm2835"
+AUTHOR = "Mike McCauley (mikem@open.com.au)"
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+COMPATIBLE_MACHINE = "raspberrypi"
+
+SRC_URI = "http://www.airspayce.com/mikem/bcm2835/bcm2835-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "3a40c01ee7d81fbff80c54fbe1a351b5"
+SRC_URI[sha256sum] = "fc6b0412525e6b7e85aeffec67e2d01a99fb906346620041e6684d59ea5517a7"
+
+inherit autotools
+
+do_compile_append() {
+    # Now compiling the examples provided by the package
+    mkdir -p ${B}/examples
+    for file in `ls ${S}/examples`; do
+        ${CC} ${S}/examples/${file}/${file}.c -o ${B}/examples/${file} -Bstatic -L${B}/src -lbcm2835 -I${S}/src
+    done
+}
+
+do_install_append() {
+    install -d ${D}/${libdir}/${BPN}
+    for file in ${B}/examples/*
+    do
+        install -m 0755 ${file} ${D}/${libdir}/${BPN}
+    done
+}
+
+PACKAGES += "${PN}-tests"
+
+FILES_${PN} = ""
+FILES_${PN}-tests = "${libdir}/${BPN}"
+FILES_${PN}-dbg += "${libdir}/${BPN}/.debug"
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 07/11] firmware: Bump revision
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (4 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 06/11] bcm2835: Update to v1.46 Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 08/11] omxplayer: " Andrei Gherzan
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-bsp/common/firmware.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/common/firmware.inc b/recipes-bsp/common/firmware.inc
index a5a5412..020f0ed 100644
--- a/recipes-bsp/common/firmware.inc
+++ b/recipes-bsp/common/firmware.inc
@@ -1,5 +1,5 @@
-RPIFW_SRCREV ?= "89881b5488a5a60088677333dcbd97e1836c0e7e"
-RPIFW_DATE ?= "20150630"
+RPIFW_SRCREV ?= "f7108cfdc715f79c5fd051fb4c3ae6f4b1b01f23"
+RPIFW_DATE ?= "20151021"
 RPIFW_SRC_URI ?= "git://github.com/raspberrypi/firmware.git;protocol=git;branch=master"
 RPIFW_S ?= "${WORKDIR}/git"
 
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 08/11] omxplayer: Bump revision
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (5 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 07/11] firmware: Bump revision Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 09/11] rpi-mkimage: " Andrei Gherzan
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-multimedia/omxplayer/omxplayer_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-multimedia/omxplayer/omxplayer_git.bb b/recipes-multimedia/omxplayer/omxplayer_git.bb
index f4839a9..2f45fb0 100644
--- a/recipes-multimedia/omxplayer/omxplayer_git.bb
+++ b/recipes-multimedia/omxplayer/omxplayer_git.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 DEPENDS = "libpcre libav virtual/egl boost freetype dbus openssl samba libssh"
 PR = "r4"
 
-SRCREV = "4d8ffd13153bfef2966671cb4fb484afeaf792a8"
+SRCREV = "d99bd86c9fd80ea01f98761e130d7ac9a2bb7588"
 SRC_URI = "git://github.com/popcornmix/omxplayer.git;protocol=git;branch=master \
            file://0001-Remove-Makefile.include-which-includes-hardcoded.patch \
            file://0002-Libraries-and-headers-from-ffmpeg-are-installed-in-u.patch \
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 09/11] rpi-mkimage: Bump revision
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (6 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 08/11] omxplayer: " Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 10/11] userland: " Andrei Gherzan
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb b/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb
index ffd1818..ffcaa83 100644
--- a/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb
+++ b/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb
@@ -5,7 +5,7 @@ SECTION = "bootloader"
 
 DEPENDS = "python"
 
-SRCREV = "d4b397f3a1e60ea45660eafb9209bcb97453c456"
+SRCREV = "f5642106425d430e1f82ee064121a5fd0e05a386"
 SRC_URI = " \
     git://github.com/raspberrypi/tools.git;branch=master;protocol=git \
     file://License \
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 10/11] userland: Bump revision
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (7 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 09/11] rpi-mkimage: " Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 11/11] pi-blaster: " Andrei Gherzan
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-graphics/userland/userland_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-graphics/userland/userland_git.bb b/recipes-graphics/userland/userland_git.bb
index e431077..896229e 100644
--- a/recipes-graphics/userland/userland_git.bb
+++ b/recipes-graphics/userland/userland_git.bb
@@ -14,7 +14,7 @@ COMPATIBLE_MACHINE = "raspberrypi"
 
 SRCBRANCH = "master"
 SRCFORK = "raspberrypi"
-SRCREV = "cc92dfd6c4e8e2d90c3903dccfe77f7274b8d1b7"
+SRCREV = "40e377862410371a9962db79b81fd4f0f266430a"
 
 SRC_URI = "\
     git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \
-- 
2.6.0



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

* [meta-raspberrypi][PATCH 11/11] pi-blaster: Bump revision
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (8 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 10/11] userland: " Andrei Gherzan
@ 2015-10-21 21:12 ` Andrei Gherzan
  2015-10-21 21:23 ` [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
  2015-10-24 19:36 ` Andrei Gherzan
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:12 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 recipes-devtools/pi-blaster/pi-blaster_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/pi-blaster/pi-blaster_git.bb b/recipes-devtools/pi-blaster/pi-blaster_git.bb
index 01a55ca..263852b 100644
--- a/recipes-devtools/pi-blaster/pi-blaster_git.bb
+++ b/recipes-devtools/pi-blaster/pi-blaster_git.bb
@@ -1,3 +1,3 @@
 require pi-blaster.inc
 
-SRCREV = "bce7c1b4c53b0dd12665e46bdebd3b7cb0987e3d"
+SRCREV = "ec5e1b4c6191d8f9a538497dbbb86f9cf0de7016"
-- 
2.6.0



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

* Re: [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (9 preceding siblings ...)
  2015-10-21 21:12 ` [meta-raspberrypi][PATCH 11/11] pi-blaster: " Andrei Gherzan
@ 2015-10-21 21:23 ` Andrei Gherzan
  2015-10-24 19:36 ` Andrei Gherzan
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-21 21:23 UTC (permalink / raw)
  To: Yocto Project

On Wed, Oct 21, 2015 at 11:12 PM, Andrei Gherzan <andrei@gherzan.ro> wrote:
> From: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
>
> This requires some changes to KERNEL_DEVICETREE as the dtb
> layout has changed to support overlays. This change also
> makes us ready to support kernel 4.x series
>
> Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
> ---

After this series VC4 is next.

--
Andrei Gherzan


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

* Re: [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16
  2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
                   ` (10 preceding siblings ...)
  2015-10-21 21:23 ` [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
@ 2015-10-24 19:36 ` Andrei Gherzan
  11 siblings, 0 replies; 13+ messages in thread
From: Andrei Gherzan @ 2015-10-24 19:36 UTC (permalink / raw)
  To: yocto

On Wed, Oct 21, 2015 at 11:12:01PM +0200, Andrei Gherzan wrote:
> From: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
> 
> This requires some changes to KERNEL_DEVICETREE as the dtb
> layout has changed to support overlays. This change also
> makes us ready to support kernel 4.x series
> 
> Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
> ---

Entire patch set was merged to master. Thanks.

-- 
Andrei Gherzan


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

end of thread, other threads:[~2015-10-24 19:37 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-21 21:12 [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 02/11] linux-raspberrypi: support kernel 4.1.3 Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 03/11] linux-raspberrypi: Update 4.1 recipe to 4.1.10 Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 04/11] linux-raspberrypi: Remove old 3.12 version Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 05/11] rpi-default-versions: Default kernel on 4.1.% Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 06/11] bcm2835: Update to v1.46 Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 07/11] firmware: Bump revision Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 08/11] omxplayer: " Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 09/11] rpi-mkimage: " Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 10/11] userland: " Andrei Gherzan
2015-10-21 21:12 ` [meta-raspberrypi][PATCH 11/11] pi-blaster: " Andrei Gherzan
2015-10-21 21:23 ` [meta-raspberrypi][PATCH 01/11] linux-raspberrypi: Update kernel to 3.18.16 Andrei Gherzan
2015-10-24 19: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.