* [Buildroot] [next v2 0/2] raspberrypi*: bumps to kernel 6.6.28 and rpi-firmware @ 2024-06-07 7:13 Gaël PORTAY 2024-06-07 7:13 ` [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) Gaël PORTAY 2024-06-07 7:13 ` [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 Gaël PORTAY 0 siblings, 2 replies; 10+ messages in thread From: Gaël PORTAY @ 2024-06-07 7:13 UTC (permalink / raw) To: buildroot Cc: Gaël PORTAY, Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, Yann E . MORIN Hello, This patch serie bumps the kernel version to 6.6.28 and the rpi-firmware (for the device-tree blob overlays). The first patch bumps the kernel and updates the path to the in-tree dts names of the 32-bit defconfigs as the dts files moved to a per-vendor sub-directory). The second patch bumps the rpi-firmware so the dtbo files stay synced with the kernel. Note: I have tested the configuration on pi, pi3, pi3_64, pi4, pi4_64, pi0, pi0w and even on pi5. If someone have pi2, pizero2w and cm4io hardwares, I would be thankful if these configuration are tested. Changes since v1: - Rebase on top of next - Update defconfig to new raspberrypi5_defconfig Kind Regards, Gaël PORTAY (2): configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) package/rpi-firmware: bump version to 5476720 configs/raspberrypi0_defconfig | 8 ++++---- configs/raspberrypi0w_defconfig | 8 ++++---- configs/raspberrypi2_defconfig | 8 ++++---- configs/raspberrypi3_64_defconfig | 6 +++--- configs/raspberrypi3_defconfig | 8 ++++---- configs/raspberrypi3_qt5we_defconfig | 6 +++--- configs/raspberrypi4_64_defconfig | 6 +++--- configs/raspberrypi4_defconfig | 8 ++++---- configs/raspberrypi5_defconfig | 6 +++--- configs/raspberrypi_defconfig | 8 ++++---- configs/raspberrypicm4io_64_defconfig | 6 +++--- configs/raspberrypicm4io_defconfig | 8 ++++---- configs/raspberrypizero2w_defconfig | 8 ++++---- package/rpi-firmware/rpi-firmware.hash | 2 +- package/rpi-firmware/rpi-firmware.mk | 2 +- 15 files changed, 49 insertions(+), 49 deletions(-) -- 2.45.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) 2024-06-07 7:13 [Buildroot] [next v2 0/2] raspberrypi*: bumps to kernel 6.6.28 and rpi-firmware Gaël PORTAY @ 2024-06-07 7:13 ` Gaël PORTAY 2024-06-18 20:29 ` Brandon Maier via buildroot 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 2024-06-07 7:13 ` [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 Gaël PORTAY 1 sibling, 2 replies; 10+ messages in thread From: Gaël PORTAY @ 2024-06-07 7:13 UTC (permalink / raw) To: buildroot Cc: Gaël PORTAY, Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, Yann E . MORIN Now based on 6.6.28 (from 6.1.61). Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> --- configs/raspberrypi0_defconfig | 8 ++++---- configs/raspberrypi0w_defconfig | 8 ++++---- configs/raspberrypi2_defconfig | 8 ++++---- configs/raspberrypi3_64_defconfig | 6 +++--- configs/raspberrypi3_defconfig | 8 ++++---- configs/raspberrypi3_qt5we_defconfig | 6 +++--- configs/raspberrypi4_64_defconfig | 6 +++--- configs/raspberrypi4_defconfig | 8 ++++---- configs/raspberrypi5_defconfig | 6 +++--- configs/raspberrypi_defconfig | 8 ++++---- configs/raspberrypicm4io_64_defconfig | 6 +++--- configs/raspberrypicm4io_defconfig | 8 ++++---- configs/raspberrypizero2w_defconfig | 8 ++++---- 13 files changed, 47 insertions(+), 47 deletions(-) diff --git a/configs/raspberrypi0_defconfig b/configs/raspberrypi0_defconfig index 74a8477cc6..b2b7351ac1 100644 --- a/configs/raspberrypi0_defconfig +++ b/configs/raspberrypi0_defconfig @@ -6,20 +6,20 @@ BR2_ARM_EABIHF=y BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches" BR2_DOWNLOAD_FORCE_CHECK_HASHES=y -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi" # Build the DTBs for A/B from the kernel sources: the zero is the same # as the A+ model, just in a different form-factor BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-zero" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2708-rpi-zero" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y diff --git a/configs/raspberrypi0w_defconfig b/configs/raspberrypi0w_defconfig index 03f6a805e6..a198596b40 100644 --- a/configs/raspberrypi0w_defconfig +++ b/configs/raspberrypi0w_defconfig @@ -6,17 +6,17 @@ BR2_ARM_EABIHF=y BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches" BR2_DOWNLOAD_FORCE_CHECK_HASHES=y -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi" BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-zero-w" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2708-rpi-zero-w" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y BR2_PACKAGE_RPI_FIRMWARE=y diff --git a/configs/raspberrypi2_defconfig b/configs/raspberrypi2_defconfig index 79de3fbf3e..05870cc6e1 100644 --- a/configs/raspberrypi2_defconfig +++ b/configs/raspberrypi2_defconfig @@ -11,17 +11,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" # Build the DTB from the kernel sources BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2709-rpi-2-b" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2709-rpi-2-b" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y diff --git a/configs/raspberrypi3_64_defconfig b/configs/raspberrypi3_64_defconfig index 5460cd8c62..ec309b2bad 100644 --- a/configs/raspberrypi3_64_defconfig +++ b/configs/raspberrypi3_64_defconfig @@ -10,12 +10,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi3" # Build the DTB from the kernel sources diff --git a/configs/raspberrypi3_defconfig b/configs/raspberrypi3_defconfig index eded94014d..ba2d5b6eed 100644 --- a/configs/raspberrypi3_defconfig +++ b/configs/raspberrypi3_defconfig @@ -10,17 +10,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" # Build the DTB from the kernel sources BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2710-rpi-3-b bcm2710-rpi-3-b-plus bcm2710-rpi-cm3" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2710-rpi-3-b broadcom/bcm2710-rpi-3-b-plus broadcom/bcm2710-rpi-cm3" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y diff --git a/configs/raspberrypi3_qt5we_defconfig b/configs/raspberrypi3_qt5we_defconfig index 72e1c349f2..38f41f45a6 100644 --- a/configs/raspberrypi3_qt5we_defconfig +++ b/configs/raspberrypi3_qt5we_defconfig @@ -11,12 +11,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" # Build the DTB from the kernel sources diff --git a/configs/raspberrypi4_64_defconfig b/configs/raspberrypi4_64_defconfig index 8da3ecee12..5c6698fb37 100644 --- a/configs/raspberrypi4_64_defconfig +++ b/configs/raspberrypi4_64_defconfig @@ -10,12 +10,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" # Build the DTB from the kernel sources diff --git a/configs/raspberrypi4_defconfig b/configs/raspberrypi4_defconfig index 2c37631396..c14b77eacd 100644 --- a/configs/raspberrypi4_defconfig +++ b/configs/raspberrypi4_defconfig @@ -10,17 +10,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" # Build the DTB from the kernel sources BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2711-rpi-4-b" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2711-rpi-4-b" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y diff --git a/configs/raspberrypi5_defconfig b/configs/raspberrypi5_defconfig index 73592c4a1a..3c88ce46cd 100644 --- a/configs/raspberrypi5_defconfig +++ b/configs/raspberrypi5_defconfig @@ -6,13 +6,13 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/raspberrypi/linux-4k-page-size.fragment" BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2712" # Build the DTB from the kernel sources diff --git a/configs/raspberrypi_defconfig b/configs/raspberrypi_defconfig index c911ec63e9..03c81ebf39 100644 --- a/configs/raspberrypi_defconfig +++ b/configs/raspberrypi_defconfig @@ -8,19 +8,19 @@ BR2_DOWNLOAD_FORCE_CHECK_HASHES=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi" # Build the DTBs for A/B, A+/B+ and compute module from the kernel sources BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2708-rpi-b broadcom/bcm2708-rpi-b-plus broadcom/bcm2708-rpi-cm" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y diff --git a/configs/raspberrypicm4io_64_defconfig b/configs/raspberrypicm4io_64_defconfig index 75077263e4..e9d57091b5 100644 --- a/configs/raspberrypicm4io_64_defconfig +++ b/configs/raspberrypicm4io_64_defconfig @@ -10,12 +10,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" # Build the DTB from the kernel sources diff --git a/configs/raspberrypicm4io_defconfig b/configs/raspberrypicm4io_defconfig index 07adb962a4..537d077b71 100644 --- a/configs/raspberrypicm4io_defconfig +++ b/configs/raspberrypicm4io_defconfig @@ -10,17 +10,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_SYSTEM_DHCP="eth0" -# Linux headers same as kernel, a 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, a 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" # Build the DTB from the kernel sources BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2711-rpi-cm4" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2711-rpi-cm4" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y diff --git a/configs/raspberrypizero2w_defconfig b/configs/raspberrypizero2w_defconfig index 0b1457f407..37922909f3 100644 --- a/configs/raspberrypizero2w_defconfig +++ b/configs/raspberrypizero2w_defconfig @@ -6,19 +6,19 @@ BR2_ARM_FPU_NEON_VFPV4=y BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches" BR2_DOWNLOAD_FORCE_CHECK_HASHES=y -# Linux headers same as kernel, 6.1 series -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y +# Linux headers same as kernel, 6.6 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_TARBALL=y -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" # Build the DTB from the kernel sources BR2_LINUX_KERNEL_DTS_SUPPORT=y -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2710-rpi-zero-2-w" +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2710-rpi-zero-2-w" BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y BR2_PACKAGE_RPI_FIRMWARE=y -- 2.45.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) 2024-06-07 7:13 ` [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) Gaël PORTAY @ 2024-06-18 20:29 ` Brandon Maier via buildroot 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 1 sibling, 0 replies; 10+ messages in thread From: Brandon Maier via buildroot @ 2024-06-18 20:29 UTC (permalink / raw) To: Gaël PORTAY Cc: Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, buildroot, Yann E . MORIN Hi Gaël, On 2024.06.07 09:13, Gaël PORTAY wrote: > Now based on 6.6.28 (from 6.1.61). > > Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> I enabled BR2_DOWNLOAD_FORCE_CHECK_HASHES on the rpi configs, so the file board/raspberrypi/patches/linux/linux.hash needs to be updated for the new version. I built this locally and updated the hash like so --- a/board/raspberrypi/patches/linux/linux.hash +++ b/board/raspberrypi/patches/linux/linux.hash @@ -1,2 +1,2 @@ # Locally calculated -sha256 4d3a2af178ac6ed8f35b773836c8d216493a850aeb80932b379348e2df0cf5d2 linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz +sha256 dab3052783c68c46a5bc645b1c38d9705da995ab42823566518b62eb1fa1ef97 linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz I boot tested this on a rpi2 and everything looks good. Pending a v2 for the hash, Reviewed-by: Brandon Maier <brandon.maier@collins.com> Tested-by: Brandon Maier <brandon.maier@collins.com> > --- > configs/raspberrypi0_defconfig | 8 ++++---- > configs/raspberrypi0w_defconfig | 8 ++++---- > configs/raspberrypi2_defconfig | 8 ++++---- > configs/raspberrypi3_64_defconfig | 6 +++--- > configs/raspberrypi3_defconfig | 8 ++++---- > configs/raspberrypi3_qt5we_defconfig | 6 +++--- > configs/raspberrypi4_64_defconfig | 6 +++--- > configs/raspberrypi4_defconfig | 8 ++++---- > configs/raspberrypi5_defconfig | 6 +++--- > configs/raspberrypi_defconfig | 8 ++++---- > configs/raspberrypicm4io_64_defconfig | 6 +++--- > configs/raspberrypicm4io_defconfig | 8 ++++---- > configs/raspberrypizero2w_defconfig | 8 ++++---- > 13 files changed, 47 insertions(+), 47 deletions(-) > > diff --git a/configs/raspberrypi0_defconfig b/configs/raspberrypi0_defconfig > index 74a8477cc6..b2b7351ac1 100644 > --- a/configs/raspberrypi0_defconfig > +++ b/configs/raspberrypi0_defconfig > @@ -6,20 +6,20 @@ BR2_ARM_EABIHF=y > BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches" > BR2_DOWNLOAD_FORCE_CHECK_HASHES=y > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi" > > # Build the DTBs for A/B from the kernel sources: the zero is the same > # as the A+ model, just in a different form-factor > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-zero" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2708-rpi-zero" > > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > diff --git a/configs/raspberrypi0w_defconfig b/configs/raspberrypi0w_defconfig > index 03f6a805e6..a198596b40 100644 > --- a/configs/raspberrypi0w_defconfig > +++ b/configs/raspberrypi0w_defconfig > @@ -6,17 +6,17 @@ BR2_ARM_EABIHF=y > BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches" > BR2_DOWNLOAD_FORCE_CHECK_HASHES=y > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi" > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-zero-w" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2708-rpi-zero-w" > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > BR2_PACKAGE_RPI_FIRMWARE=y > diff --git a/configs/raspberrypi2_defconfig b/configs/raspberrypi2_defconfig > index 79de3fbf3e..05870cc6e1 100644 > --- a/configs/raspberrypi2_defconfig > +++ b/configs/raspberrypi2_defconfig > @@ -11,17 +11,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" > > # Build the DTB from the kernel sources > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2709-rpi-2-b" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2709-rpi-2-b" > > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > diff --git a/configs/raspberrypi3_64_defconfig b/configs/raspberrypi3_64_defconfig > index 5460cd8c62..ec309b2bad 100644 > --- a/configs/raspberrypi3_64_defconfig > +++ b/configs/raspberrypi3_64_defconfig > @@ -10,12 +10,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi3" > > # Build the DTB from the kernel sources > diff --git a/configs/raspberrypi3_defconfig b/configs/raspberrypi3_defconfig > index eded94014d..ba2d5b6eed 100644 > --- a/configs/raspberrypi3_defconfig > +++ b/configs/raspberrypi3_defconfig > @@ -10,17 +10,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" > > # Build the DTB from the kernel sources > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2710-rpi-3-b bcm2710-rpi-3-b-plus bcm2710-rpi-cm3" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2710-rpi-3-b broadcom/bcm2710-rpi-3-b-plus broadcom/bcm2710-rpi-cm3" > > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > diff --git a/configs/raspberrypi3_qt5we_defconfig b/configs/raspberrypi3_qt5we_defconfig > index 72e1c349f2..38f41f45a6 100644 > --- a/configs/raspberrypi3_qt5we_defconfig > +++ b/configs/raspberrypi3_qt5we_defconfig > @@ -11,12 +11,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" > > # Build the DTB from the kernel sources > diff --git a/configs/raspberrypi4_64_defconfig b/configs/raspberrypi4_64_defconfig > index 8da3ecee12..5c6698fb37 100644 > --- a/configs/raspberrypi4_64_defconfig > +++ b/configs/raspberrypi4_64_defconfig > @@ -10,12 +10,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" > > # Build the DTB from the kernel sources > diff --git a/configs/raspberrypi4_defconfig b/configs/raspberrypi4_defconfig > index 2c37631396..c14b77eacd 100644 > --- a/configs/raspberrypi4_defconfig > +++ b/configs/raspberrypi4_defconfig > @@ -10,17 +10,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" > > # Build the DTB from the kernel sources > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2711-rpi-4-b" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2711-rpi-4-b" > > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > diff --git a/configs/raspberrypi5_defconfig b/configs/raspberrypi5_defconfig > index 73592c4a1a..3c88ce46cd 100644 > --- a/configs/raspberrypi5_defconfig > +++ b/configs/raspberrypi5_defconfig > @@ -6,13 +6,13 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/raspberrypi/linux-4k-page-size.fragment" > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2712" > > # Build the DTB from the kernel sources > diff --git a/configs/raspberrypi_defconfig b/configs/raspberrypi_defconfig > index c911ec63e9..03c81ebf39 100644 > --- a/configs/raspberrypi_defconfig > +++ b/configs/raspberrypi_defconfig > @@ -8,19 +8,19 @@ BR2_DOWNLOAD_FORCE_CHECK_HASHES=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi" > > # Build the DTBs for A/B, A+/B+ and compute module from the kernel sources > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2708-rpi-b broadcom/bcm2708-rpi-b-plus broadcom/bcm2708-rpi-cm" > > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > diff --git a/configs/raspberrypicm4io_64_defconfig b/configs/raspberrypicm4io_64_defconfig > index 75077263e4..e9d57091b5 100644 > --- a/configs/raspberrypicm4io_64_defconfig > +++ b/configs/raspberrypicm4io_64_defconfig > @@ -10,12 +10,12 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" > > # Build the DTB from the kernel sources > diff --git a/configs/raspberrypicm4io_defconfig b/configs/raspberrypicm4io_defconfig > index 07adb962a4..537d077b71 100644 > --- a/configs/raspberrypicm4io_defconfig > +++ b/configs/raspberrypicm4io_defconfig > @@ -10,17 +10,17 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_SYSTEM_DHCP="eth0" > > -# Linux headers same as kernel, a 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, a 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2711" > > # Build the DTB from the kernel sources > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2711-rpi-cm4" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2711-rpi-cm4" > > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > diff --git a/configs/raspberrypizero2w_defconfig b/configs/raspberrypizero2w_defconfig > index 0b1457f407..37922909f3 100644 > --- a/configs/raspberrypizero2w_defconfig > +++ b/configs/raspberrypizero2w_defconfig > @@ -6,19 +6,19 @@ BR2_ARM_FPU_NEON_VFPV4=y > BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches" > BR2_DOWNLOAD_FORCE_CHECK_HASHES=y > > -# Linux headers same as kernel, 6.1 series > -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y > +# Linux headers same as kernel, 6.6 series > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y > > BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > -BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,17f135b742c4edb340afb365873c3a574f7e16cb)/linux-17f135b742c4edb340afb365873c3a574f7e16cb.tar.gz" > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,raspberrypi,linux,576cc10e1ed50a9eacffc7a05c796051d7343ea4)/linux-576cc10e1ed50a9eacffc7a05c796051d7343ea4.tar.gz" > BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" > > # Build the DTB from the kernel sources > BR2_LINUX_KERNEL_DTS_SUPPORT=y > -BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2710-rpi-zero-2-w" > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="broadcom/bcm2710-rpi-zero-2-w" > BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y > > BR2_PACKAGE_RPI_FIRMWARE=y > -- > 2.45.2 > > _______________________________________________ > buildroot mailing list > buildroot@buildroot.org > https://lists.buildroot.org/mailman/listinfo/buildroot _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) 2024-06-07 7:13 ` [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) Gaël PORTAY 2024-06-18 20:29 ` Brandon Maier via buildroot @ 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 1 sibling, 0 replies; 10+ messages in thread From: Thomas Petazzoni via buildroot @ 2024-07-12 14:43 UTC (permalink / raw) To: Gaël PORTAY Cc: Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, buildroot, Yann E . MORIN On Fri, 7 Jun 2024 09:13:58 +0200 Gaël PORTAY <gael.portay@rtone.fr> wrote: > Now based on 6.6.28 (from 6.1.61). > > Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> > --- > configs/raspberrypi0_defconfig | 8 ++++---- > configs/raspberrypi0w_defconfig | 8 ++++---- > configs/raspberrypi2_defconfig | 8 ++++---- > configs/raspberrypi3_64_defconfig | 6 +++--- > configs/raspberrypi3_defconfig | 8 ++++---- > configs/raspberrypi3_qt5we_defconfig | 6 +++--- > configs/raspberrypi4_64_defconfig | 6 +++--- > configs/raspberrypi4_defconfig | 8 ++++---- > configs/raspberrypi5_defconfig | 6 +++--- > configs/raspberrypi_defconfig | 8 ++++---- > configs/raspberrypicm4io_64_defconfig | 6 +++--- > configs/raspberrypicm4io_defconfig | 8 ++++---- > configs/raspberrypizero2w_defconfig | 8 ++++---- > 13 files changed, 47 insertions(+), 47 deletions(-) Applied to master after fixing the linux.hash as pointed by Brandon, 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] 10+ messages in thread
* [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 2024-06-07 7:13 [Buildroot] [next v2 0/2] raspberrypi*: bumps to kernel 6.6.28 and rpi-firmware Gaël PORTAY 2024-06-07 7:13 ` [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) Gaël PORTAY @ 2024-06-07 7:13 ` Gaël PORTAY 2024-06-18 20:30 ` Brandon Maier via buildroot ` (2 more replies) 1 sibling, 3 replies; 10+ messages in thread From: Gaël PORTAY @ 2024-06-07 7:13 UTC (permalink / raw) To: buildroot Cc: Gaël PORTAY, Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, Yann E . MORIN Version 5476720 match the with kernel 6.6.28. Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> --- package/rpi-firmware/rpi-firmware.hash | 2 +- package/rpi-firmware/rpi-firmware.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/rpi-firmware/rpi-firmware.hash b/package/rpi-firmware/rpi-firmware.hash index 33e05a2f4a..4501db739c 100644 --- a/package/rpi-firmware/rpi-firmware.hash +++ b/package/rpi-firmware/rpi-firmware.hash @@ -1,3 +1,3 @@ # Locally computed -sha256 dd43e77ca1a8969cdb7f05dd72a57f90862071d5a93bdd6aea8246aba85689cf rpi-firmware-83dafbc92c0e63f76ca2ecdd42462d56489d1c77.tar.gz +sha256 00fe5487376e9d5ed14cbc72a9b7a5bd8d6900c84aee10f6d656f192a26d161c rpi-firmware-5476720d52cf579dc1627715262b30ba1242525e.tar.gz sha256 c7283ff51f863d93a275c66e3b4cb08021a5dd4d8c1e7acc47d872fbe52d3d6b boot/LICENCE.broadcom diff --git a/package/rpi-firmware/rpi-firmware.mk b/package/rpi-firmware/rpi-firmware.mk index 11177aee02..7ae9ff6c28 100644 --- a/package/rpi-firmware/rpi-firmware.mk +++ b/package/rpi-firmware/rpi-firmware.mk @@ -4,7 +4,7 @@ # ################################################################################ -RPI_FIRMWARE_VERSION = 83dafbc92c0e63f76ca2ecdd42462d56489d1c77 +RPI_FIRMWARE_VERSION = 5476720d52cf579dc1627715262b30ba1242525e RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION)) RPI_FIRMWARE_LICENSE = BSD-3-Clause RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom -- 2.45.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 2024-06-07 7:13 ` [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 Gaël PORTAY @ 2024-06-18 20:30 ` Brandon Maier via buildroot 2024-06-21 21:51 ` Arnout Vandecappelle via buildroot 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 2 siblings, 0 replies; 10+ messages in thread From: Brandon Maier via buildroot @ 2024-06-18 20:30 UTC (permalink / raw) To: Gaël PORTAY Cc: Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, buildroot, Yann E . MORIN Hi Gaël, On 2024.06.07 09:13, Gaël PORTAY wrote: > Version 5476720 match the with kernel 6.6.28. > > Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> Boot tested on a rpi2 Reviewed-by: Brandon Maier <brandon.maier@collins.com> Tested-by: Brandon Maier <brandon.maier@collins.com> > --- > package/rpi-firmware/rpi-firmware.hash | 2 +- > package/rpi-firmware/rpi-firmware.mk | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/package/rpi-firmware/rpi-firmware.hash b/package/rpi-firmware/rpi-firmware.hash > index 33e05a2f4a..4501db739c 100644 > --- a/package/rpi-firmware/rpi-firmware.hash > +++ b/package/rpi-firmware/rpi-firmware.hash > @@ -1,3 +1,3 @@ > # Locally computed > -sha256 dd43e77ca1a8969cdb7f05dd72a57f90862071d5a93bdd6aea8246aba85689cf rpi-firmware-83dafbc92c0e63f76ca2ecdd42462d56489d1c77.tar.gz > +sha256 00fe5487376e9d5ed14cbc72a9b7a5bd8d6900c84aee10f6d656f192a26d161c rpi-firmware-5476720d52cf579dc1627715262b30ba1242525e.tar.gz > sha256 c7283ff51f863d93a275c66e3b4cb08021a5dd4d8c1e7acc47d872fbe52d3d6b boot/LICENCE.broadcom > diff --git a/package/rpi-firmware/rpi-firmware.mk b/package/rpi-firmware/rpi-firmware.mk > index 11177aee02..7ae9ff6c28 100644 > --- a/package/rpi-firmware/rpi-firmware.mk > +++ b/package/rpi-firmware/rpi-firmware.mk > @@ -4,7 +4,7 @@ > # > ################################################################################ > > -RPI_FIRMWARE_VERSION = 83dafbc92c0e63f76ca2ecdd42462d56489d1c77 > +RPI_FIRMWARE_VERSION = 5476720d52cf579dc1627715262b30ba1242525e > RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION)) > RPI_FIRMWARE_LICENSE = BSD-3-Clause > RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom > -- > 2.45.2 > > _______________________________________________ > buildroot mailing list > buildroot@buildroot.org > https://lists.buildroot.org/mailman/listinfo/buildroot _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 2024-06-07 7:13 ` [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 Gaël PORTAY 2024-06-18 20:30 ` Brandon Maier via buildroot @ 2024-06-21 21:51 ` Arnout Vandecappelle via buildroot 2024-07-12 14:44 ` Thomas Petazzoni via buildroot 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 2 siblings, 1 reply; 10+ messages in thread From: Arnout Vandecappelle via buildroot @ 2024-06-21 21:51 UTC (permalink / raw) To: Gaël PORTAY, buildroot Cc: Yann E . MORIN, Athaariq Ardhiansyah, Mahyar Koshkouei, Julien Grossholtz, Martin Bark On 07/06/2024 09:13, Gaël PORTAY wrote: > Version 5476720 match the with kernel 6.6.28. > > Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> Earlier, Athaariq sent a patch [1] that updates to a more recent version and also moves to the stable branch. I think I prefer that one. Regards, Arnout [1] https://patchwork.ozlabs.org/project/buildroot/patch/20240603230940.51746-1-foss@athaariq.my.id/ > --- > package/rpi-firmware/rpi-firmware.hash | 2 +- > package/rpi-firmware/rpi-firmware.mk | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/package/rpi-firmware/rpi-firmware.hash b/package/rpi-firmware/rpi-firmware.hash > index 33e05a2f4a..4501db739c 100644 > --- a/package/rpi-firmware/rpi-firmware.hash > +++ b/package/rpi-firmware/rpi-firmware.hash > @@ -1,3 +1,3 @@ > # Locally computed > -sha256 dd43e77ca1a8969cdb7f05dd72a57f90862071d5a93bdd6aea8246aba85689cf rpi-firmware-83dafbc92c0e63f76ca2ecdd42462d56489d1c77.tar.gz > +sha256 00fe5487376e9d5ed14cbc72a9b7a5bd8d6900c84aee10f6d656f192a26d161c rpi-firmware-5476720d52cf579dc1627715262b30ba1242525e.tar.gz > sha256 c7283ff51f863d93a275c66e3b4cb08021a5dd4d8c1e7acc47d872fbe52d3d6b boot/LICENCE.broadcom > diff --git a/package/rpi-firmware/rpi-firmware.mk b/package/rpi-firmware/rpi-firmware.mk > index 11177aee02..7ae9ff6c28 100644 > --- a/package/rpi-firmware/rpi-firmware.mk > +++ b/package/rpi-firmware/rpi-firmware.mk > @@ -4,7 +4,7 @@ > # > ################################################################################ > > -RPI_FIRMWARE_VERSION = 83dafbc92c0e63f76ca2ecdd42462d56489d1c77 > +RPI_FIRMWARE_VERSION = 5476720d52cf579dc1627715262b30ba1242525e > RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION)) > RPI_FIRMWARE_LICENSE = BSD-3-Clause > RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 2024-06-21 21:51 ` Arnout Vandecappelle via buildroot @ 2024-07-12 14:44 ` Thomas Petazzoni via buildroot 2024-07-14 16:11 ` Athaariq Ardhiansyah 0 siblings, 1 reply; 10+ messages in thread From: Thomas Petazzoni via buildroot @ 2024-07-12 14:44 UTC (permalink / raw) To: Arnout Vandecappelle via buildroot Cc: Gaël PORTAY, Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, Yann E . MORIN On Fri, 21 Jun 2024 23:51:24 +0200 Arnout Vandecappelle via buildroot <buildroot@buildroot.org> wrote: > Earlier, Athaariq sent a patch [1] that updates to a more recent version and > also moves to the stable branch. I think I prefer that one. I would tend to agree, but I nevertheless applied this patch from Gaël because it has been tested in conjunction with the Linux kernel update, while the patch series from Athaariq was still relying on the "older" kernel, and Gaël noted this firmware update was made to match with the update to the 6.6.28 kernel. So, Gaël, Athaariq please coordinate to send an update to rpi-firmware that uses the stable branch, and that works with the current RPi kernel we use. Thanks! Thomas -- Thomas Petazzoni, co-owner and CEO, Bootlin Embedded Linux and Kernel engineering and training https://bootlin.com _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 2024-07-12 14:44 ` Thomas Petazzoni via buildroot @ 2024-07-14 16:11 ` Athaariq Ardhiansyah 0 siblings, 0 replies; 10+ messages in thread From: Athaariq Ardhiansyah @ 2024-07-14 16:11 UTC (permalink / raw) To: Thomas Petazzoni, Arnout Vandecappelle via buildroot Cc: Gaël PORTAY, Mahyar Koshkouei, Julien Grossholtz, Yann E . MORIN, Martin Bark Hello Thomas, > So, Gaël, Athaariq please coordinate to send an update to rpi-firmware > that uses the stable branch, and that works with the current RPi kernel > we use. I tried my best to update the firmware and its corresponding kernel to the latest stable version. However, I need help to test the changes due to my inability of recovering my fried Raspberry Pi 5 PMIC. Please check the patchwork below. https://patchwork.ozlabs.org/project/buildroot/patch/20240714160457.39434-1-foss@athaariq.my.id/ Sorry for taking too long. Thank you for your patience. Sincerely, Athaariq Ardhiansyah _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 2024-06-07 7:13 ` [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 Gaël PORTAY 2024-06-18 20:30 ` Brandon Maier via buildroot 2024-06-21 21:51 ` Arnout Vandecappelle via buildroot @ 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 2 siblings, 0 replies; 10+ messages in thread From: Thomas Petazzoni via buildroot @ 2024-07-12 14:43 UTC (permalink / raw) To: Gaël PORTAY Cc: Mahyar Koshkouei, Julien Grossholtz, Martin Bark, Athaariq Ardhiansyah, buildroot, Yann E . MORIN On Fri, 7 Jun 2024 09:13:59 +0200 Gaël PORTAY <gael.portay@rtone.fr> wrote: > Version 5476720 match the with kernel 6.6.28. > > Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr> > --- > package/rpi-firmware/rpi-firmware.hash | 2 +- > package/rpi-firmware/rpi-firmware.mk | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) 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] 10+ messages in thread
end of thread, other threads:[~2024-07-14 16:11 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-07 7:13 [Buildroot] [next v2 0/2] raspberrypi*: bumps to kernel 6.6.28 and rpi-firmware Gaël PORTAY 2024-06-07 7:13 ` [Buildroot] [next v2 1/2] configs/raspberrypi*: bump kernel version to 17f135b (6.6.28) Gaël PORTAY 2024-06-18 20:29 ` Brandon Maier via buildroot 2024-07-12 14:43 ` Thomas Petazzoni via buildroot 2024-06-07 7:13 ` [Buildroot] [next v2 2/2] package/rpi-firmware: bump version to 5476720 Gaël PORTAY 2024-06-18 20:30 ` Brandon Maier via buildroot 2024-06-21 21:51 ` Arnout Vandecappelle via buildroot 2024-07-12 14:44 ` Thomas Petazzoni via buildroot 2024-07-14 16:11 ` Athaariq Ardhiansyah 2024-07-12 14:43 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox