d451f3c0bb
Commit 75b7dc68
("linux: default to 3.9, remove 3.8") made 3.9 the
default kernel version.
The omap kernel switched to multiplatform kernel during the 3.9 kernel
development cycle. Obviously, the uImage generation doesn't work anymore
with multiplatform kernels, since you have to provide the kernel load
address, resulting in a build error.
Lock down the kernel version to 3.8 to keep the old behaviour until
someone submits a patch to switch to multiplatform kernel.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32 lines
661 B
Plaintext
32 lines
661 B
Plaintext
# Architecture
|
|
BR2_arm=y
|
|
BR2_cortex_a9=y
|
|
|
|
# system
|
|
BR2_TARGET_GENERIC_GETTY=y
|
|
BR2_TARGET_GENERIC_GETTY_PORT="ttyO2"
|
|
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS=y
|
|
|
|
# filesystem
|
|
BR2_TARGET_ROOTFS_EXT2=y
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
|
|
# Lock to 3.8 headers to avoid breaking with newer kernels
|
|
BR2_KERNEL_HEADERS_3_8=y
|
|
|
|
# Kernel
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.8.11"
|
|
BR2_LINUX_KERNEL_DEFCONFIG="omap2plus"
|
|
|
|
# GCC
|
|
BR2_GCC_VERSION_4_6_X=y
|
|
|
|
# Bootloaders
|
|
BR2_TARGET_UBOOT=y
|
|
BR2_TARGET_UBOOT_FORMAT_IMG=y
|
|
BR2_TARGET_UBOOT_BOARDNAME="omap4_panda"
|
|
BR2_TARGET_UBOOT_SPL=y
|
|
BR2_TARGET_UBOOT_SPL_NAME="MLO"
|