From 7f88bbf11c657f56d786af432322de017aa0e8e3 Mon Sep 17 00:00:00 2001 From: Ivan Baravy Date: Mon, 27 Jun 2022 21:36:56 +0400 Subject: [PATCH] Update copyright headers and years --- covpreproc.c | 8 ++++++++ linux/pci.c | 8 ++++++++ linux/pci.h | 8 ++++++++ linux/thread.c | 8 ++++++++ shell.c | 19 +++++-------------- shell.h | 9 +++++++++ tools/dirtotest.py | 6 ++++++ tools/lfbviewx.c | 9 +++++++++ tools/mkdirrange.c | 9 +++++++++ tools/randdir.c | 9 +++++++++ trace.c | 8 ++++++++ trace.h | 8 ++++++++ trace_lbr.c | 9 +++++++++ trace_lbr.h | 8 ++++++++ umka.asm | 7 ++++++- umka.h | 9 +++++++++ umka_fuse.c | 16 +++------------- umka_gen_devices_dat.c | 17 ++++------------- umka_os.c | 16 +++------------- umka_shell.c | 18 +++++------------- util.c | 8 ++++++++ util.h | 8 ++++++++ vdisk.c | 10 ++++++++++ vdisk.h | 9 +++++++++ vnet.c | 10 ++++++++++ vnet.h | 9 +++++++++ windows/pci.c | 8 ++++++++ windows/pci.h | 8 ++++++++ windows/thread.c | 8 ++++++++ 29 files changed, 220 insertions(+), 67 deletions(-) diff --git a/covpreproc.c b/covpreproc.c index c8d570e..7cacc8c 100644 --- a/covpreproc.c +++ b/covpreproc.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2020 Ivan Baravy +*/ + #include #include #include diff --git a/linux/pci.c b/linux/pci.c index 62f21c6..a387621 100644 --- a/linux/pci.c +++ b/linux/pci.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2020-2021 Ivan Baravy +*/ + #include #include #include diff --git a/linux/pci.h b/linux/pci.h index 52528dc..f6b48c2 100644 --- a/linux/pci.h +++ b/linux/pci.h @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2020 Ivan Baravy +*/ + #ifndef PCI_H_INCLUDED #define PCI_H_INCLUDED diff --git a/linux/thread.c b/linux/thread.c index 3390d08..3f19f0c 100644 --- a/linux/thread.c +++ b/linux/thread.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2020,2022 Ivan Baravy +*/ + #include #define __USE_GNU #include diff --git a/shell.c b/shell.c index 05c60ff..4b49636 100644 --- a/shell.c +++ b/shell.c @@ -1,20 +1,11 @@ /* + SPDX-License-Identifier: GPL-2.0-or-later + UMKa - User-Mode KolibriOS developer tools - umka_shell - interactive shell - Copyright (C) 2018--2020 Ivan Baravy + umka_shell - the shell - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . + Copyright (C) 2017-2022 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev */ #include diff --git a/shell.h b/shell.h index 56a0b5f..224e8fc 100644 --- a/shell.h +++ b/shell.h @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + umka_shell - the shell + + Copyright (C) 2020-2022 Ivan Baravy +*/ + #ifndef SHELL_H_INCLUDED #define SHELL_H_INCLUDED diff --git a/tools/dirtotest.py b/tools/dirtotest.py index 316e060..bbca676 100644 --- a/tools/dirtotest.py +++ b/tools/dirtotest.py @@ -1,3 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# +# UMKa - User-Mode KolibriOS developer tools +# +# Copyright (C) 2021 Magomed Kostoev + import os import sys import shutil diff --git a/tools/lfbviewx.c b/tools/lfbviewx.c index fdba927..b4d2dcd 100644 --- a/tools/lfbviewx.c +++ b/tools/lfbviewx.c @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + lfbviewx - framebuffer viewer for X + + Copyright (C) 2020 Ivan Baravy +*/ + #include #include #include diff --git a/tools/mkdirrange.c b/tools/mkdirrange.c index e0a8c70..0b9390a 100644 --- a/tools/mkdirrange.c +++ b/tools/mkdirrange.c @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + mkdirrange - make directories with names in range + + Copyright (C) 2018-2019 Ivan Baravy +*/ + #include #include #include diff --git a/tools/randdir.c b/tools/randdir.c index 4fd4c45..e960355 100644 --- a/tools/randdir.c +++ b/tools/randdir.c @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2019-2020 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev +*/ + #include #include #include diff --git a/trace.c b/trace.c index 89fd8ea..5a6a502 100644 --- a/trace.c +++ b/trace.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2019-2020 Ivan Baravy +*/ + #include "trace_lbr.h" uint32_t coverage; diff --git a/trace.h b/trace.h index c907920..ea5a74e 100644 --- a/trace.h +++ b/trace.h @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2019-2020 Ivan Baravy +*/ + #ifndef TRACE_H_INCLUDED #define TRACE_H_INCLUDED diff --git a/trace_lbr.c b/trace_lbr.c index 4006ffa..73c990b 100644 --- a/trace_lbr.c +++ b/trace_lbr.c @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2019-2020 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev +*/ + #include #include #include diff --git a/trace_lbr.h b/trace_lbr.h index 6064b85..12e6789 100644 --- a/trace_lbr.h +++ b/trace_lbr.h @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2019-2020 Ivan Baravy +*/ + #ifndef TRACE_LBR_H_INCLUDED #define TRACE_LBR_H_INCLUDED diff --git a/umka.asm b/umka.asm index 91d5672..50b58fe 100644 --- a/umka.asm +++ b/umka.asm @@ -1,4 +1,9 @@ -; TODO: SPDX +; SPDX-License-Identifier: GPL-2.0-or-later +; +; UMKa - User-Mode KolibriOS developer tools +; +; Copyright (C) 2017-2022 Ivan Baravy +; Copyright (C) 2021 Magomed Kostoev if HOST eq windows format MS COFF diff --git a/umka.h b/umka.h index d82a41b..9f971cf 100644 --- a/umka.h +++ b/umka.h @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2017-2022 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev +*/ + #ifndef UMKA_H_INCLUDED #define UMKA_H_INCLUDED diff --git a/umka_fuse.c b/umka_fuse.c index 0b649f6..7bff092 100644 --- a/umka_fuse.c +++ b/umka_fuse.c @@ -1,20 +1,10 @@ /* + SPDX-License-Identifier: GPL-2.0-or-later + UMKa - User-Mode KolibriOS developer tools umka_fuse - FUSE <-> KolibriOS FS calls converter - Copyright (C) 2018--2020 Ivan Baravy - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . + Copyright (C) 2017-2021 Ivan Baravy */ #define FUSE_USE_VERSION 31 diff --git a/umka_gen_devices_dat.c b/umka_gen_devices_dat.c index 21421a8..0821c02 100644 --- a/umka_gen_devices_dat.c +++ b/umka_gen_devices_dat.c @@ -1,25 +1,16 @@ /* + SPDX-License-Identifier: GPL-2.0-or-later + UMKa - User-Mode KolibriOS developer tools umka_gen_devices_dat - generate devices.dat file with IRQ information + Copyright (C) 2021 Ivan Baravy - - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . */ #include #include #include +#include #include #include #include diff --git a/umka_os.c b/umka_os.c index 0ff45e6..3e257b2 100644 --- a/umka_os.c +++ b/umka_os.c @@ -1,20 +1,10 @@ /* + SPDX-License-Identifier: GPL-2.0-or-later + UMKa - User-Mode KolibriOS developer tools umka_os - kind of KolibriOS rump kernel - Copyright (C) 2018--2021 Ivan Baravy - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . + Copyright (C) 2018-2022 Ivan Baravy */ #include diff --git a/umka_shell.c b/umka_shell.c index 15006eb..920fc71 100644 --- a/umka_shell.c +++ b/umka_shell.c @@ -1,19 +1,11 @@ /* - umka_shell: User-Mode KolibriOS developer tools, the shell - Copyright (C) 2018--2020 Ivan Baravy + SPDX-License-Identifier: GPL-2.0-or-later - 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. + UMKa - User-Mode KolibriOS developer tools + umka_shell - the shell - 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. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . + Copyright (C) 2017-2022 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev */ #include diff --git a/util.c b/util.c index d2fcb61..2279f17 100644 --- a/util.c +++ b/util.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2021 Ivan Baravy +*/ + #include #include "umka.h" diff --git a/util.h b/util.h index 58d884e..4a157bb 100644 --- a/util.h +++ b/util.h @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2021 Ivan Baravy +*/ + #ifndef UTIL_H_INCLUDED #define UTIL_H_INCLUDED diff --git a/vdisk.c b/vdisk.c index 1cba7e2..9fec95d 100644 --- a/vdisk.c +++ b/vdisk.c @@ -1,3 +1,13 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + vdisk - virtual disk + + Copyright (C) 2020-2022 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev +*/ + #include #include #include diff --git a/vdisk.h b/vdisk.h index 51c1d6f..a451b36 100644 --- a/vdisk.h +++ b/vdisk.h @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + vdisk - virtual disk + + Copyright (C) 2020-2022 Ivan Baravy +*/ + #ifndef VDISK_H_INCLUDED #define VDISK_H_INCLUDED diff --git a/vnet.c b/vnet.c index 029654c..24b79e8 100644 --- a/vnet.c +++ b/vnet.c @@ -1,3 +1,13 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + vnet - virtual network card + + Copyright (C) 2020-2022 Ivan Baravy + Copyright (C) 2021 Magomed Kostoev +*/ + #include #include #include diff --git a/vnet.h b/vnet.h index 961f19d..4f5fde0 100644 --- a/vnet.h +++ b/vnet.h @@ -1,3 +1,12 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + vnet - virtual network card + + Copyright (C) 2020-2022 Ivan Baravy +*/ + #ifndef VNET_H_INCLUDED #define VNET_H_INCLUDED diff --git a/windows/pci.c b/windows/pci.c index 5fef01f..372a243 100755 --- a/windows/pci.c +++ b/windows/pci.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2021 Magomed Kostoev +*/ + #include "pci.h" #include diff --git a/windows/pci.h b/windows/pci.h index d8426ba..69edb7b 100755 --- a/windows/pci.h +++ b/windows/pci.h @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2021 Magomed Kostoev +*/ + #ifndef PCI_H_INCLUDED #define PCI_H_INCLUDED diff --git a/windows/thread.c b/windows/thread.c index 3a5e994..ba151ae 100755 --- a/windows/thread.c +++ b/windows/thread.c @@ -1,3 +1,11 @@ +/* + SPDX-License-Identifier: GPL-2.0-or-later + + UMKa - User-Mode KolibriOS developer tools + + Copyright (C) 2021 Magomed Kostoev +*/ + #include void reset_procmask(void) {