From patchwork Fri Jan 4 15:13:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 209475 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 8FA892C0082 for ; Sat, 5 Jan 2013 02:14:51 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 5138230E92; Fri, 4 Jan 2013 15:14:50 +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 jBQyIFCLhxIv; Fri, 4 Jan 2013 15:14:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1C5A230E8B; Fri, 4 Jan 2013 15:14:49 +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 D43028F753 for ; Fri, 4 Jan 2013 15:14:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B081B8BC6B for ; Fri, 4 Jan 2013 15:14:47 +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 Q5bfGSu-zveB for ; Fri, 4 Jan 2013 15:14:41 +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 4616D8BF27 for ; Fri, 4 Jan 2013 15:13:54 +0000 (UTC) Received: from asgard (host4.190-138-192.telecom.net.ar [190.138.192.4]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id r04FDl4x018824 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Jan 2013 15:13:49 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1357312431; bh=jEfzokue8W/DoOQzyfRZVWwcrgVussRVYhXvY/5C6Xk=; h=From:To:Cc:Subject:Date; b=gRBE9QRfRhswp4AjV7gfBFcqHU7582ccjJ2lgE3euUbCQxefbL8BAO+9mbdWKcv4o QcMVJNJ8u1OR0qiGQzdvxxPO01zcocai/1d0gq0boie2cWZ/Rjf/2EUW1+kkDJqIii ksGqxbyT1E8WZTWHIMTg2krf/IY0FhGMZogCC1l0= Received: by asgard (sSMTP sendmail emulation); Fri, 04 Jan 2013 12:13:46 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 4 Jan 2013 12:13:46 -0300 Message-Id: <1357312426-9544-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] configs/at91rm9200df: update and fix 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 Update to the latest maxim.org.za kernel 2.6.38 Lock down headers version, otherwise we were building a toolchain with 3.7 headers for a 2.6.33 kernel - not too wise. Also the AT91RM9200 is an ARM920T so enable that target. Signed-off-by: Gustavo Zacarias --- configs/at91rm9200df_defconfig | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/configs/at91rm9200df_defconfig b/configs/at91rm9200df_defconfig index 4229155..74b5a6f 100644 --- a/configs/at91rm9200df_defconfig +++ b/configs/at91rm9200df_defconfig @@ -1,5 +1,6 @@ # Architecture BR2_arm=y +BR2_arm920t=y # Filesystem BR2_TARGET_ROOTFS_JFFS2=y @@ -9,6 +10,11 @@ BR2_TARGET_ROOTFS_JFFS2_EBSIZE=0x2100 BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER=y BR2_TARGET_ROOTFS_JFFS2_LE=y +# Lock down headers to avoid breaking with new defaults +BR2_KERNEL_HEADERS_VERSION=y +BR2_DEFAULT_KERNEL_VERSION="2.6.38.8" +BR2_DEFAULT_KERNEL_HEADERS="2.6.38.8" + # Bootloader BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARDNAME="at91rm9200ek" @@ -17,7 +23,7 @@ BR2_TARGET_UBOOT_2010_06=y # Kernel BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_VERSION=y -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.33" -BR2_LINUX_KERNEL_PATCH="http://maxim.org.za/AT91RM9200/2.6/2.6.33-at91.patch.gz" +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="2.6.38.8" +BR2_LINUX_KERNEL_PATCH="http://maxim.org.za/AT91RM9200/2.6/2.6.38-at91.patch.gz" BR2_LINUX_KERNEL_USE_DEFCONFIG=y BR2_LINUX_KERNEL_DEFCONFIG="at91rm9200ek"