From patchwork Fri Feb 8 12:46:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 219132 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 2BE3F2C0089 for ; Fri, 8 Feb 2013 23:47:08 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7F8EA25D89; Fri, 8 Feb 2013 12:47:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10M1w3NFuse9; Fri, 8 Feb 2013 12:47:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 13F9C3060A; Fri, 8 Feb 2013 12:47:05 +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 0D2918F79A for ; Fri, 8 Feb 2013 12:47:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B26068C582 for ; Fri, 8 Feb 2013 12:47:03 +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 p8o4HKomPZrZ for ; Fri, 8 Feb 2013 12:47:01 +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 D8A1D87094 for ; Fri, 8 Feb 2013 12:47:00 +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 r18Ckp3M009754 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 8 Feb 2013 12:46:55 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1360327617; bh=Ad+qPrBpnoP48rgFQBuGxIY50hpJkPkg37owpdTu198=; h=From:To:Cc:Subject:Date; b=E/PRER9tFns5AwNfiqVp9DW3QgkS3QcMeVbZ1ro368d06q4MCXN/dR2EbePLPxmpB DLaHbVnEetupoRTwGEfermuG2T4X+kpe2Zb2CKJszq3oTkjjWZMERPrmZlVxD1OMYH dlJpYB2sqWb77njtTO6t0Jc0ju9Pczg5nMJ4ecs8= Received: by asgard (sSMTP sendmail emulation); Fri, 08 Feb 2013 09:46:49 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 8 Feb 2013 09:46:49 -0300 Message-Id: <1360327609-16507-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] configs/beaglebone_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/beaglebone_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/beaglebone_defconfig b/configs/beaglebone_defconfig index f78a400..e19cdcb 100644 --- a/configs/beaglebone_defconfig +++ b/configs/beaglebone_defconfig @@ -8,6 +8,9 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyO0" # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set BR2_TARGET_ROOTFS_EXT2=y # BR2_TARGET_ROOTFS_TAR is not set +# Lock down headers to avoid breaking with new defaults +BR2_KERNEL_HEADERS_VERSION=y +BR2_DEFAULT_KERNEL_VERSION="3.2.9" BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARDNAME="am335x_evm" BR2_TARGET_UBOOT_2012_10=y