mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Python setuptools has removed the obsolete pkg_resources python module in v82.0.0. This module is used by the binman command in U-Boot until v2025.10. Since the python-setuptools package has been updated to v82.0.0 in Buildroot, the imxrt1050-evk_defconfig (using U-Boot v2025.07 and binman) fails to build with the following error [1]: ModuleNotFoundError: No module named 'pkg_resources' Update the defconfig to use a more recent U-Boot v2026.01, to fix the build and at the same time bump Linux to version 6.18.18. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/13476922027 Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> [Julien: fix defconfig name in commit log] Signed-off-by: Julien Olivain <ju.o@free.fr>
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
BR2_arm=y
|
|
BR2_cortex_m7=y
|
|
BR2_TOOLCHAIN_EXTERNAL=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7M_UCLIBC_STABLE=y
|
|
BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
|
|
BR2_GLOBAL_PATCH_DIR="board/freescale/imxrt1050evk/patches"
|
|
BR2_ROOTFS_OVERLAY="board/freescale/imxrt1050evk/rootfs_overlay"
|
|
BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
|
|
BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/freescale/imxrt1050evk/genimage.cfg"
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.18.18"
|
|
BR2_LINUX_KERNEL_DEFCONFIG="imxrt"
|
|
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
|
BR2_LINUX_KERNEL_INTREE_DTS_NAME="nxp/imx/imxrt1050-evk"
|
|
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
|
BR2_TARGET_ROOTFS_EXT2=y
|
|
BR2_TARGET_ROOTFS_EXT2_4=y
|
|
BR2_TARGET_ROOTFS_EXT2_SIZE="16M"
|
|
BR2_TARGET_UBOOT=y
|
|
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
|
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
|
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2026.01"
|
|
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imxrt1050-evk"
|
|
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
|
|
BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
|
|
BR2_TARGET_UBOOT_FORMAT_IMG=y
|
|
BR2_TARGET_UBOOT_SPL=y
|
|
BR2_TARGET_UBOOT_SPL_NAME="SPL"
|
|
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
|
BR2_PACKAGE_HOST_GENIMAGE=y
|
|
BR2_PACKAGE_HOST_MTOOLS=y
|