On Fri, Nov 5, 2021 at 3:19 PM Quentin Monnet <quentin@xxxxxxxxxxxxx> wrote: > > Bpftool is dual-licensed under GPLv2 and BSD-2-Clause. In commit > 907b22365115 ("tools: bpftool: dual license all files") we made sure > that all its source files were indeed covered by the two licenses, and > that they had the correct SPDX tags. > > However, bpftool's Makefile, the Makefile for its documentation, and the > .gitignore file were skipped at the time (their GPL-2.0-only tag was > added later). Let's update the tags. > > Cc: Alexei Starovoitov <ast@xxxxxxxxxx> > Cc: Andrii Nakryiko <andriin@xxxxxx> Acked-by: Andrii Nakryiko <andrii@xxxxxxxxxx> > Cc: Ilya Leoshkevich <iii@xxxxxxxxxxxxx> > Cc: Jakub Kicinski <kuba@xxxxxxxxxx> > Cc: Jean-Philippe Brucker <jean-philippe@xxxxxxxxxx> > Cc: Jesper Dangaard Brouer <brouer@xxxxxxxxxx> > Cc: Jiri Olsa <jolsa@xxxxxxxxxx> > Cc: Joe Stringer <joe@xxxxxxxxx> > Cc: Peter Wu <peter@xxxxxxxxxxxxx> > Cc: Roman Gushchin <guro@xxxxxx> > Cc: Song Liu <songliubraving@xxxxxx> > Cc: Stanislav Fomichev <sdf@xxxxxxxxxx> > Cc: Tobias Klauser <tklauser@xxxxxxxxxx> > Signed-off-by: Quentin Monnet <quentin@xxxxxxxxxxxxx> > --- > tools/bpf/bpftool/.gitignore | 2 +- > tools/bpf/bpftool/Documentation/Makefile | 2 +- > tools/bpf/bpftool/Makefile | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tools/bpf/bpftool/.gitignore b/tools/bpf/bpftool/.gitignore > index 05ce4446b780..a736f64dc5dc 100644 > --- a/tools/bpf/bpftool/.gitignore > +++ b/tools/bpf/bpftool/.gitignore > @@ -1,4 +1,4 @@ > -# SPDX-License-Identifier: GPL-2.0-only > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > *.d > /bootstrap/ > /bpftool > diff --git a/tools/bpf/bpftool/Documentation/Makefile b/tools/bpf/bpftool/Documentation/Makefile > index c49487905ceb..44b60784847b 100644 > --- a/tools/bpf/bpftool/Documentation/Makefile > +++ b/tools/bpf/bpftool/Documentation/Makefile > @@ -1,4 +1,4 @@ > -# SPDX-License-Identifier: GPL-2.0-only > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > include ../../../scripts/Makefile.include > include ../../../scripts/utilities.mak > > diff --git a/tools/bpf/bpftool/Makefile b/tools/bpf/bpftool/Makefile > index c0c30e56988f..622568c7a9b8 100644 > --- a/tools/bpf/bpftool/Makefile > +++ b/tools/bpf/bpftool/Makefile > @@ -1,4 +1,4 @@ > -# SPDX-License-Identifier: GPL-2.0-only > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > include ../../scripts/Makefile.include > include ../../scripts/utilities.mak > > -- > 2.32.0 >