Update copyright headers and years
This commit is contained in:
parent
f0f8cb8e37
commit
7f88bbf11c
@ -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 <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -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 <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -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
|
#ifndef PCI_H_INCLUDED
|
||||||
#define PCI_H_INCLUDED
|
#define PCI_H_INCLUDED
|
||||||
|
|
||||||
|
@ -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>
|
#include <setjmp.h>
|
||||||
#define __USE_GNU
|
#define __USE_GNU
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
19
shell.c
19
shell.c
@ -1,20 +1,11 @@
|
|||||||
/*
|
/*
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
UMKa - User-Mode KolibriOS developer tools
|
UMKa - User-Mode KolibriOS developer tools
|
||||||
umka_shell - interactive shell
|
umka_shell - the shell
|
||||||
Copyright (C) 2018--2020 Ivan Baravy <dunkaist@gmail.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
Copyright (C) 2017-2022 Ivan Baravy <dunkaist@gmail.com>
|
||||||
it under the terms of the GNU General Public License as published by
|
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
||||||
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 <stdio.h>
|
#include <stdio.h>
|
||||||
|
9
shell.h
9
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SHELL_H_INCLUDED
|
#ifndef SHELL_H_INCLUDED
|
||||||
#define SHELL_H_INCLUDED
|
#define SHELL_H_INCLUDED
|
||||||
|
|
||||||
|
@ -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 os
|
||||||
import sys
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
|
@ -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 <inttypes.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -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 <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
@ -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 <stdio.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
8
trace.c
8
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#include "trace_lbr.h"
|
#include "trace_lbr.h"
|
||||||
|
|
||||||
uint32_t coverage;
|
uint32_t coverage;
|
||||||
|
8
trace.h
8
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TRACE_H_INCLUDED
|
#ifndef TRACE_H_INCLUDED
|
||||||
#define TRACE_H_INCLUDED
|
#define TRACE_H_INCLUDED
|
||||||
|
|
||||||
|
@ -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 <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef TRACE_LBR_H_INCLUDED
|
#ifndef TRACE_LBR_H_INCLUDED
|
||||||
#define TRACE_LBR_H_INCLUDED
|
#define TRACE_LBR_H_INCLUDED
|
||||||
|
|
||||||
|
7
umka.asm
7
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 <dunkaist@gmail.com>
|
||||||
|
; Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
||||||
|
|
||||||
if HOST eq windows
|
if HOST eq windows
|
||||||
format MS COFF
|
format MS COFF
|
||||||
|
9
umka.h
9
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 <dunkaist@gmail.com>
|
||||||
|
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef UMKA_H_INCLUDED
|
#ifndef UMKA_H_INCLUDED
|
||||||
#define UMKA_H_INCLUDED
|
#define UMKA_H_INCLUDED
|
||||||
|
|
||||||
|
16
umka_fuse.c
16
umka_fuse.c
@ -1,20 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
UMKa - User-Mode KolibriOS developer tools
|
UMKa - User-Mode KolibriOS developer tools
|
||||||
umka_fuse - FUSE <-> KolibriOS FS calls converter
|
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
|
Copyright (C) 2017-2021 Ivan Baravy <dunkaist@gmail.com>
|
||||||
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/>.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define FUSE_USE_VERSION 31
|
#define FUSE_USE_VERSION 31
|
||||||
|
@ -1,25 +1,16 @@
|
|||||||
/*
|
/*
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
UMKa - User-Mode KolibriOS developer tools
|
UMKa - User-Mode KolibriOS developer tools
|
||||||
umka_gen_devices_dat - generate devices.dat file with IRQ information
|
umka_gen_devices_dat - generate devices.dat file with IRQ information
|
||||||
|
|
||||||
Copyright (C) 2021 Ivan Baravy <dunkaist@gmail.com>
|
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 <dirent.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
16
umka_os.c
16
umka_os.c
@ -1,20 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
UMKa - User-Mode KolibriOS developer tools
|
UMKa - User-Mode KolibriOS developer tools
|
||||||
umka_os - kind of KolibriOS rump kernel
|
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
|
Copyright (C) 2018-2022 Ivan Baravy <dunkaist@gmail.com>
|
||||||
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 <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
|
18
umka_shell.c
18
umka_shell.c
@ -1,19 +1,11 @@
|
|||||||
/*
|
/*
|
||||||
umka_shell: User-Mode KolibriOS developer tools, the shell
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
Copyright (C) 2018--2020 Ivan Baravy <dunkaist@gmail.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
UMKa - User-Mode KolibriOS developer tools
|
||||||
it under the terms of the GNU General Public License as published by
|
umka_shell - the shell
|
||||||
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,
|
Copyright (C) 2017-2022 Ivan Baravy <dunkaist@gmail.com>
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
||||||
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 <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
8
util.c
8
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "umka.h"
|
#include "umka.h"
|
||||||
|
|
||||||
|
8
util.h
8
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef UTIL_H_INCLUDED
|
#ifndef UTIL_H_INCLUDED
|
||||||
#define UTIL_H_INCLUDED
|
#define UTIL_H_INCLUDED
|
||||||
|
|
||||||
|
10
vdisk.c
10
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 <dunkaist@gmail.com>
|
||||||
|
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
9
vdisk.h
9
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef VDISK_H_INCLUDED
|
#ifndef VDISK_H_INCLUDED
|
||||||
#define VDISK_H_INCLUDED
|
#define VDISK_H_INCLUDED
|
||||||
|
|
||||||
|
10
vnet.c
10
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 <dunkaist@gmail.com>
|
||||||
|
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
||||||
|
*/
|
||||||
|
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
9
vnet.h
9
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 <dunkaist@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef VNET_H_INCLUDED
|
#ifndef VNET_H_INCLUDED
|
||||||
#define VNET_H_INCLUDED
|
#define VNET_H_INCLUDED
|
||||||
|
|
||||||
|
@ -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 "pci.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -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
|
#ifndef PCI_H_INCLUDED
|
||||||
#define PCI_H_INCLUDED
|
#define PCI_H_INCLUDED
|
||||||
|
|
||||||
|
@ -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>
|
#include <stdio.h>
|
||||||
|
|
||||||
void reset_procmask(void) {
|
void reset_procmask(void) {
|
||||||
|
Loading…
Reference in New Issue
Block a user