From dbf35fa107c9dc1944638daffdbba080d6018c20 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 6 May 2025 14:05:29 +0200 Subject: tools: update create-buildroot-image.sh script Use a newer Buildroot release. Use an appropriate arm instruction set for arm32. Reduce the syslogd logging level. Closes #5986. Closes #5452. --- tools/create-buildroot-image.sh | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/tools/create-buildroot-image.sh b/tools/create-buildroot-image.sh index 0bf0fd386..e406ffa56 100755 --- a/tools/create-buildroot-image.sh +++ b/tools/create-buildroot-image.sh @@ -40,7 +40,7 @@ case "$TARGETARCH" in esac git fetch origin -git checkout 2022.08.2 +git checkout 2025.02.1 make "${DEFCONFIG}" @@ -121,15 +121,15 @@ BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y BR2_LINUX_KERNEL_IMAGEGZ=y BR2_LINUX_KERNEL_GZIP=y BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10=y -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.10" +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.10.235" BR2_ROOTFS_POST_IMAGE_SCRIPT="board/aarch64-efi/post-image.sh ./post_image_script.sh support/scripts/genimage.sh" BR2_ROOTFS_POST_SCRIPT_ARGS="-c ./custom-genimage-efi.cfg" EOF ;; arm) cat >>.config <> package/dhcpcd/dhcpcd.hash +fi + # This script modifies the target root filesystem # before it's packed into the final image. # This part is common for all architectures. -- cgit mrf-deployment