Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl
@ 2021-11-12  9:54 Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 2/6] configs/acmesystems_aria_g25_{128, 256}mb_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-12  9:54 UTC (permalink / raw)
  To: buildroot

Fixes https://gitlab.com/buildroot.org/buildroot/-/jobs/1758966167

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 configs/nezha_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/configs/nezha_defconfig b/configs/nezha_defconfig
index d4724de2f3..2d66d6cb4a 100644
--- a/configs/nezha_defconfig
+++ b/configs/nezha_defconfig
@@ -26,6 +26,9 @@ BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,smaeul,u-boot,62392d3b8a624a80646c1876533336f90140088d)/uboot-62392d3b8a624a80646c1876533336f90140088d.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nezha"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_NEEDS_OPENSBI=y
 # BR2_TARGET_UBOOT_FORMAT_BIN is not set
 BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
-- 
2.20.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/6] configs/acmesystems_aria_g25_{128, 256}mb_defconfig: bump linux kernel to 4.19.216
  2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
@ 2021-11-12  9:54 ` Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 3/6] configs/acmesystems_arietta_g25_{128, " Peter Korsgaard
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-12  9:54 UTC (permalink / raw)
  To: buildroot; +Cc: Biagio Montaruli

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1758965968
https://gitlab.com/buildroot.org/buildroot/-/jobs/1758965970

To correct a build breakage after the move to a gcc 10.x based host
compiler, as the updated kernel contains a fix for:

HOSTLD  scripts/dtc/dtc
/usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e33a814e772cdc36436c8c188d8c42d019fda639

Build-tested only.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 configs/acmesystems_aria_g25_128mb_defconfig | 2 +-
 configs/acmesystems_aria_g25_256mb_defconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configs/acmesystems_aria_g25_128mb_defconfig b/configs/acmesystems_aria_g25_128mb_defconfig
index 8bc8c4dcef..c428e318d2 100644
--- a/configs/acmesystems_aria_g25_128mb_defconfig
+++ b/configs/acmesystems_aria_g25_128mb_defconfig
@@ -15,7 +15,7 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/acmesystems/aria-g25/genimage.cfg"
 # Kernel configuration
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.216"
 BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-ariag25"
diff --git a/configs/acmesystems_aria_g25_256mb_defconfig b/configs/acmesystems_aria_g25_256mb_defconfig
index d161b118ae..83f7625dc7 100644
--- a/configs/acmesystems_aria_g25_256mb_defconfig
+++ b/configs/acmesystems_aria_g25_256mb_defconfig
@@ -15,7 +15,7 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/acmesystems/aria-g25/genimage.cfg"
 # Kernel configuration
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.216"
 BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-ariag25"
-- 
2.20.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 3/6] configs/acmesystems_arietta_g25_{128, 256}mb_defconfig: bump linux kernel to 4.19.216
  2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 2/6] configs/acmesystems_aria_g25_{128, 256}mb_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
@ 2021-11-12  9:54 ` Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 4/6] configs/armadeus_apf28_defconfig: bump linux kernel to 4.9.289 Peter Korsgaard
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-12  9:54 UTC (permalink / raw)
  To: buildroot; +Cc: Biagio Montaruli

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1758965971
https://gitlab.com/buildroot.org/buildroot/-/jobs/1758965973

To correct a build breakage after the move to a gcc 10.x based host
compiler, as the updated kernel contains a fix for:

HOSTLD  scripts/dtc/dtc
/usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e33a814e772cdc36436c8c188d8c42d019fda639

Build-tested only.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 configs/acmesystems_arietta_g25_128mb_defconfig | 2 +-
 configs/acmesystems_arietta_g25_256mb_defconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configs/acmesystems_arietta_g25_128mb_defconfig b/configs/acmesystems_arietta_g25_128mb_defconfig
index 62bcbd44cb..b882b2bdb2 100644
--- a/configs/acmesystems_arietta_g25_128mb_defconfig
+++ b/configs/acmesystems_arietta_g25_128mb_defconfig
@@ -15,7 +15,7 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/acmesystems/arietta-g25/genimage.cfg"
 # Kernel configuration
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.216"
 BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-ariettag25"
diff --git a/configs/acmesystems_arietta_g25_256mb_defconfig b/configs/acmesystems_arietta_g25_256mb_defconfig
index 94258444a2..10501d462c 100644
--- a/configs/acmesystems_arietta_g25_256mb_defconfig
+++ b/configs/acmesystems_arietta_g25_256mb_defconfig
@@ -15,7 +15,7 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/acmesystems/arietta-g25/genimage.cfg"
 # Kernel configuration
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.216"
 BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-ariettag25"
-- 
2.20.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 4/6] configs/armadeus_apf28_defconfig: bump linux kernel to 4.9.289
  2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 2/6] configs/acmesystems_aria_g25_{128, 256}mb_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 3/6] configs/acmesystems_arietta_g25_{128, " Peter Korsgaard
@ 2021-11-12  9:54 ` Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 5/6] configs/armadeus_apf51_defconfig: bump linux kernel to 4.4.291 Peter Korsgaard
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-12  9:54 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Boibessot

Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/1758965992

To correct a build breakage after the move to a gcc 10.x based host
compiler, as the updated kernel contains a fix for:

HOSTLD  scripts/dtc/dtc
/usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e33a814e772cdc36436c8c188d8c42d019fda639

Build-tested only.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 configs/armadeus_apf28_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/armadeus_apf28_defconfig b/configs/armadeus_apf28_defconfig
index 56351ebde5..01e14e6618 100644
--- a/configs/armadeus_apf28_defconfig
+++ b/configs/armadeus_apf28_defconfig
@@ -13,7 +13,7 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.172"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.289"
 BR2_LINUX_KERNEL_DEFCONFIG="mxs"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x40008000"
-- 
2.20.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 5/6] configs/armadeus_apf51_defconfig: bump linux kernel to 4.4.291
  2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
                   ` (2 preceding siblings ...)
  2021-11-12  9:54 ` [Buildroot] [PATCH 4/6] configs/armadeus_apf28_defconfig: bump linux kernel to 4.9.289 Peter Korsgaard
@ 2021-11-12  9:54 ` Peter Korsgaard
  2021-11-12  9:54 ` [Buildroot] [PATCH 6/6] configs/rock64_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
  2021-11-13 14:24 ` [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Thomas Petazzoni
  5 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-12  9:54 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Boibessot

Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/1758965994

To correct a build breakage after the move to a gcc 10.x based host
compiler, as the updated kernel contains a fix for:

HOSTLD  scripts/dtc/dtc
/usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e33a814e772cdc36436c8c188d8c42d019fda639

Also correct a mistake in the kernel headers version comment.

Build-tested only.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 configs/armadeus_apf51_defconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configs/armadeus_apf51_defconfig b/configs/armadeus_apf51_defconfig
index 26b6a447d4..aa7c2f84ae 100644
--- a/configs/armadeus_apf51_defconfig
+++ b/configs/armadeus_apf51_defconfig
@@ -2,7 +2,7 @@
 BR2_arm=y
 BR2_cortex_a8=y
 
-# Linux headers same as kernel, a 3.12 series
+# Linux headers same as kernel, a 4.4 series
 BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_4=y
 
 # System
@@ -13,7 +13,7 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc2"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.4.186"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.4.291"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/armadeus/apf51/linux-4.4.config"
 BR2_LINUX_KERNEL_UIMAGE=y
-- 
2.20.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 6/6] configs/rock64_defconfig: bump linux kernel to 4.19.216
  2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
                   ` (3 preceding siblings ...)
  2021-11-12  9:54 ` [Buildroot] [PATCH 5/6] configs/armadeus_apf51_defconfig: bump linux kernel to 4.4.291 Peter Korsgaard
@ 2021-11-12  9:54 ` Peter Korsgaard
  2021-11-13 14:24 ` [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Thomas Petazzoni
  5 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-12  9:54 UTC (permalink / raw)
  To: buildroot; +Cc: Michał Łyszczek

Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/1758966299

To correct a build breakage after the move to a gcc 10.x based host
compiler, as the updated kernel contains a fix for:

HOSTLD  scripts/dtc/dtc
/usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e33a814e772cdc36436c8c188d8c42d019fda639

Build-tested only.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 configs/rock64_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/rock64_defconfig b/configs/rock64_defconfig
index a9d29a424d..2fae2298de 100644
--- a/configs/rock64_defconfig
+++ b/configs/rock64_defconfig
@@ -7,7 +7,7 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/pine64/rock64/genimage.cfg"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.19"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.216"
 BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="rockchip/rk3328-rock64"
-- 
2.20.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl
  2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
                   ` (4 preceding siblings ...)
  2021-11-12  9:54 ` [Buildroot] [PATCH 6/6] configs/rock64_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
@ 2021-11-13 14:24 ` Thomas Petazzoni
  5 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2021-11-13 14:24 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot

On Fri, 12 Nov 2021 10:54:29 +0100
Peter Korsgaard <peter@korsgaard.com> wrote:

> Fixes https://gitlab.com/buildroot.org/buildroot/-/jobs/1758966167
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  configs/nezha_defconfig | 3 +++
>  1 file changed, 3 insertions(+)

Series applied to master, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-11-13 14:25 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-12  9:54 [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Peter Korsgaard
2021-11-12  9:54 ` [Buildroot] [PATCH 2/6] configs/acmesystems_aria_g25_{128, 256}mb_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
2021-11-12  9:54 ` [Buildroot] [PATCH 3/6] configs/acmesystems_arietta_g25_{128, " Peter Korsgaard
2021-11-12  9:54 ` [Buildroot] [PATCH 4/6] configs/armadeus_apf28_defconfig: bump linux kernel to 4.9.289 Peter Korsgaard
2021-11-12  9:54 ` [Buildroot] [PATCH 5/6] configs/armadeus_apf51_defconfig: bump linux kernel to 4.4.291 Peter Korsgaard
2021-11-12  9:54 ` [Buildroot] [PATCH 6/6] configs/rock64_defconfig: bump linux kernel to 4.19.216 Peter Korsgaard
2021-11-13 14:24 ` [Buildroot] [PATCH 1/6] configs/nezha_defconfig: u-boot needs pylibfdt/swig/openssl Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox