From patchwork Wed Aug 22 12:47:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 179313 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id DE3282C0096 for ; Wed, 22 Aug 2012 22:50:43 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0722B8C828; Wed, 22 Aug 2012 12:50:41 +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 gQWb2Z7tXPt2; Wed, 22 Aug 2012 12:50:25 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 41E6B8F0EB; Wed, 22 Aug 2012 12:49:10 +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 5249B8F753 for ; Wed, 22 Aug 2012 12:49:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 17BBB8D668 for ; Wed, 22 Aug 2012 12:49:08 +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 vNf9PirOLi5O for ; Wed, 22 Aug 2012 12:48:51 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ey0-f171.google.com (mail-ey0-f171.google.com [209.85.215.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 6E3C48F6B6 for ; Wed, 22 Aug 2012 12:47:46 +0000 (UTC) Received: by eaah11 with SMTP id h11so481052eaa.16 for ; Wed, 22 Aug 2012 05:47:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=JYkvUnrXvRuLQcRLblIefuf2iwSUKpuYGCz/2mi/lPE=; b=eX+GQmIN+e/A5YSDGtVQY9rwtuundAoNXv8U5fpXjTrOisWjAYVsZ6CTmwzdLH275s zB0Z8r31lM4x1Ksd8xGE5UptIB4uomB+vx+JwU0VdPa/9lpnkecgw3f0pw++JSgnr8Qs rTuNVBu1BCVzuhANUeGqjf5qwYlgD+IIa8gQBZkbIkRn6gW68/Gfhbtc/CjKqa1R+18b 4GbwirkaRyf4wbsggyNVjyfU9I865zgUl1ysadSYUwEnRG9Qbngr/lWEeYm6at3xtrLb jNfAxKt5ErPoAi9hsC/KBQekjTJ9iLeD2CunlUy2cFt2CY7pw/1j0LktBWGA/hzsiXtk 110A== Received: by 10.14.223.9 with SMTP id u9mr18077760eep.10.1345639664419; Wed, 22 Aug 2012 05:47:44 -0700 (PDT) Received: from percy.train.local ([213.170.149.177]) by mx.google.com with ESMTPS id z3sm12647680eel.15.2012.08.22.05.47.39 (version=SSLv3 cipher=OTHER); Wed, 22 Aug 2012 05:47:42 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Wed, 22 Aug 2012 13:47:33 +0100 Message-Id: <1345639653-17544-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] barebox: fix license information 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 The barebox license is GPLv2, and not GPLv2+. Signed-off-by: Simon Dawson --- boot/barebox/barebox.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk index 3641c1d..9550cdc 100644 --- a/boot/barebox/barebox.mk +++ b/boot/barebox/barebox.mk @@ -20,7 +20,7 @@ BAREBOX_SOURCE = barebox-$(BAREBOX_VERSION).tar.bz2 BAREBOX_SITE = http://www.barebox.org/download/ endif -BAREBOX_LICENSE = GPLv2+ +BAREBOX_LICENSE = GPLv2 BAREBOX_LICENSE_FILES = COPYING ifneq ($(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR)),)