fe277eac1f
The current commit used for the kernel Git repository for Cubieboard, 274a66a7bfcbaabb88d63e4eba161965383cc416, actually points to 3.0 kernel. This is incorrect since the kernel headers version specified by the defconfig is 3.4. And anyway, the 3.4 kernel is kind of the official vendor kernel for Allwinner platforms. mfld.fr@gmail.com reported in bug #7931 that commit 9a1cd034181af628d4145202289e1993c1687db6 was working for him. It is the latest commit in the sunxi-3.4 branch. So we switch to using this commit, which was build tested successfully. While we're at it, remove the definition of BR2_LINUX_KERNEL_VERSION from the defconfig: it doesn't make sense to have it defined in a defconfig, as it's a blind option that gets defined from the value of BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION when a Git repository is used to source the kernel. Fixes #7931. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
# Architecture
|
|
BR2_arm=y
|
|
BR2_cortex_a8=y
|
|
|
|
# System configuration
|
|
BR2_TARGET_GENERIC_HOSTNAME="Cubieboard"
|
|
BR2_TARGET_GENERIC_ISSUE="Welcome to use Cubieboard!"
|
|
BR2_TARGET_GENERIC_GETTY=y
|
|
BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
|
|
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/cubietech/cubieboard/post-build.sh"
|
|
|
|
# Additional tools
|
|
BR2_PACKAGE_HOST_SUNXI_TOOLS=y
|
|
BR2_PACKAGE_HOST_UBOOT_TOOLS=y
|
|
BR2_PACKAGE_SUNXI_TOOLS=y
|
|
BR2_PACKAGE_SUNXI_BOARDS=y
|
|
BR2_PACKAGE_SUNXI_BOARDS_FEX_FILE="a10/cubieboard.fex"
|
|
|
|
# Kernel headers
|
|
BR2_KERNEL_HEADERS_3_4=y
|
|
|
|
# Kernel
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
|
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux-sunxi/linux-sunxi.git"
|
|
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="9a1cd034181af628d4145202289e1993c1687db6"
|
|
BR2_LINUX_KERNEL_DEFCONFIG="sun4i"
|
|
|
|
# Bootloaders
|
|
BR2_TARGET_UBOOT=y
|
|
BR2_TARGET_UBOOT_BOARDNAME="cubieboard"
|
|
BR2_TARGET_UBOOT_CUSTOM_GIT=y
|
|
BR2_TARGET_UBOOT_VERSION="sunxi"
|
|
BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://github.com/linux-sunxi/u-boot-sunxi.git"
|
|
BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="1a8ac55429f7f8cc9f100c1cf2dc0195cf81e76f"
|
|
BR2_TARGET_UBOOT_FORMAT_BIN=y
|
|
BR2_TARGET_UBOOT_SPL=y
|
|
BR2_TARGET_UBOOT_SPL_NAME="spl/sunxi-spl.bin"
|