From patchwork Fri Feb 8 11:36:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 219116 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 45F172C0090 for ; Fri, 8 Feb 2013 22:36:34 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0EA5A8CA92; Fri, 8 Feb 2013 11:36:32 +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 r60yjQt8ASZS; Fri, 8 Feb 2013 11:36:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id B44F585AE2; Fri, 8 Feb 2013 11:36:18 +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 15DAC8F753 for ; Fri, 8 Feb 2013 11:36:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B79638C95F for ; Fri, 8 Feb 2013 11:36:17 +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 E0llvg8zKJRm for ; Fri, 8 Feb 2013 11:36:15 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 0873B8C991 for ; Fri, 8 Feb 2013 11:36:14 +0000 (UTC) Received: from asgard (host132.190-136-125.telecom.net.ar [190.136.125.132]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.6/8.14.6) with ESMTP id r18Ba7IP007670 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 8 Feb 2013 11:36:10 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1360323372; bh=rMwgfBby+F2Y0U9cUAM5s2kS2Rqx5e1/hNhkAAXzbrU=; h=From:To:Cc:Subject:Date; b=XAoMgEuVRIFISI15gMI6BN0qwEVHk/CA/wJhlrfw5dX6SDkkjSvr61RSyfuwI2ZG4 JI88JQn8Bl7R/ec0oPZOE4lufl1BdqltZ33aRqiLGuwKpsdLlINSym9a9UYVJQjpo6 PvJ/ha1e8bIKB0p9RmKe3Pf60s37v71aoWnHb6I0= Received: by asgard (sSMTP sendmail emulation); Fri, 08 Feb 2013 08:36:05 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 8 Feb 2013 08:36:01 -0300 Message-Id: <1360323365-5936-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.12.4 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/5] configs/sheevaplug_defconfig: lock down kernel headers version 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 Signed-off-by: Gustavo Zacarias --- configs/sheevaplug_defconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/sheevaplug_defconfig b/configs/sheevaplug_defconfig index ead1831..70572d7 100644 --- a/configs/sheevaplug_defconfig +++ b/configs/sheevaplug_defconfig @@ -10,6 +10,11 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyS0" BR2_TARGET_ROOTFS_JFFS2=y BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y + +# Lock down headers to avoid breaking with new defaults +BR2_KERNEL_HEADERS_VERSION=y +BR2_DEFAULT_KERNEL_VERSION="3.5.4" + # bootloader BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARDNAME="sheevaplug"