From patchwork Fri Apr 12 07:55:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 235986 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 664532C00B6 for ; Fri, 12 Apr 2013 17:56:21 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3B5F331741; Fri, 12 Apr 2013 07:56:20 +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 iMhf3vvCsG3T; Fri, 12 Apr 2013 07:56:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7AE7B31777; Fri, 12 Apr 2013 07:56:17 +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 D27F58F75E for ; Fri, 12 Apr 2013 07:56:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7FBBB8F663 for ; Fri, 12 Apr 2013 07:56:15 +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 infyrZsjdK1w for ; Fri, 12 Apr 2013 07:56:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f170.google.com (mail-we0-f170.google.com [74.125.82.170]) by whitealder.osuosl.org (Postfix) with ESMTPS id 4FD218F668 for ; Fri, 12 Apr 2013 07:56:14 +0000 (UTC) Received: by mail-we0-f170.google.com with SMTP id z2so1897951wey.1 for ; Fri, 12 Apr 2013 00:56:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer; bh=nNwasFMtGElqRUh1UPqIiteqV8QwZGL0jJGJMCCzzdQ=; b=OLIwhyMZT7JWZM79l6NkNnxwRWuPODnyANhkcY7Pk++QOtshtNso4ubaWz5VX5Fx8d wuX0gDO7k5xNDRdsqvQulg9EKdlzIcnl1lGMIDs0XTzkWxKOYtnTG4Qi3Zy+GSCdp1+v wVDdsXJqs4tPie46AY5vtPouf63IidSHwtC8X5b+/M+P2QEi9pejUcyxa3m5z3SW8EYF b+yPf8wcipFEKVdjRswfPfTUxxOZ4RAuqe/YsA1I72m40EthylIZmIK69HgbnW0zJKZP fh+zlWPjVOldmo4KglsJUXI/ExECjEboxfKYggyoER5Bwmci4jIiTpZ/99ef49zeGTg3 wnLg== X-Received: by 10.194.235.196 with SMTP id uo4mr15548667wjc.30.1365753372305; Fri, 12 Apr 2013 00:56:12 -0700 (PDT) Received: from localhost.localdomain (host-78-150-196-198.as13285.net. [78.150.196.198]) by mx.google.com with ESMTPS id dm9sm1689844wib.3.2013.04.12.00.56.10 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 12 Apr 2013 00:56:10 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 12 Apr 2013 08:55:05 +0100 Message-Id: <1365753305-5485-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] linux: fix 3.8.x stable 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 From: Simon Dawson Commit c461e64201598eae85ff32e130ed3f0ccd9fed78 bumped the linux 3.8.x stable version from 3.8.5 to 3.8.6, but did so in only one of the two places in which the version number is hard-coded in linux/Config.in Signed-off-by: Simon Dawson --- linux/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/Config.in b/linux/Config.in index 8208277..8d301a1 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -76,7 +76,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION config BR2_LINUX_KERNEL_VERSION string - default "3.8.5" if BR2_LINUX_KERNEL_3_8 + default "3.8.6" if BR2_LINUX_KERNEL_3_8 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