From patchwork Mon May 6 10:14:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 241614 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id DAD592C0087 for ; Mon, 6 May 2013 20:15:28 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 6C816A0128; Mon, 6 May 2013 10:15:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AZcRcoykSAFL; Mon, 6 May 2013 10:15:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id DF822A0142; Mon, 6 May 2013 10:15:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 9C4548F7A8 for ; Mon, 6 May 2013 10:15:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4EF1C8AA3C for ; Mon, 6 May 2013 10:15:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zcrnrC3NMIDX for ; Mon, 6 May 2013 10:15:19 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by whitealder.osuosl.org (Postfix) with ESMTP id 23A5889565 for ; Mon, 6 May 2013 10:15:18 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id AA75F764; Mon, 6 May 2013 12:15:18 +0200 (CEST) Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id 22645747; Mon, 6 May 2013 12:15:18 +0200 (CEST) From: Maxime Ripard To: buildroot@busybox.net Date: Mon, 6 May 2013 12:14:56 +0200 Message-Id: <1367835297-6560-3-git-send-email-maxime.ripard@free-electrons.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1367835297-6560-1-git-send-email-maxime.ripard@free-electrons.com> References: <1367835297-6560-1-git-send-email-maxime.ripard@free-electrons.com> Cc: Maxime Ripard Subject: [Buildroot] [PATCH 2/3] pandaboard: Fix defconfig build X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net 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 --- configs/pandaboard_defconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/pandaboard_defconfig b/configs/pandaboard_defconfig index 9496b7f..95cfdd6 100644 --- a/configs/pandaboard_defconfig +++ b/configs/pandaboard_defconfig @@ -11,8 +11,13 @@ BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS=y 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