Update copyright headers and years

This commit is contained in:
Ivan Baravy 2022-06-27 21:36:56 +04:00
parent f0f8cb8e37
commit 7f88bbf11c
29 changed files with 220 additions and 67 deletions

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2020 Ivan Baravy <dunkaist@gmail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2020-2021 Ivan Baravy <dunkaist@gmail.com>
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2020 Ivan Baravy <dunkaist@gmail.com>
*/
#ifndef PCI_H_INCLUDED
#define PCI_H_INCLUDED

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2020,2022 Ivan Baravy <dunkaist@gmail.com>
*/
#include <setjmp.h>
#define __USE_GNU
#include <signal.h>

19
shell.c
View File

@ -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 <dunkaist@gmail.com>
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 <https://www.gnu.org/licenses/>.
Copyright (C) 2017-2022 Ivan Baravy <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdio.h>

View File

@ -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 <dunkaist@gmail.com>
*/
#ifndef SHELL_H_INCLUDED
#define SHELL_H_INCLUDED

View File

@ -1,3 +1,9 @@
# SPDX-License-Identifier: GPL-2.0-or-later
#
# UMKa - User-Mode KolibriOS developer tools
#
# Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
import os
import sys
import shutil

View File

@ -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 <dunkaist@gmail.com>
*/
#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>

View File

@ -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 <dunkaist@gmail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>

View File

@ -1,3 +1,12 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2019-2020 Ivan Baravy <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdio.h>
#include <assert.h>
#include <stdint.h>

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2019-2020 Ivan Baravy <dunkaist@gmail.com>
*/
#include "trace_lbr.h"
uint32_t coverage;

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2019-2020 Ivan Baravy <dunkaist@gmail.com>
*/
#ifndef TRACE_H_INCLUDED
#define TRACE_H_INCLUDED

View File

@ -1,3 +1,12 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2019-2020 Ivan Baravy <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2019-2020 Ivan Baravy <dunkaist@gmail.com>
*/
#ifndef TRACE_LBR_H_INCLUDED
#define TRACE_LBR_H_INCLUDED

View File

@ -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 <dunkaist@gmail.com>
; Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
if HOST eq windows
format MS COFF

9
umka.h
View File

@ -1,3 +1,12 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2017-2022 Ivan Baravy <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#ifndef UMKA_H_INCLUDED
#define UMKA_H_INCLUDED

View File

@ -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 <dunkaist@gmail.com>
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 <https://www.gnu.org/licenses/>.
Copyright (C) 2017-2021 Ivan Baravy <dunkaist@gmail.com>
*/
#define FUSE_USE_VERSION 31

View File

@ -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 <dunkaist@gmail.com>
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 <https://www.gnu.org/licenses/>.
*/
#include <dirent.h>
#include <errno.h>
#include <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -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 <dunkaist@gmail.com>
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 <https://www.gnu.org/licenses/>.
Copyright (C) 2018-2022 Ivan Baravy <dunkaist@gmail.com>
*/
#include <arpa/inet.h>

View File

@ -1,19 +1,11 @@
/*
umka_shell: User-Mode KolibriOS developer tools, the shell
Copyright (C) 2018--2020 Ivan Baravy <dunkaist@gmail.com>
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 <https://www.gnu.org/licenses/>.
Copyright (C) 2017-2022 Ivan Baravy <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <inttypes.h>

8
util.c
View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Ivan Baravy <dunkaist@gmail.com>
*/
#include <stdio.h>
#include "umka.h"

8
util.h
View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Ivan Baravy <dunkaist@gmail.com>
*/
#ifndef UTIL_H_INCLUDED
#define UTIL_H_INCLUDED

10
vdisk.c
View File

@ -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 <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -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 <dunkaist@gmail.com>
*/
#ifndef VDISK_H_INCLUDED
#define VDISK_H_INCLUDED

10
vnet.c
View File

@ -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 <dunkaist@gmail.com>
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <arpa/inet.h>
#include <assert.h>
#include <errno.h>

9
vnet.h
View File

@ -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 <dunkaist@gmail.com>
*/
#ifndef VNET_H_INCLUDED
#define VNET_H_INCLUDED

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include "pci.h"
#include <stdio.h>

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#ifndef PCI_H_INCLUDED
#define PCI_H_INCLUDED

View File

@ -1,3 +1,11 @@
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdio.h>
void reset_procmask(void) {