From patchwork Fri Dec 6 12:56:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 297734 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id ABCD92C0087 for ; Fri, 6 Dec 2013 23:56:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id ADBF6935DF; Fri, 6 Dec 2013 12:56:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LO0X4xoLiIrM; Fri, 6 Dec 2013 12:56:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 31C50931D2; Fri, 6 Dec 2013 12:56:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id ABB991BF82F for ; Fri, 6 Dec 2013 12:56:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A896F9310B for ; Fri, 6 Dec 2013 12:56:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uSksaTqQVQA7 for ; Fri, 6 Dec 2013 12:56:19 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pd0-f178.google.com (mail-pd0-f178.google.com [209.85.192.178]) by hemlock.osuosl.org (Postfix) with ESMTPS id 59F9D930AB for ; Fri, 6 Dec 2013 12:56:19 +0000 (UTC) Received: by mail-pd0-f178.google.com with SMTP id y10so971825pdj.23 for ; Fri, 06 Dec 2013 04:56:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=/LKq2Oc6TkwslbMQY0U9KIlp9pG4ja1RRw9Aw30GkNs=; b=Wdh7+mTpOx4uvsgAhHaNe1u7WMxSpfmukAn2Y68bFrPJm5SCQuuWCa9EFTaOT6ULfF 2E0XqwgshxUtYWn4sTnOCSnLAjZoOFEYUB79kj0djMWo+D5TvueqKHSM5gFtHxtt7Os4 iwCny/zPL0d8vas7QjFGPUwR277sV2cz9MecmYFSasWGNc/s1ab5PsVC60WXqFS9hW0O SM/B5CUhtYI/DcX9Um1kFCjaoHg5l8D4724H5K/wpXIZOdsCgbiCKowvnkX6VIFFXQ7f 1aTYKkG3bStD1Xp+7iKUOZKxfHsJxyyDo6K7aBJw2Si9IRAW1NAb5bOoRWOTe5E/9tyR RAzw== X-Received: by 10.66.158.99 with SMTP id wt3mr3933496pab.113.1386334579011; Fri, 06 Dec 2013 04:56:19 -0800 (PST) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id ik1sm124770577pbc.9.2013.12.06.04.56.17 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 06 Dec 2013 04:56:18 -0800 (PST) From: Fabio Porcedda To: buildroot@uclibc.org Date: Fri, 6 Dec 2013 13:56:14 +0100 Message-Id: <1386334574-26174-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.5 Subject: [Buildroot] [PATCH] barebox: bump to version 2013.12.0 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: Fabio Porcedda --- boot/barebox/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/barebox/Config.in b/boot/barebox/Config.in index 2debfb9..cdda5d2 100644 --- a/boot/barebox/Config.in +++ b/boot/barebox/Config.in @@ -12,7 +12,7 @@ choice Select the specific Barebox version you want to use config BR2_TARGET_BAREBOX_LATEST_VERSION - bool "2013.11.0" + bool "2013.12.0" config BR2_TARGET_BAREBOX_CUSTOM_VERSION bool "Custom version" @@ -40,7 +40,7 @@ endif config BR2_TARGET_BAREBOX_VERSION string - default "2013.11.0" if BR2_TARGET_BAREBOX_LATEST_VERSION + default "2013.12.0" if BR2_TARGET_BAREBOX_LATEST_VERSION default BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL default BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT