From patchwork Fri Jul 10 18:10:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 493861 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 635921402B4 for ; Sat, 11 Jul 2015 04:10:40 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=e1okxEUo; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 72C208C52F; Fri, 10 Jul 2015 18:10:39 +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 rk75pivffBcf; Fri, 10 Jul 2015 18:10:35 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D52B28C57D; Fri, 10 Jul 2015 18:10:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 4C3531C268C for ; Fri, 10 Jul 2015 18:10:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 480238C552 for ; Fri, 10 Jul 2015 18:10:30 +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 rKYgliQ07AXh for ; Fri, 10 Jul 2015 18:10:29 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id E45398C527 for ; Fri, 10 Jul 2015 18:10:28 +0000 (UTC) Received: from asgard (cpe-186-22-136-136.telecentro-reversos.com.ar [186.22.136.136] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id t6AIAMfu015459 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 10 Jul 2015 18:10:25 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1436551827; bh=ec2NyP62Pdke1SBzKfQ00YdQnl5OA3BQrK0sa1g0ahc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=e1okxEUol6tg72o1s7V9oNVFJWQR2TrL/WltIFxVwN8K2UDGreA131Y+/ZncudkLw qwJoiRYcM8UftjCpCA5tzuWtkrvky6sHQb3Q0N4fVP0E/T0l3gZXJdGwGIF/Ftf8Ar 3uC2Yq+z8DWXtn+WnFGYwOlJUqzuPjUneCNfm7OQ= Received: by asgard (sSMTP sendmail emulation); Fri, 10 Jul 2015 15:10:16 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 10 Jul 2015 15:10:05 -0300 Message-Id: <1436551805-32402-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.3.6 In-Reply-To: <1436551805-32402-1-git-send-email-gustavo@zacarias.com.ar> References: <1436551805-32402-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] linux: bump default to version 4.1.2 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" 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 74fb435..8c86a1a 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -21,7 +21,7 @@ choice prompt "Kernel version" config BR2_LINUX_KERNEL_LATEST_VERSION - bool "4.1.1" + bool "4.1.2" config BR2_LINUX_KERNEL_SAME_AS_HEADERS bool "Same as toolchain kernel headers" @@ -109,7 +109,7 @@ config BR2_LINUX_KERNEL_CUSTOM_LOCAL_PATH config BR2_LINUX_KERNEL_VERSION string - default "4.1.1" if BR2_LINUX_KERNEL_LATEST_VERSION + default "4.1.2" 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