* [Buildroot] [PATCH] configs/sheevaplug_defconfig: bump Linux to fix binutils 2.41 build
@ 2024-05-05 19:59 Peter Korsgaard
2024-05-05 20:13 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2024-05-05 19:59 UTC (permalink / raw)
To: buildroot
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/6761770801
The Linux kernel fails to build since commit e88225ed882 (package/binutils:
make 2.41 the default version):
arch/arm/mm/proc-feroceon.S: Assembler messages:
arch/arm/mm/proc-feroceon.S:587: Error: junk at end of line, first unrecognized character is `#'
make[3]: *** [scripts/Makefile.build:430: arch/arm/mm/proc-feroceon.o] Error 1
make[3]: *** Waiting for unfinished jobs....
Fix the build by bumping the kernel to 4.14.336, which includes commit
3ab03df64f77 (ARM: 8933/1: replace Sun/Solaris style flag on section
directive):
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-4.14.y&id=3ab03df64f7754728a2257c47775a70a88428331
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
configs/sheevaplug_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/sheevaplug_defconfig b/configs/sheevaplug_defconfig
index 7f186df22c..0879f17071 100644
--- a/configs/sheevaplug_defconfig
+++ b/configs/sheevaplug_defconfig
@@ -27,7 +27,7 @@ BR2_TARGET_UBOOT_FORMAT_KWB=y
# Kernel
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.14.253"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.14.336"
BR2_LINUX_KERNEL_DEFCONFIG="mvebu_v5"
BR2_LINUX_KERNEL_APPENDED_UIMAGE=y
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
--
2.39.2
_______________________________________________
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] configs/sheevaplug_defconfig: bump Linux to fix binutils 2.41 build
2024-05-05 19:59 [Buildroot] [PATCH] configs/sheevaplug_defconfig: bump Linux to fix binutils 2.41 build Peter Korsgaard
@ 2024-05-05 20:13 ` Yann E. MORIN
2024-05-06 6:50 ` Peter Korsgaard
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2024-05-05 20:13 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot
Peter, All,
On 2024-05-05 21:59 +0200, Peter Korsgaard spake thusly:
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/6761770801
>
> The Linux kernel fails to build since commit e88225ed882 (package/binutils:
> make 2.41 the default version):
>
> arch/arm/mm/proc-feroceon.S: Assembler messages:
> arch/arm/mm/proc-feroceon.S:587: Error: junk at end of line, first unrecognized character is `#'
> make[3]: *** [scripts/Makefile.build:430: arch/arm/mm/proc-feroceon.o] Error 1
> make[3]: *** Waiting for unfinished jobs....
>
> Fix the build by bumping the kernel to 4.14.336, which includes commit
> 3ab03df64f77 (ARM: 8933/1: replace Sun/Solaris style flag on section
> directive):
>
> https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-4.14.y&id=3ab03df64f7754728a2257c47775a70a88428331
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
As I recently explained to other such patches [0] [1], please enable
BR2_DOWNLOAD_FORCE_CHECK_HASHES=y. Also, you're no stranger to this
topic, are you? ;-)
[0] https://lore.kernel.org/buildroot/ZjepViPtMWJL05DF@landeda/
[1] https://lore.kernel.org/buildroot/ZjeDWeQ-Jnutgk0G@landeda/
Regards,
Yann E. MORIN.
> ---
> configs/sheevaplug_defconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/configs/sheevaplug_defconfig b/configs/sheevaplug_defconfig
> index 7f186df22c..0879f17071 100644
> --- a/configs/sheevaplug_defconfig
> +++ b/configs/sheevaplug_defconfig
> @@ -27,7 +27,7 @@ BR2_TARGET_UBOOT_FORMAT_KWB=y
> # Kernel
> BR2_LINUX_KERNEL=y
> BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.14.253"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.14.336"
> BR2_LINUX_KERNEL_DEFCONFIG="mvebu_v5"
> BR2_LINUX_KERNEL_APPENDED_UIMAGE=y
> BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
> --
> 2.39.2
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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] configs/sheevaplug_defconfig: bump Linux to fix binutils 2.41 build
2024-05-05 20:13 ` Yann E. MORIN
@ 2024-05-06 6:50 ` Peter Korsgaard
0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-05-06 6:50 UTC (permalink / raw)
To: Yann E. MORIN; +Cc: buildroot
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
> Peter, All,
> On 2024-05-05 21:59 +0200, Peter Korsgaard spake thusly:
>> Fixes:
>> https://gitlab.com/buildroot.org/buildroot/-/jobs/6761770801
>>
>> The Linux kernel fails to build since commit e88225ed882 (package/binutils:
>> make 2.41 the default version):
>>
>> arch/arm/mm/proc-feroceon.S: Assembler messages:
>> arch/arm/mm/proc-feroceon.S:587: Error: junk at end of line, first unrecognized character is `#'
>> make[3]: *** [scripts/Makefile.build:430: arch/arm/mm/proc-feroceon.o] Error 1
>> make[3]: *** Waiting for unfinished jobs....
>>
>> Fix the build by bumping the kernel to 4.14.336, which includes commit
>> 3ab03df64f77 (ARM: 8933/1: replace Sun/Solaris style flag on section
>> directive):
>>
>> https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-4.14.y&id=3ab03df64f7754728a2257c47775a70a88428331
>>
>> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> As I recently explained to other such patches [0] [1], please enable
> BR2_DOWNLOAD_FORCE_CHECK_HASHES=y. Also, you're no stranger to this
> topic, are you? ;-)
True. Will fix and resend ;)
--
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
end of thread, other threads:[~2024-05-06 6:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-05 19:59 [Buildroot] [PATCH] configs/sheevaplug_defconfig: bump Linux to fix binutils 2.41 build Peter Korsgaard
2024-05-05 20:13 ` Yann E. MORIN
2024-05-06 6:50 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox