From patchwork Mon May 12 09:19:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 347934 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 ECC08140098 for ; Mon, 12 May 2014 19:19:51 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 594B387FCE; Mon, 12 May 2014 09:19:50 +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 a9bsmk2zYw2z; Mon, 12 May 2014 09:19:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E3640883A8; Mon, 12 May 2014 09:19:49 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 1C0D71CE0FC for ; Mon, 12 May 2014 09:19:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 5DAEE2608C for ; Mon, 12 May 2014 09:19:28 +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 YbD0PTPTho32 for ; Mon, 12 May 2014 09:19:27 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f42.google.com (mail-ee0-f42.google.com [74.125.83.42]) by silver.osuosl.org (Postfix) with ESMTPS id 9CAF21FEE6 for ; Mon, 12 May 2014 09:19:27 +0000 (UTC) Received: by mail-ee0-f42.google.com with SMTP id d49so4495872eek.29 for ; Mon, 12 May 2014 02:19:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=ZOTf0T2Py47Or2PnXaAN81AIb/VD/1dii6Q5+r08GOI=; b=Su1tgm62LKMqjuzi5jvkMm3vJ+N6iRLQp5OFi7erE6j4/ybAfPnTN/WXIKFaR76aPo ENO06LHdFZuQMGzAp6SLxQ/3Cz4DecGLmqqyeEqwHgDZeinBzwDTHd6SCtdg28zMQcDg Ujwj9Jlgw7MH3XPcUkJJlgyAXoSoKA1GmTET23etWOnVM3AHRzbAGeH4VYY5piQpH4ix Le18PTodPdOxeINn8iI/ObHBSzCgZd5Y2LO5Q5EJ6wk30u+Jfo6st3wwicPRwOpI4kPq Z3zkHHVZuxttTUMj44t6C+G6j/Vej82fudej0rHpMHQKlrzkRz6XSaigo2y1rwBxARRP oQ8g== X-Received: by 10.15.111.195 with SMTP id cj43mr31175550eeb.17.1399886365813; Mon, 12 May 2014 02:19:25 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id g8sm10904803eep.0.2014.05.12.02.19.24 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 12 May 2014 02:19:24 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Mon, 12 May 2014 11:19:23 +0200 Message-Id: <1399886363-6121-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH] barebox: bump to version 2014.05.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 2924a2a..b09aa20 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 "2014.04.0" + bool "2014.05.0" config BR2_TARGET_BAREBOX_CUSTOM_VERSION bool "Custom version" @@ -40,7 +40,7 @@ endif config BR2_TARGET_BAREBOX_VERSION string - default "2014.04.0" if BR2_TARGET_BAREBOX_LATEST_VERSION + default "2014.05.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