From: Oleksij Rempel <linux@rempel-privat.de>
To: Roland Hieber <rohieb@rohieb.name>, barebox@lists.infradead.org
Cc: rhi@pengutronix.de
Subject: Re: [PATCH 1/6] include: add SPDX GPL-2.0-only license tags where applicable
Date: Fri, 8 Feb 2019 06:48:26 +0100 [thread overview]
Message-ID: <068ce15e-1a72-9b02-2b1f-40a5d32523a0@rempel-privat.de> (raw)
In-Reply-To: <20190207223906.24394-1-rohieb@rohieb.name>
[-- Attachment #1.1.1: Type: text/plain, Size: 16977 bytes --]
Hi Roland,
please remove deprecated license headers in same patch.
Am 07.02.19 um 23:39 schrieb Roland Hieber:
> Interpret "GPLv2" as "GPLv2 only".
>
> Signed-off-by: Roland Hieber <rohieb@rohieb.name>
> ---
> include/aimage.h | 1 +
> include/aiodev.h | 1 +
> include/binfmt.h | 1 +
> include/bootstrap.h | 1 +
> include/bpkfs.h | 1 +
> include/ddr_spd.h | 1 +
> include/dhcp.h | 1 +
> include/digest.h | 1 +
> include/dma.h | 1 +
> include/firmware.h | 1 +
> include/getopt.h | 1 +
> include/local_mac_address.h | 1 +
> include/menu.h | 1 +
> include/of_graph.h | 1 +
> include/of_mtd.h | 1 +
> include/of_net.h | 1 +
> include/password.h | 1 +
> include/pbl.h | 1 +
> include/poller.h | 1 +
> include/shell.h | 1 +
> include/uimagefs.h | 1 +
> include/w1_mac_address.h | 1 +
> include/xymodem.h | 1 +
> 23 files changed, 23 insertions(+)
>
> diff --git a/include/aimage.h b/include/aimage.h
> index 9702b7d35c..0c7dda39ce 100644
> --- a/include/aimage.h
> +++ b/include/aimage.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * (C) Copyright 2011 Jean-Christhophe PLAGNIOL-VILLARD <plagniol@jcrosoft.com>
> *
> * Android boot image
> *
> * Under GPLv2 only
> */
>
> #ifndef __AIMAGE_H__
> #define __AIMAGE_H__
>
> #define BOOT_MAGIC "ANDROID!"
> #define BOOT_MAGIC_SIZE 8
> #define BOOT_NAME_SIZE 16
> #define BOOT_ARGS_SIZE 512
> diff --git a/include/aiodev.h b/include/aiodev.h
> index 5e38b4fab5..5f41554ad1 100644
> --- a/include/aiodev.h
> +++ b/include/aiodev.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * core.c - Code implementing core functionality of AIODEV susbsystem
> *
> * Copyright (c) 2015 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
> * Copyright (c) 2015 Zodiac Inflight Innovation
> *
> * See file CREDITS for list of people who contributed to this
> * project.
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of the GNU General Public License version 2
> * as published by the Free Software Foundation.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> diff --git a/include/binfmt.h b/include/binfmt.h
> index 46b627e36d..b1fd2a72e8 100644
> --- a/include/binfmt.h
> +++ b/include/binfmt.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * GPL v2
> */
>
> #ifndef __BFMT_H__
> #define __BFMT_H__
>
> #include <filetype.h>
> #include <linux/list.h>
>
> struct binfmt_hook {
> enum filetype type;
> int (*hook)(struct binfmt_hook *b, char *file, int argc, char **argv);
> diff --git a/include/bootstrap.h b/include/bootstrap.h
> index d3ee6be47c..6100f7be2f 100644
> --- a/include/bootstrap.h
> +++ b/include/bootstrap.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
> *
> * Under GPLv2
> */
>
> #ifndef __BOOSTRAP_H__
> #define __BOOSTRAP_H__
>
> #include <common.h>
>
> #define bootstrap_err(fmt, arg...) printf(fmt, ##arg)
>
> typedef void (*kernel_entry_func)(int zero, int arch, void *params);
> void bootstrap_boot(kernel_entry_func func, bool barebox);
> diff --git a/include/bpkfs.h b/include/bpkfs.h
> index ccb56c1419..49fbd5d48e 100644
> --- a/include/bpkfs.h
> +++ b/include/bpkfs.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (c) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * under GPLv2 only
> */
>
> #ifndef __BPKFS_H__
> #define __BPKFS_H__
>
> #include <linux/types.h>
> #include <linux/list.h>
>
> #define BPKFS_TYPE_BL 0x50424c00
> #define BPKFS_TYPE_BLV 0x50424c56
> #define BPKFS_TYPE_DSC 0x44456343
> diff --git a/include/ddr_spd.h b/include/ddr_spd.h
> index 01fe73c615..18bb7c2751 100644
> --- a/include/ddr_spd.h
> +++ b/include/ddr_spd.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright 2008 Freescale Semiconductor, Inc.
> *
> * This program is free software; you can redistribute it and/or
> * modify it under the terms of the GNU General Public License
> * Version 2 as published by the Free Software Foundation.
> */
>
> #ifndef _DDR_SPD_H_
> #define _DDR_SPD_H_
>
> /*
> * Format from "JEDEC Appendix X: Serial Presence Detects for DDR2 SDRAM",
> * SPD Revision 1.2
> */
> diff --git a/include/dhcp.h b/include/dhcp.h
> index 0dced8e9fa..55ffb10789 100644
> --- a/include/dhcp.h
> +++ b/include/dhcp.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2015 PHYTEC Messtechnik GmbH,
> * Author: Wadim Egorov <w.egorov@phytec.de>
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of the GNU General Public License version 2 as
> * published by the Free Software Foundation.
> */
>
> #ifndef __DHCP_H__
> #define __DHCP_H__
>
> #define DHCP_DEFAULT_RETRY 20
>
> struct dhcp_req_param {
> diff --git a/include/digest.h b/include/digest.h
> index a1cdbb2d7a..d001057527 100644
> --- a/include/digest.h
> +++ b/include/digest.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * (C) Copyright 2008-2010 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * See file CREDITS for list of people who contributed to this
> * project.
> *
> * This program is free software; you can redistribute it and/or
> * modify it under the terms of the GNU General Public License as
> * published by the Free Software Foundation; version 2 of
> * the License.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> diff --git a/include/dma.h b/include/dma.h
> index 7f95782635..c7ff5b8944 100644
> --- a/include/dma.h
> +++ b/include/dma.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2012 by Marc Kleine-Budde <mkl@pengutronix.de>
> *
> * This file is released under the GPLv2
> *
> */
>
> #ifndef __DMA_H
> #define __DMA_H
>
> #include <malloc.h>
> #include <xfuncs.h>
>
> #include <dma-dir.h>
> #include <asm/dma.h>
> diff --git a/include/firmware.h b/include/firmware.h
> index 284e0f9705..e3b1bd98be 100644
> --- a/include/firmware.h
> +++ b/include/firmware.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (c) 2013 Juergen Beisert <kernel@pengutronix.de>, Pengutronix
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of the GNU General Public License version 2
> * as published by the Free Software Foundation.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> */
>
> #ifndef FIRMWARE_H
> #define FIRMWARE_H
> diff --git a/include/getopt.h b/include/getopt.h
> index 4f48ba8fd9..b215cfa2b7 100644
> --- a/include/getopt.h
> +++ b/include/getopt.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * getopt.h - a simple getopt(3) implementation.
> *
> * Copyright (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of the GNU General Public License version 2
> * as published by the Free Software Foundation.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> *
> */
> diff --git a/include/local_mac_address.h b/include/local_mac_address.h
> index 3d1ec66b1f..12cdf319c8 100644
> --- a/include/local_mac_address.h
> +++ b/include/local_mac_address.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
> *
> * Under GPLv2 only
> */
>
> #ifndef __LOCAL_MAC_ADDRESS_H__
> #define __LOCAL_MAC_ADDRESS_H__
>
> #include <net.h>
>
> /**
> * local_mac_address_register - use random number with fix
> * OUI provided device to provide an Ethernet address
> * @ethid: ethernet device id
> diff --git a/include/menu.h b/include/menu.h
> index 2fef064499..97545a1740 100644
> --- a/include/menu.h
> +++ b/include/menu.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * (C) Copyright 2009-2010 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * See file CREDITS for list of people who contributed to this
> * project.
> *
> * This program is free software; you can redistribute it and/or
> * modify it under the terms of the GNU General Public License as
> * published by the Free Software Foundation; version 2 of
> * the License.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> diff --git a/include/of_graph.h b/include/of_graph.h
> index 254dd2ca28..7a6c556bf3 100644
> --- a/include/of_graph.h
> +++ b/include/of_graph.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * OF graph binding parsing helpers
> *
> * Copyright (C) 2012 - 2013 Samsung Electronics Co., Ltd.
> * Author: Sylwester Nawrocki <s.nawrocki@samsung.com>
> *
> * Copyright (C) 2012 Renesas Electronics Corp.
> * Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of version 2 of the GNU General Public License as
> * published by the Free Software Foundation.
> */
> #ifndef __LINUX_OF_GRAPH_H
> #define __LINUX_OF_GRAPH_H
> diff --git a/include/of_mtd.h b/include/of_mtd.h
> index 9f5b8a2796..9396523a79 100644
> --- a/include/of_mtd.h
> +++ b/include/of_mtd.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * OF helpers for mtd.
> *
> * This file is released under the GPLv2
> */
>
> #ifndef __LINUX_OF_MTD_H
> #define __LINUX_OF_MTD_H
>
> #include <of.h>
>
> int of_get_nand_ecc_mode(struct device_node *np);
> int of_get_nand_ecc_step_size(struct device_node *np);
> diff --git a/include/of_net.h b/include/of_net.h
> index 0f6ef200d5..8b5a1435ad 100644
> --- a/include/of_net.h
> +++ b/include/of_net.h
> @@ -1,14 +1,15 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * OF helpers for network devices.
> *
> * This file is released under the GPLv2
> */
>
> #ifndef __LINUX_OF_NET_H
> #define __LINUX_OF_NET_H
>
> #include <of.h>
> int of_get_phy_mode(struct device_node *np);
> const void *of_get_mac_address(struct device_node *np);
>
> #endif /* __LINUX_OF_NET_H */
> diff --git a/include/password.h b/include/password.h
> index 8b9961815f..4b4e7c9497 100644
> --- a/include/password.h
> +++ b/include/password.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (c) 2008-2010 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * See file CREDITS for list of people who contributed to this
> * project.
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of the GNU General Public License version 2
> * as published by the Free Software Foundation.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> *
> diff --git a/include/pbl.h b/include/pbl.h
> index 787bd8293f..594d8d0273 100644
> --- a/include/pbl.h
> +++ b/include/pbl.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (c) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * Under GPLv2
> */
>
> #ifndef __PBL_H__
> #define __PBL_H__
>
> extern unsigned long free_mem_ptr;
> extern unsigned long free_mem_end_ptr;
>
> void pbl_barebox_uncompress(void *dest, void *compressed_start, unsigned int len);
>
> #ifdef __PBL__
> diff --git a/include/poller.h b/include/poller.h
> index 35a2271d69..9b2e7e1d7b 100644
> --- a/include/poller.h
> +++ b/include/poller.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2010 Marc Kleine-Budde <mkl@pengutronix.de>
> *
> * This file is released under the GPLv2
> *
> */
>
> #ifndef POLLER_H
> #define POLLER_H
>
> #include <linux/list.h>
>
> struct poller_struct {
> void (*func)(struct poller_struct *poller);
> int registered;
> diff --git a/include/shell.h b/include/shell.h
> index 65dad0e1d1..b446743337 100644
> --- a/include/shell.h
> +++ b/include/shell.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * (C) Copyright 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * Under GPLv2 only
> */
>
> #ifndef __SHELL_H__
> #define __SHELL_H__
>
> int shell_get_last_return_code(void);
>
> int run_shell(void);
>
> #ifdef CONFIG_SHELL_HUSH
> char *shell_expand(char *str);
> diff --git a/include/uimagefs.h b/include/uimagefs.h
> index 3f58589b73..9a32a77c16 100644
> --- a/include/uimagefs.h
> +++ b/include/uimagefs.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (c) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> *
> * under GPLv2 only
> */
>
> #ifndef __UIMAGEFS_H__
> #define __UIMAGEFS_H__
>
> #include <linux/types.h>
> #include <linux/list.h>
> #include <image.h>
> #include <ioctl.h>
>
> #define UIMAGEFS_METADATA _IOR('U', 100, struct image_header)
> diff --git a/include/w1_mac_address.h b/include/w1_mac_address.h
> index cd4be765f7..2d499a3690 100644
> --- a/include/w1_mac_address.h
> +++ b/include/w1_mac_address.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
> *
> * Under GPLv2 only
> */
>
> #ifndef __W1_MAC_ADDRESS_H__
> #define __W1_MAC_ADDRESS_H__
>
> /**
> * w1_local_mac_address_register - use the first 3 byte of the id of a 1-wire
> * or 6 if no OUI provided device to provide an Ethernet address
> * @ethid: ethernet device id
> * @oui: Ethernet OUI (3 bytes)
> * @w1_dev: 1-wire device name
> diff --git a/include/xymodem.h b/include/xymodem.h
> index 917cecc003..82a36bfe7d 100644
> --- a/include/xymodem.h
> +++ b/include/xymodem.h
> @@ -1,15 +1,16 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> /*
> * Handles the X-Modem, Y-Modem and Y-Modem/G protocols
> *
> * Copyright (C) 2008 Robert Jarzmik
> *
> * This program is free software; you can redistribute it and/or modify
> * it under the terms of the GNU General Public License as published by
> * the Free Software Foundation; either version 2 of the License, or
> * (at your option) any later version.
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> */
>
--
Regards,
Oleksij
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
[-- Attachment #2: Type: text/plain, Size: 149 bytes --]
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2019-02-08 5:48 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-07 22:39 Roland Hieber
2019-02-07 22:39 ` [PATCH 2/6] include: add SPDX GPL-2.0-or-later " Roland Hieber
2019-02-07 22:39 ` [PATCH 3/6] include: add SPDX GPL-2.0-only license tags for files without licensing information Roland Hieber
2019-02-07 22:39 ` [PATCH 4/6] include: add SPDX LGPL-2.1-or-later license tags where applicable Roland Hieber
2019-02-07 22:39 ` [PATCH 5/6] include: spi: add SPDX GPL-2.0-or-later " Roland Hieber
2019-02-07 22:39 ` [PATCH 6/6] include: spi: add SPDX GPL-2.0-only license tags for files without licensing information Roland Hieber
2019-02-08 5:48 ` Oleksij Rempel [this message]
2019-02-08 8:59 ` [PATCH 1/6] include: add SPDX GPL-2.0-only license tags where applicable Roland Hieber
2019-02-08 9:09 ` Ahmad Fatoum
2019-02-11 10:25 ` Roland Hieber
2019-02-15 8:57 ` Ahmad Fatoum
2019-02-15 11:18 ` Roland Hieber
2019-02-22 13:25 ` Roland Hieber
2019-02-11 11:06 ` Roland Hieber
2019-03-10 20:42 ` Roland Hieber
2019-03-10 21:06 ` Sam Ravnborg
2019-03-13 9:42 ` Roland Hieber
2020-02-02 15:42 ` [PATCH v2 0/6] SPDX license tags and (L)GPL boilerplate cleanup Roland Hieber
2020-02-02 15:42 ` [PATCH v2 1/6] include: add SPDX GPL-2.0-only license tags where applicable Roland Hieber
2020-02-03 7:42 ` Ahmad Fatoum
2020-02-02 15:42 ` [PATCH v2 2/6] include: add SPDX GPL-2.0-or-later " Roland Hieber
2020-02-03 7:45 ` Ahmad Fatoum
2020-02-03 18:46 ` Roland Hieber
2020-02-02 15:42 ` [PATCH v2 3/6] include: add SPDX GPL-2.0-only license tags for files without licensing information Roland Hieber
2020-02-03 7:47 ` Ahmad Fatoum
2020-02-02 15:42 ` [PATCH v2 4/6] include: add SPDX LGPL-2.1-or-later license tags where applicable Roland Hieber
2020-02-03 7:49 ` Ahmad Fatoum
2020-02-03 18:48 ` Roland Hieber
2020-02-02 15:43 ` [PATCH v2 5/6] include: spi: add SPDX GPL-2.0-or-later " Roland Hieber
2020-02-03 7:50 ` Ahmad Fatoum
2020-02-02 15:43 ` [PATCH v2 6/6] include: spi: add SPDX GPL-2.0-only license tags for files without licensing information Roland Hieber
2020-02-03 7:51 ` Ahmad Fatoum
2020-02-13 12:12 ` [PATCH v3 0/7] SPDX license tags and (L)GPL boilerplate cleanup Roland Hieber
2020-02-13 12:12 ` [PATCH v3 1/7] include: add SPDX GPL-2.0-only license tags where applicable Roland Hieber
2020-02-13 12:12 ` [PATCH v3 2/7] include: add SPDX GPL-2.0-or-later " Roland Hieber
2020-02-13 12:12 ` [PATCH v3 3/7] include: add SPDX GPL-2.0-only license tags for files without licensing information Roland Hieber
2020-02-13 12:12 ` [PATCH v3 4/7] LICENSES: add LGPL-2.1-or-later Roland Hieber
2020-02-13 12:12 ` [PATCH v3 5/7] include: add SPDX LGPL-2.1-or-later license tags where applicable Roland Hieber
2020-02-13 12:12 ` [PATCH v3 6/7] include: spi: add SPDX GPL-2.0-or-later " Roland Hieber
2020-02-13 12:12 ` [PATCH v3 7/7] include: spi: add SPDX GPL-2.0-only license tags for files without licensing information Roland Hieber
2020-02-17 9:09 ` [PATCH v3 0/7] SPDX license tags and (L)GPL boilerplate cleanup Sascha Hauer
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=068ce15e-1a72-9b02-2b1f-40a5d32523a0@rempel-privat.de \
--to=linux@rempel-privat.de \
--cc=barebox@lists.infradead.org \
--cc=rhi@pengutronix.de \
--cc=rohieb@rohieb.name \
/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