From patchwork Tue Aug 28 07:19:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 180355 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 E14C62C0089 for ; Tue, 28 Aug 2012 17:20:16 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D2FDA9116B; Tue, 28 Aug 2012 07:20:12 +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 pL-9cmb92TmH; Tue, 28 Aug 2012 07:20:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 047309115A; Tue, 28 Aug 2012 07:19:59 +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 13B1D8F753 for ; Tue, 28 Aug 2012 07:19:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B781C9115A for ; Tue, 28 Aug 2012 07:19:57 +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 sbxnamNMCh5O for ; Tue, 28 Aug 2012 07:19:56 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f43.google.com (mail-ee0-f43.google.com [74.125.83.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id 9E1619114B for ; Tue, 28 Aug 2012 07:19:54 +0000 (UTC) Received: by eekd4 with SMTP id d4so2872751eek.16 for ; Tue, 28 Aug 2012 00:19:53 -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=lYEaljaPXWesIQJVjk+E/g2Qqju5WAFwSDdHSAweQ7E=; b=UwwZJlDPGrrj/A54To403xaxeY1GbFWZBloZzMvBAanyoFi2gW2SAZ6bhSezBLNcJC ho5T/zHKa7e4hKqtTAwIMx0d/HoSqmX7USfH6jK/Dl4yVceXFv+P7LVopYvR1AO5RunO hzFJNHlVi9eM52uCZYCanFRzI77HVAXwCfeGHojvPMvOh072SsqwG6BofZneMs0Xj9fV LjcbZUUX+LoDoQfSwP/x5MoA9Kd/l1Tt2il8kZIUcl4jwHWA0PXkHdbff64f4R63QDQJ VmFRIHnVIZqw1EM2LCRxfZEPEs5NZi4zj9PGp5BWEsa3Q2JmU07lb0SeuVCKSYHowfn/ uiuw== Received: by 10.14.221.197 with SMTP id r45mr18489755eep.41.1346138392911; Tue, 28 Aug 2012 00:19:52 -0700 (PDT) Received: from percy.train.local ([213.170.149.177]) by mx.google.com with ESMTPS id z3sm58429623eel.15.2012.08.28.00.19.50 (version=SSLv3 cipher=OTHER); Tue, 28 Aug 2012 00:19:51 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Tue, 28 Aug 2012 08:19:47 +0100 Message-Id: <1346138387-4344-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH v2] 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 should be "GPLv2 with exceptions", and not GPLv2. Signed-off-by: Simon Dawson Acked-by: Luca Ceresoli --- v2: Changed license information as suggested on mailing list. 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 9550cdc..ee84831 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 with exceptions BAREBOX_LICENSE_FILES = COPYING ifneq ($(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR)),)