From patchwork Thu Jul 4 18:31:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 256987 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 0EF7D2C0091 for ; Fri, 5 Jul 2013 04:32:04 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id EB9CCE232; Thu, 4 Jul 2013 18:32:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jTpWi9gwc1u0; Thu, 4 Jul 2013 18:32:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id DF69BE3C3; Thu, 4 Jul 2013 18:32:01 +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 5B7BF8F7B1 for ; Thu, 4 Jul 2013 18:32:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 628438CDEC for ; Thu, 4 Jul 2013 18:31:57 +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 agH3tfZrncNZ for ; Thu, 4 Jul 2013 18:31:56 +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 477E48CEDF for ; Thu, 4 Jul 2013 18:31:56 +0000 (UTC) Received: from asgard (host21.186-125-225.telecom.net.ar [186.125.225.21]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r64IVnXl017014 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 4 Jul 2013 18:31:52 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1372962714; bh=wZqZPB/YvZno/rfdX4XYwTVWifMJ6K83AR7DVIZCQDs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=V+lvArgwnIQQVg2ydUiaUTmmU82JR5G+avA8yCvIbh1jFugCBSfUhw8KmcLPy4D+d HzWYYks7yWFo5cdd5toHAFvNWYwkAwJhrd8iZ3z5sA/WkeVxcSYAy+NmBFbETsVoY/ n2NH1mpw7BQzGBcD8zbxFsghq4YuYuY2YMFTottM= Received: by asgard (sSMTP sendmail emulation); Thu, 04 Jul 2013 15:31:49 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 4 Jul 2013 15:31:36 -0300 Message-Id: <1372962696-20775-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1372962696-20775-1-git-send-email-gustavo@zacarias.com.ar> References: <1372962696-20775-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 3/3] linux: default to version 3.10 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 --- linux/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/Config.in b/linux/Config.in index f58e714..421f855 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -21,7 +21,7 @@ choice prompt "Kernel version" config BR2_LINUX_KERNEL_LATEST_VERSION - bool "3.9.8" + bool "3.10" config BR2_LINUX_KERNEL_SAME_AS_HEADERS bool "Same as toolchain kernel headers" @@ -76,7 +76,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION config BR2_LINUX_KERNEL_VERSION string - default "3.9.8" if BR2_LINUX_KERNEL_LATEST_VERSION + default "3.10" if BR2_LINUX_KERNEL_LATEST_VERSION default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL