Linux IEEE 802.15.4 and 6LoWPAN development
 help / color / mirror / Atom feed
From: Stefan Schmidt <stefan@datenfreihafen.org>
To: linux-wpan@vger.kernel.org
Cc: alex.aring@gmail.com, miquel.raynal@bootlin.com,
	david.girault@qorvo.com,
	Stefan Schmidt <stefan@datenfreihafen.org>
Subject: [PATCH 3/9] wpan-ping: switch files to SPDX header for license and copyright
Date: Sun, 24 Sep 2023 14:22:25 +0200	[thread overview]
Message-ID: <20230924122231.716878-4-stefan@datenfreihafen.org> (raw)
In-Reply-To: <20230924122231.716878-1-stefan@datenfreihafen.org>

Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
---
 wpan-ping/.gitignore       |  4 ++++
 wpan-ping/Makefile.am      |  4 ++++
 wpan-ping/README.wpan-ping |  4 ++++
 wpan-ping/wpan-ping.c      | 22 +++++-----------------
 4 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/wpan-ping/.gitignore b/wpan-ping/.gitignore
index 0e2e07a..4d78615 100644
--- a/wpan-ping/.gitignore
+++ b/wpan-ping/.gitignore
@@ -1,2 +1,6 @@
+# SPDX-FileCopyrightText: 2015 Stefan Schmidt <stefan@datenfreihafen.org>
+#
+# SPDX-License-Identifier: ISC
+
 .deps/
 wpan-ping
diff --git a/wpan-ping/Makefile.am b/wpan-ping/Makefile.am
index 6021c95..5003205 100644
--- a/wpan-ping/Makefile.am
+++ b/wpan-ping/Makefile.am
@@ -1,3 +1,7 @@
+# SPDX-FileCopyrightText: 2015 Stefan Schmidt <stefan@datenfreihafen.org>
+#
+# SPDX-License-Identifier: ISC
+
 bin_PROGRAMS = wpan-ping
 
 wpan_ping_SOURCES = wpan-ping.c
diff --git a/wpan-ping/README.wpan-ping b/wpan-ping/README.wpan-ping
index 4827e21..5d18661 100644
--- a/wpan-ping/README.wpan-ping
+++ b/wpan-ping/README.wpan-ping
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2015 Stefan Schmidt <stefan@datenfreihafen.org>
+//
+// SPDX-License-Identifier: ISC
+
 wpan-ping aims to offer ping/ping6 like functionality on a IEEE 802.15.4 level.
 
 No control message protocol is defined so we will simply use DGRAM's over a
diff --git a/wpan-ping/wpan-ping.c b/wpan-ping/wpan-ping.c
index 791346c..d82b1f0 100644
--- a/wpan-ping/wpan-ping.c
+++ b/wpan-ping/wpan-ping.c
@@ -1,20 +1,8 @@
-/*
- * Linux IEEE 802.15.4 ping tool
- *
- * Copyright (C) 2015 Stefan Schmidt <stefan@datenfreihafen.org>
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
+// SPDX-FileCopyrightText: 2015 Stefan Schmidt <stefan@datenfreihafen.org>
+//
+// SPDX-License-Identifier: ISC
+
+/* Linux IEEE 802.15.4 ping tool */
 
 #ifdef HAVE_CONFIG_H
 #include <config.h>
-- 
2.41.0


  parent reply	other threads:[~2023-09-24 12:23 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-24 12:22 [PATCH 0/9] wpan-tools: switch to SPDX header for license and copyright Stefan Schmidt
2023-09-24 12:22 ` [PATCH 1/9] m4: remove empty folder which only holds a .gitignore file Stefan Schmidt
2023-09-24 12:22 ` [PATCH 2/9] license: clearly indicate license in file name and use new LICENSES folder Stefan Schmidt
2023-09-24 12:22 ` Stefan Schmidt [this message]
2023-09-24 12:22 ` [PATCH 4/9] wpan-hwsim: switch files to SPDX header for license and copyright Stefan Schmidt
2023-09-24 12:22 ` [PATCH 5/9] src/nl802154.h: switch file " Stefan Schmidt
2023-10-01 23:33   ` Alexander Aring
2023-10-02 13:29     ` Stefan Schmidt
2023-09-24 12:22 ` [PATCH 6/9] examples: switch files " Stefan Schmidt
2023-09-24 12:22 ` [PATCH 7/9] src: " Stefan Schmidt
2023-09-24 12:22 ` [PATCH 8/9] misc: switch remaining " Stefan Schmidt
2023-09-24 12:22 ` [PATCH 9/9] workflow: add reuse job to check for REUSE compliance Stefan Schmidt
2023-09-25  7:22 ` [PATCH 0/9] wpan-tools: switch to SPDX header for license and copyright Miquel Raynal
2023-09-26  7:58   ` Stefan Schmidt
2023-10-01 23:37     ` Alexander Aring
2023-10-02 13:29       ` Stefan Schmidt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230924122231.716878-4-stefan@datenfreihafen.org \
    --to=stefan@datenfreihafen.org \
    --cc=alex.aring@gmail.com \
    --cc=david.girault@qorvo.com \
    --cc=linux-wpan@vger.kernel.org \
    --cc=miquel.raynal@bootlin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox