All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13.
@ 2021-08-25 19:20 Romain Naour
  2021-08-25 19:20 ` [Buildroot] [PATCH] configs/pc_x86_64_{efi, bios}_defconfig: update kernel to 4.19.204 Romain Naour
  2021-08-25 20:19 ` [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Arnout Vandecappelle
  0 siblings, 2 replies; 6+ messages in thread
From: Romain Naour @ 2021-08-25 19:20 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

The beaglev kernel is based on the 5.13 branch, update
the expected linux-headers version to 5.13.

Fixes:
https://gitlab.com/kubu93/buildroot/-/jobs/1525740895

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 configs/beaglev_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/beaglev_defconfig b/configs/beaglev_defconfig
index 82a6e9abc4..70459bf3e8 100644
--- a/configs/beaglev_defconfig
+++ b/configs/beaglev_defconfig
@@ -4,7 +4,7 @@ BR2_RISCV_ISA_CUSTOM_RVM=y
 BR2_RISCV_ISA_CUSTOM_RVF=y
 BR2_RISCV_ISA_CUSTOM_RVD=y
 BR2_RISCV_ISA_CUSTOM_RVC=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_12=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_13=y
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/beaglev/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/beaglev/genimage.cfg"
-- 
2.31.1

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH] configs/pc_x86_64_{efi, bios}_defconfig: update kernel to 4.19.204
  2021-08-25 19:20 [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Romain Naour
@ 2021-08-25 19:20 ` Romain Naour
  2021-08-25 20:23   ` Arnout Vandecappelle
  2021-08-25 20:19 ` [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Arnout Vandecappelle
  1 sibling, 1 reply; 6+ messages in thread
From: Romain Naour @ 2021-08-25 19:20 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

gcc 10.x is now used by default but the kernel 4.18.10 used by
pc_x86_64_{efi,bios}_defconfig doesn't build with it.

Bump the kernel to 4.19.204 release that contains a lot of
fixes for newer gcc.

Fixes:
https://gitlab.com/kubu93/buildroot/-/jobs/1525741062
https://gitlab.com/kubu93/buildroot/-/jobs/1525741060

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 configs/pc_x86_64_bios_defconfig | 6 +++---
 configs/pc_x86_64_efi_defconfig  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/configs/pc_x86_64_bios_defconfig b/configs/pc_x86_64_bios_defconfig
index 1c1f7a3666..3290a1dda0 100644
--- a/configs/pc_x86_64_bios_defconfig
+++ b/configs/pc_x86_64_bios_defconfig
@@ -23,13 +23,13 @@ BR2_ROOTFS_POST_BUILD_SCRIPT="board/pc/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/pc/genimage-bios.cfg"
 
-# Linux headers same as kernel, a 4.18 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18=y
+# Linux headers same as kernel, a 4.19 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.18.10"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.204"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/pc/linux.config"
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
diff --git a/configs/pc_x86_64_efi_defconfig b/configs/pc_x86_64_efi_defconfig
index 984fc8f92f..18d2c477d5 100644
--- a/configs/pc_x86_64_efi_defconfig
+++ b/configs/pc_x86_64_efi_defconfig
@@ -25,13 +25,13 @@ BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/pc/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="board/pc/post-image-efi.sh"
 
-# Linux headers same as kernel, a 4.18 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18=y
+# Linux headers same as kernel, a 4.19 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.18.10"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.204"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/pc/linux.config"
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
-- 
2.31.1

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13.
  2021-08-25 19:20 [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Romain Naour
  2021-08-25 19:20 ` [Buildroot] [PATCH] configs/pc_x86_64_{efi, bios}_defconfig: update kernel to 4.19.204 Romain Naour
@ 2021-08-25 20:19 ` Arnout Vandecappelle
  2021-08-25 20:20   ` Arnout Vandecappelle
  2021-08-28 21:21   ` Drew Fustini
  1 sibling, 2 replies; 6+ messages in thread
From: Arnout Vandecappelle @ 2021-08-25 20:19 UTC (permalink / raw)
  To: Romain Naour, buildroot; +Cc: Drew Fustini, Bin Meng, Alistair Francis



On 25/08/2021 21:20, Romain Naour wrote:
> The beaglev kernel is based on the 5.13 branch, update
> the expected linux-headers version to 5.13.
> 
> Fixes:
> https://gitlab.com/kubu93/buildroot/-/jobs/1525740895

 Gah, this has been wrong eer since commit
9a1bd7cc1ce512672a5d76baa86c449e36137052 which I applied (and I didn't notice
even though 5.13 is mentioned 3 times in that commit...)

 What I also don't understand is how nobody else noticed before, while there
have been 3 other commits to  that defconfig and this still wasn't noticed...
Drew, I guess you do your tests with an external toolchain rather than with the
actual defconfig?

 Regards,
 Arnout

> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
>  configs/beaglev_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/beaglev_defconfig b/configs/beaglev_defconfig
> index 82a6e9abc4..70459bf3e8 100644
> --- a/configs/beaglev_defconfig
> +++ b/configs/beaglev_defconfig
> @@ -4,7 +4,7 @@ BR2_RISCV_ISA_CUSTOM_RVM=y
>  BR2_RISCV_ISA_CUSTOM_RVF=y
>  BR2_RISCV_ISA_CUSTOM_RVD=y
>  BR2_RISCV_ISA_CUSTOM_RVC=y
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_12=y
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_13=y
>  BR2_ROOTFS_POST_BUILD_SCRIPT="board/beaglev/post-build.sh"
>  BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
>  BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/beaglev/genimage.cfg"
> 
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13.
  2021-08-25 20:19 ` [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Arnout Vandecappelle
@ 2021-08-25 20:20   ` Arnout Vandecappelle
  2021-08-28 21:21   ` Drew Fustini
  1 sibling, 0 replies; 6+ messages in thread
From: Arnout Vandecappelle @ 2021-08-25 20:20 UTC (permalink / raw)
  To: Romain Naour, buildroot; +Cc: Drew Fustini, Bin Meng, Alistair Francis



On 25/08/2021 22:19, Arnout Vandecappelle wrote:
> 
> 
> On 25/08/2021 21:20, Romain Naour wrote:
>> The beaglev kernel is based on the 5.13 branch, update
>> the expected linux-headers version to 5.13.
>>
>> Fixes:
>> https://gitlab.com/kubu93/buildroot/-/jobs/1525740895
> 
>  Gah, this has been wrong eer since commit
> 9a1bd7cc1ce512672a5d76baa86c449e36137052 which I applied (and I didn't notice
> even though 5.13 is mentioned 3 times in that commit...)
> 
>  What I also don't understand is how nobody else noticed before, while there
> have been 3 other commits to  that defconfig and this still wasn't noticed...
> Drew, I guess you do your tests with an external toolchain rather than with the
> actual defconfig?

 Forgot to mention: Applied to master, thanks.

 Regards,
 Arnout

> 
>  Regards,
>  Arnout
> 
>>
>> Signed-off-by: Romain Naour <romain.naour@gmail.com>
>> ---
>>  configs/beaglev_defconfig | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/configs/beaglev_defconfig b/configs/beaglev_defconfig
>> index 82a6e9abc4..70459bf3e8 100644
>> --- a/configs/beaglev_defconfig
>> +++ b/configs/beaglev_defconfig
>> @@ -4,7 +4,7 @@ BR2_RISCV_ISA_CUSTOM_RVM=y
>>  BR2_RISCV_ISA_CUSTOM_RVF=y
>>  BR2_RISCV_ISA_CUSTOM_RVD=y
>>  BR2_RISCV_ISA_CUSTOM_RVC=y
>> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_12=y
>> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_13=y
>>  BR2_ROOTFS_POST_BUILD_SCRIPT="board/beaglev/post-build.sh"
>>  BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
>>  BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/beaglev/genimage.cfg"
>>
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] configs/pc_x86_64_{efi, bios}_defconfig: update kernel to 4.19.204
  2021-08-25 19:20 ` [Buildroot] [PATCH] configs/pc_x86_64_{efi, bios}_defconfig: update kernel to 4.19.204 Romain Naour
@ 2021-08-25 20:23   ` Arnout Vandecappelle
  0 siblings, 0 replies; 6+ messages in thread
From: Arnout Vandecappelle @ 2021-08-25 20:23 UTC (permalink / raw)
  To: Romain Naour, buildroot



On 25/08/2021 21:20, Romain Naour wrote:
> gcc 10.x is now used by default but the kernel 4.18.10 used by
> pc_x86_64_{efi,bios}_defconfig doesn't build with it.
> 
> Bump the kernel to 4.19.204 release that contains a lot of
> fixes for newer gcc.
> 
> Fixes:
> https://gitlab.com/kubu93/buildroot/-/jobs/1525741062
> https://gitlab.com/kubu93/buildroot/-/jobs/1525741060
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
>  configs/pc_x86_64_bios_defconfig | 6 +++---
>  configs/pc_x86_64_efi_defconfig  | 6 +++---
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/configs/pc_x86_64_bios_defconfig b/configs/pc_x86_64_bios_defconfig
> index 1c1f7a3666..3290a1dda0 100644
> --- a/configs/pc_x86_64_bios_defconfig
> +++ b/configs/pc_x86_64_bios_defconfig
> @@ -23,13 +23,13 @@ BR2_ROOTFS_POST_BUILD_SCRIPT="board/pc/post-build.sh"
>  BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
>  BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/pc/genimage-bios.cfg"
>  
> -# Linux headers same as kernel, a 4.18 series
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18=y
> +# Linux headers same as kernel, a 4.19 series
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
>  
>  # Kernel
>  BR2_LINUX_KERNEL=y
>  BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.18.10"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.204"
>  BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
>  BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/pc/linux.config"
>  BR2_LINUX_KERNEL_INSTALL_TARGET=y
> diff --git a/configs/pc_x86_64_efi_defconfig b/configs/pc_x86_64_efi_defconfig
> index 984fc8f92f..18d2c477d5 100644
> --- a/configs/pc_x86_64_efi_defconfig
> +++ b/configs/pc_x86_64_efi_defconfig
> @@ -25,13 +25,13 @@ BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
>  BR2_ROOTFS_POST_BUILD_SCRIPT="board/pc/post-build.sh"
>  BR2_ROOTFS_POST_IMAGE_SCRIPT="board/pc/post-image-efi.sh"
>  
> -# Linux headers same as kernel, a 4.18 series
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18=y
> +# Linux headers same as kernel, a 4.19 series
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
>  
>  # Kernel
>  BR2_LINUX_KERNEL=y
>  BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.18.10"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.204"
>  BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
>  BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/pc/linux.config"
>  BR2_LINUX_KERNEL_INSTALL_TARGET=y
> 
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13.
  2021-08-25 20:19 ` [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Arnout Vandecappelle
  2021-08-25 20:20   ` Arnout Vandecappelle
@ 2021-08-28 21:21   ` Drew Fustini
  1 sibling, 0 replies; 6+ messages in thread
From: Drew Fustini @ 2021-08-28 21:21 UTC (permalink / raw)
  To: Arnout Vandecappelle; +Cc: Romain Naour, Bin Meng, Alistair Francis, buildroot

On Wed, Aug 25, 2021 at 10:19:49PM +0200, Arnout Vandecappelle wrote:
> 
> 
> On 25/08/2021 21:20, Romain Naour wrote:
> > The beaglev kernel is based on the 5.13 branch, update
> > the expected linux-headers version to 5.13.
> > 
> > Fixes:
> > https://gitlab.com/kubu93/buildroot/-/jobs/1525740895
> 
>  Gah, this has been wrong eer since commit
> 9a1bd7cc1ce512672a5d76baa86c449e36137052 which I applied (and I didn't notice
> even though 5.13 is mentioned 3 times in that commit...)
> 
>  What I also don't understand is how nobody else noticed before, while there
> have been 3 other commits to  that defconfig and this still wasn't noticed...
> Drew, I guess you do your tests with an external toolchain rather than with the
> actual defconfig?
> 
>  Regards,
>  Arnout

Thank you for fixing this Romain.

Arnout - apologies for not updating the kernel header version. I am only
using the upstream beaglev_defconfig so I am not sure why I did not
encounter the error when building.  I must have either failed to notice
the error or had changed the header version failed to commit it.

Thank you,
Drew
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-08-28 21:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-25 19:20 [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Romain Naour
2021-08-25 19:20 ` [Buildroot] [PATCH] configs/pc_x86_64_{efi, bios}_defconfig: update kernel to 4.19.204 Romain Naour
2021-08-25 20:23   ` Arnout Vandecappelle
2021-08-25 20:19 ` [Buildroot] [PATCH] configs/beaglev_defconfig: update linux-headers to 5.13 Arnout Vandecappelle
2021-08-25 20:20   ` Arnout Vandecappelle
2021-08-28 21:21   ` Drew Fustini

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.