* [Buildroot] [PATCH 1/1] configs/freescale_t1040d4rdb: bump linux kernel to 6.12.27
@ 2025-05-09 12:17 Julien Olivain
2025-05-16 8:16 ` Peter Korsgaard
2025-05-31 17:00 ` Arnout Vandecappelle via buildroot
0 siblings, 2 replies; 3+ messages in thread
From: Julien Olivain @ 2025-05-09 12:17 UTC (permalink / raw)
To: buildroot; +Cc: Julien Olivain
Since commit [1] "package/binutils: make 2.43 the default version",
the freescale_t1040d4rdb_defconfig fails to build the Linux
kernel, with the error:
arch/powerpc/boot/util.S: Assembler messages:
arch/powerpc/boot/util.S:49: Error: junk at end of line, first unrecognized character is `0'
arch/powerpc/boot/util.S:54: Error: syntax error; found `b', expected `,'
arch/powerpc/boot/util.S:54: Error: junk at end of line: `b'
This commit fixes the issue by updating the Linux kernel to the lastest
LTS version.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/9967089767
[1] https://gitlab.com/buildroot.org/buildroot/-/commit/360fd01de20eb42aa0e6b5e9f7b37eaa104c6fc9
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
Patch tested in:
https://gitlab.com/jolivain/buildroot/-/jobs/9984902177
---
configs/freescale_t1040d4rdb_defconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configs/freescale_t1040d4rdb_defconfig b/configs/freescale_t1040d4rdb_defconfig
index ad231e7f1e..851e011983 100644
--- a/configs/freescale_t1040d4rdb_defconfig
+++ b/configs/freescale_t1040d4rdb_defconfig
@@ -1,10 +1,10 @@
BR2_powerpc64=y
BR2_powerpc_e5500=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_15=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12=y
BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.15.7"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.12.27"
BR2_LINUX_KERNEL_DEFCONFIG="corenet64_smp"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="fsl/t1040d4rdb"
--
2.49.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] configs/freescale_t1040d4rdb: bump linux kernel to 6.12.27
2025-05-09 12:17 [Buildroot] [PATCH 1/1] configs/freescale_t1040d4rdb: bump linux kernel to 6.12.27 Julien Olivain
@ 2025-05-16 8:16 ` Peter Korsgaard
2025-05-31 17:00 ` Arnout Vandecappelle via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2025-05-16 8:16 UTC (permalink / raw)
To: Julien Olivain; +Cc: buildroot
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> Since commit [1] "package/binutils: make 2.43 the default version",
> the freescale_t1040d4rdb_defconfig fails to build the Linux
> kernel, with the error:
> arch/powerpc/boot/util.S: Assembler messages:
> arch/powerpc/boot/util.S:49: Error: junk at end of line, first unrecognized character is `0'
> arch/powerpc/boot/util.S:54: Error: syntax error; found `b', expected `,'
> arch/powerpc/boot/util.S:54: Error: junk at end of line: `b'
> This commit fixes the issue by updating the Linux kernel to the lastest
> LTS version.
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/9967089767
> [1] https://gitlab.com/buildroot.org/buildroot/-/commit/360fd01de20eb42aa0e6b5e9f7b37eaa104c6fc9
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> Patch tested in:
> https://gitlab.com/jolivain/buildroot/-/jobs/9984902177
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] configs/freescale_t1040d4rdb: bump linux kernel to 6.12.27
2025-05-09 12:17 [Buildroot] [PATCH 1/1] configs/freescale_t1040d4rdb: bump linux kernel to 6.12.27 Julien Olivain
2025-05-16 8:16 ` Peter Korsgaard
@ 2025-05-31 17:00 ` Arnout Vandecappelle via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-05-31 17:00 UTC (permalink / raw)
To: Julien Olivain, buildroot
On 09/05/2025 14:17, Julien Olivain wrote:
> Since commit [1] "package/binutils: make 2.43 the default version",
> the freescale_t1040d4rdb_defconfig fails to build the Linux
> kernel, with the error:
>
> arch/powerpc/boot/util.S: Assembler messages:
> arch/powerpc/boot/util.S:49: Error: junk at end of line, first unrecognized character is `0'
> arch/powerpc/boot/util.S:54: Error: syntax error; found `b', expected `,'
> arch/powerpc/boot/util.S:54: Error: junk at end of line: `b'
>
> This commit fixes the issue by updating the Linux kernel to the lastest
> LTS version.
>
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/9967089767
>
> [1] https://gitlab.com/buildroot.org/buildroot/-/commit/360fd01de20eb42aa0e6b5e9f7b37eaa104c6fc9
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Applied to 2025.02.x, thanks.
Regards,
Arnout
> ---
> Patch tested in:
> https://gitlab.com/jolivain/buildroot/-/jobs/9984902177
> ---
> configs/freescale_t1040d4rdb_defconfig | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/configs/freescale_t1040d4rdb_defconfig b/configs/freescale_t1040d4rdb_defconfig
> index ad231e7f1e..851e011983 100644
> --- a/configs/freescale_t1040d4rdb_defconfig
> +++ b/configs/freescale_t1040d4rdb_defconfig
> @@ -1,10 +1,10 @@
> BR2_powerpc64=y
> BR2_powerpc_e5500=y
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_15=y
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12=y
> BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
> BR2_LINUX_KERNEL=y
> BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.15.7"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.12.27"
> BR2_LINUX_KERNEL_DEFCONFIG="corenet64_smp"
> BR2_LINUX_KERNEL_DTS_SUPPORT=y
> BR2_LINUX_KERNEL_INTREE_DTS_NAME="fsl/t1040d4rdb"
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-03 6:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-09 12:17 [Buildroot] [PATCH 1/1] configs/freescale_t1040d4rdb: bump linux kernel to 6.12.27 Julien Olivain
2025-05-16 8:16 ` Peter Korsgaard
2025-05-31 17:00 ` Arnout Vandecappelle via buildroot
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.