From 6c529c5c6c2d016d77b143171c5e27fbec0d2bfd Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 12 Jun 2022 13:58:42 +0300 Subject: add license texts --- arch/riscv64/include/arch.h | 3 +++ arch/riscv64/include/cpu.h | 3 +++ arch/riscv64/include/irq.h | 3 +++ arch/riscv64/include/lock.h | 3 +++ arch/riscv64/include/pmem.h | 3 +++ arch/riscv64/include/proc.h | 3 +++ arch/riscv64/include/tcb.h | 3 +++ arch/riscv64/include/timer.h | 3 +++ arch/riscv64/include/types.h | 3 +++ arch/riscv64/include/vmem.h | 3 +++ 10 files changed, 30 insertions(+) (limited to 'arch/riscv64/include') diff --git a/arch/riscv64/include/arch.h b/arch/riscv64/include/arch.h index 0930543..4d083e7 100644 --- a/arch/riscv64/include/arch.h +++ b/arch/riscv64/include/arch.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_ARCH_H #define APOS_RISCV_ARCH_H /** diff --git a/arch/riscv64/include/cpu.h b/arch/riscv64/include/cpu.h index 5d496ea..73d3d15 100644 --- a/arch/riscv64/include/cpu.h +++ b/arch/riscv64/include/cpu.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_CPU_H #define APOS_RISCV_CPU_H /** diff --git a/arch/riscv64/include/irq.h b/arch/riscv64/include/irq.h index 95ce62a..cba6b31 100644 --- a/arch/riscv64/include/irq.h +++ b/arch/riscv64/include/irq.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_IRQ_H #define APOS_RISCV_IRQ_H /** diff --git a/arch/riscv64/include/lock.h b/arch/riscv64/include/lock.h index 15e5765..a85f72e 100644 --- a/arch/riscv64/include/lock.h +++ b/arch/riscv64/include/lock.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_LOCK_H #define APOS_RISCV_LOCK_H /** diff --git a/arch/riscv64/include/pmem.h b/arch/riscv64/include/pmem.h index 56d22ca..1b1d55a 100644 --- a/arch/riscv64/include/pmem.h +++ b/arch/riscv64/include/pmem.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_PMEM_H #define APOS_RISCV_PMEM_H /** diff --git a/arch/riscv64/include/proc.h b/arch/riscv64/include/proc.h index c0bf3af..8b531ce 100644 --- a/arch/riscv64/include/proc.h +++ b/arch/riscv64/include/proc.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_PROC_H #define APOS_RISCV_PROC_H diff --git a/arch/riscv64/include/tcb.h b/arch/riscv64/include/tcb.h index 8cd32ed..ed2fd71 100644 --- a/arch/riscv64/include/tcb.h +++ b/arch/riscv64/include/tcb.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef ARCH_RISCV_TCB_H #define ARCH_RISCV_TCB_H diff --git a/arch/riscv64/include/timer.h b/arch/riscv64/include/timer.h index 2e468ba..6299662 100644 --- a/arch/riscv64/include/timer.h +++ b/arch/riscv64/include/timer.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_TIMER_H #define APOS_RISCV_TIMER_H /** diff --git a/arch/riscv64/include/types.h b/arch/riscv64/include/types.h index de7a85f..2a6dcb5 100644 --- a/arch/riscv64/include/types.h +++ b/arch/riscv64/include/types.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_TYPES_H #define APOS_RISCV_TYPES_H diff --git a/arch/riscv64/include/vmem.h b/arch/riscv64/include/vmem.h index 46c12b1..9945051 100644 --- a/arch/riscv64/include/vmem.h +++ b/arch/riscv64/include/vmem.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #ifndef APOS_RISCV_VMAP_H #define APOS_RISCV_VMAP_H -- cgit v1.3