mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-05 03:13:41 +08:00
6df6286b78
- Bump Linux kernel to v6.8.10. The Devicetree has moved; update our config accordingly. - Bump U-Boot to 2023.04. This is the most recent version we can use as U-Boot 2023.07 dropped support for the uevm. OpenSSL is now required for the build. The default boot method has changed; switch to booting with an extlinux configuration to overcome this. Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
# Architecture
|
|
BR2_arm=y
|
|
BR2_cortex_a15=y
|
|
BR2_ARM_FPU_NEON_VFPV4=y
|
|
|
|
# Linux headers same as kernel, a 6.8 series
|
|
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_8=y
|
|
|
|
# System
|
|
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
|
|
BR2_TARGET_GENERIC_GETTY_PORT="ttyS2"
|
|
BR2_SYSTEM_DHCP="eth0"
|
|
|
|
# Image
|
|
BR2_ROOTFS_POST_BUILD_SCRIPT="board/uevm5432/post-build.sh"
|
|
BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
|
|
BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/uevm5432/genimage.cfg"
|
|
|
|
# Kernel
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.8.10"
|
|
BR2_LINUX_KERNEL_DEFCONFIG="omap2plus"
|
|
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
|
BR2_LINUX_KERNEL_INTREE_DTS_NAME="ti/omap/omap5-uevm"
|
|
BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
|
|
|
|
# Filesystem
|
|
BR2_TARGET_ROOTFS_EXT2=y
|
|
BR2_TARGET_ROOTFS_EXT2_4=y
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
|
|
# Bootloader
|
|
BR2_TARGET_UBOOT=y
|
|
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
|
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
|
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2023.04"
|
|
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="omap5_uevm"
|
|
BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
|
|
BR2_TARGET_UBOOT_FORMAT_IMG=y
|
|
BR2_TARGET_UBOOT_SPL=y
|
|
BR2_TARGET_UBOOT_SPL_NAME="MLO"
|
|
|
|
# Required tools to create the SD card image
|
|
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
|
BR2_PACKAGE_HOST_GENIMAGE=y
|
|
BR2_PACKAGE_HOST_MTOOLS=y
|