From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 38993 invoked by alias); 6 Jan 2016 05:43:06 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 38977 invoked by uid 89); 6 Jan 2016 05:43:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL,BAYES_05,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.2 spammy=Bennett, bennett, ali, technologies X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 06 Jan 2016 05:43:04 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 29E591166F7; Wed, 6 Jan 2016 00:43:03 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id rT8MMMW0zF75; Wed, 6 Jan 2016 00:43:03 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id B36C31166DF; Wed, 6 Jan 2016 00:43:02 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id A2D7242E52; Wed, 6 Jan 2016 09:42:58 +0400 (RET) Date: Wed, 06 Jan 2016 05:43:00 -0000 From: Joel Brobecker To: Andrew Bennett Cc: "gdb-patches@sourceware.org" Subject: Re: [PATCH] Add micromips support to the MIPS simulator Message-ID: <20160106054258.GC4412@adacore.com> References: <0DA23CC379F5F945ACB41CF394B9827720F51185@LEMAIL01.le.imgtec.org> <20150224054441.GA6655@vapier> <0DA23CC379F5F945ACB41CF394B98277211129DE@LEMAIL01.le.imgtec.org> <0DA23CC379F5F945ACB41CF394B982772111DAE8@LEMAIL01.le.imgtec.org> <20160101070706.GA28720@adacore.com> <0DA23CC379F5F945ACB41CF394B9827761B3BA3B@LEMAIL01.le.imgtec.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="SLDf9lqlvOQaIe6s" Content-Disposition: inline In-Reply-To: <0DA23CC379F5F945ACB41CF394B9827761B3BA3B@LEMAIL01.le.imgtec.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2016-01/txt/msg00075.txt.bz2 --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 658 > > Any reason why this file has a copyright header not citing > > the FSF as the copyright holder? I am asking because although > > the sim is not formally part of the GDB project, we do prefer > > sim contributions to be assigned to the FSF. > > I was following the convention from the mips32-dsp.s and mips32-dsp2.s > testsuite files. I thought this might be the case... > > Assuming this was just an oversight, would it be OK for me to change > > the holder to the FSF? > > Yes, that will be fine. Thanks a lot. Done with the following commit. sim/testsuite/sim/mips/ChangeLog: * hilo-hazard-4.s: Change copyright ownder to FSF. -- Joel --SLDf9lqlvOQaIe6s Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Change-copyright-owner-to-FSF-in-sim-testsuite-sim-m.patch" Content-length: 1435 >From 68477034727ad85aeed248ec995da746f7639e53 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Wed, 6 Jan 2016 09:38:21 +0400 Subject: [PATCH] Change copyright owner to FSF in sim/testsuite/sim/mips/hilo-hazard-4.s sim/testsuite/sim/mips/ChangeLog: * hilo-hazard-4.s: Change copyright ownder to FSF. --- sim/testsuite/sim/mips/ChangeLog | 4 ++++ sim/testsuite/sim/mips/hilo-hazard-4.s | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sim/testsuite/sim/mips/ChangeLog b/sim/testsuite/sim/mips/ChangeLog index ada4e4c..ea95441 100644 --- a/sim/testsuite/sim/mips/ChangeLog +++ b/sim/testsuite/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2016-01-06 Joel Brobecker + + * hilo-hazard-4.s: Change copyright ownder to FSF. + 2015-09-25 Andrew Bennett Ali Lown diff --git a/sim/testsuite/sim/mips/hilo-hazard-4.s b/sim/testsuite/sim/mips/hilo-hazard-4.s index e83fbfa..8a4c888 100644 --- a/sim/testsuite/sim/mips/hilo-hazard-4.s +++ b/sim/testsuite/sim/mips/hilo-hazard-4.s @@ -5,8 +5,7 @@ # ld: -N -Ttext=0x80010000 # output: pass\\n -# Copyright (C) 2013-2015 Imagination Technologies, Ltd. -# All rights reserved. +# Copyright (C) 2013-2016 Free Software Foundation, Inc. # Contributed by Andrew Bennett (andrew.bennett@imgtec.com) # # This file is part of the MIPS sim. -- 2.5.0 --SLDf9lqlvOQaIe6s--