* [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4
@ 2018-07-03 13:11 Fabio Estevam
2018-07-03 13:11 ` [Buildroot] [PATCH 2/4] linux-headers: bump 4.{4, 9, 14, 17}.x series Fabio Estevam
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Fabio Estevam @ 2018-07-03 13:11 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
linux/Config.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/linux/Config.in b/linux/Config.in
index a25e021..d3ea344 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -120,7 +120,7 @@ endif
config BR2_LINUX_KERNEL_VERSION
string
- default "4.17.3" if BR2_LINUX_KERNEL_LATEST_VERSION
+ default "4.17.4" if BR2_LINUX_KERNEL_LATEST_VERSION
default "v4.4.130-cip23" if BR2_LINUX_KERNEL_LATEST_CIP_VERSION
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE \
if BR2_LINUX_KERNEL_CUSTOM_VERSION
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/4] linux-headers: bump 4.{4, 9, 14, 17}.x series
2018-07-03 13:11 [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Fabio Estevam
@ 2018-07-03 13:11 ` Fabio Estevam
2018-07-03 13:12 ` [Buildroot] [PATCH 3/4] configs/mx53loco: Bump to kernel 4.17.4 Fabio Estevam
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2018-07-03 13:11 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
| 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index ebaae88..0c9b102 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -258,14 +258,14 @@ config BR2_DEFAULT_KERNEL_HEADERS
string
default "3.2.102" if BR2_KERNEL_HEADERS_3_2
default "4.1.52" if BR2_KERNEL_HEADERS_4_1
- default "4.4.138" if BR2_KERNEL_HEADERS_4_4
- default "4.9.110" if BR2_KERNEL_HEADERS_4_9
+ default "4.4.139" if BR2_KERNEL_HEADERS_4_4
+ default "4.9.111" if BR2_KERNEL_HEADERS_4_9
default "4.10.17" if BR2_KERNEL_HEADERS_4_10
default "4.11.12" if BR2_KERNEL_HEADERS_4_11
default "4.12.14" if BR2_KERNEL_HEADERS_4_12
default "4.13.16" if BR2_KERNEL_HEADERS_4_13
- default "4.14.52" if BR2_KERNEL_HEADERS_4_14
+ default "4.14.53" if BR2_KERNEL_HEADERS_4_14
default "4.15.18" if BR2_KERNEL_HEADERS_4_15
default "4.16.17" if BR2_KERNEL_HEADERS_4_16
- default "4.17.3" if BR2_KERNEL_HEADERS_4_17
+ default "4.17.4" if BR2_KERNEL_HEADERS_4_17
default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 3/4] configs/mx53loco: Bump to kernel 4.17.4
2018-07-03 13:11 [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Fabio Estevam
2018-07-03 13:11 ` [Buildroot] [PATCH 2/4] linux-headers: bump 4.{4, 9, 14, 17}.x series Fabio Estevam
@ 2018-07-03 13:12 ` Fabio Estevam
2018-07-03 13:12 ` [Buildroot] [PATCH 4/4] configs/imx6-sabresd: " Fabio Estevam
2018-07-03 19:41 ` [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Thomas Petazzoni
3 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2018-07-03 13:12 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <festevam@gmail.com>
Kernel 4.17.4 contains commit 32c319d4f120 ("pinctrl: devicetree: Fix
pctldev pointer overwrite"), which fixes audio support
on imx53loco board, so bump to this kernel version.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
configs/mx53loco_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/mx53loco_defconfig b/configs/mx53loco_defconfig
index b42b280..ca6ec44 100644
--- a/configs/mx53loco_defconfig
+++ b/configs/mx53loco_defconfig
@@ -28,7 +28,7 @@ BR2_TARGET_UBOOT_FORMAT_IMX=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.17"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.17.4"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx53-qsb imx53-qsrb"
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 4/4] configs/imx6-sabresd: Bump to kernel 4.17.4
2018-07-03 13:11 [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Fabio Estevam
2018-07-03 13:11 ` [Buildroot] [PATCH 2/4] linux-headers: bump 4.{4, 9, 14, 17}.x series Fabio Estevam
2018-07-03 13:12 ` [Buildroot] [PATCH 3/4] configs/mx53loco: Bump to kernel 4.17.4 Fabio Estevam
@ 2018-07-03 13:12 ` Fabio Estevam
2018-07-03 19:41 ` [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Thomas Petazzoni
3 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2018-07-03 13:12 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <festevam@gmail.com>
Kernel 4.17.4 contains commit 32c319d4f120 ("pinctrl: devicetree: Fix
pctldev pointer overwrite"), which fixes camera support
on imx6-sabresd board, so bump to this kernel version.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
configs/imx6-sabresd_defconfig | 2 +-
configs/imx6-sabresd_qt5_defconfig | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configs/imx6-sabresd_defconfig b/configs/imx6-sabresd_defconfig
index 7f42e55..89ffa02 100644
--- a/configs/imx6-sabresd_defconfig
+++ b/configs/imx6-sabresd_defconfig
@@ -32,7 +32,7 @@ BR2_TARGET_UBOOT_SPL_NAME="SPL"
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.17.3"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.17.4"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-sabresd imx6dl-sabresd imx6qp-sabresd"
diff --git a/configs/imx6-sabresd_qt5_defconfig b/configs/imx6-sabresd_qt5_defconfig
index cee7244..7457af3 100644
--- a/configs/imx6-sabresd_qt5_defconfig
+++ b/configs/imx6-sabresd_qt5_defconfig
@@ -38,7 +38,7 @@ BR2_TARGET_UBOOT_SPL_NAME="SPL"
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.17.3"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.17.4"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-sabresd imx6dl-sabresd imx6qp-sabresd"
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4
2018-07-03 13:11 [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Fabio Estevam
` (2 preceding siblings ...)
2018-07-03 13:12 ` [Buildroot] [PATCH 4/4] configs/imx6-sabresd: " Fabio Estevam
@ 2018-07-03 19:41 ` Thomas Petazzoni
3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2018-07-03 19:41 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 3 Jul 2018 10:11:58 -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@gmail.com>
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
> linux/Config.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Series applied. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-07-03 19:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-03 13:11 [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Fabio Estevam
2018-07-03 13:11 ` [Buildroot] [PATCH 2/4] linux-headers: bump 4.{4, 9, 14, 17}.x series Fabio Estevam
2018-07-03 13:12 ` [Buildroot] [PATCH 3/4] configs/mx53loco: Bump to kernel 4.17.4 Fabio Estevam
2018-07-03 13:12 ` [Buildroot] [PATCH 4/4] configs/imx6-sabresd: " Fabio Estevam
2018-07-03 19:41 ` [Buildroot] [PATCH 1/4] linux: bump default to version 4.17.4 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox