Skip to content

Commit a5f1f82

Browse files
committed
Added new / Updated copyright headers
1 parent 874252e commit a5f1f82

File tree

40 files changed

+385
-130
lines changed

40 files changed

+385
-130
lines changed

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# * @file Makefile
2-
# * @author Owen Boreham (owenkadeboreham@gmail.com)
3-
# * @version 0.1.5
4-
# * @date 2021-07-08
5-
# *
6-
# * @copyright Copyright (c) 2021 TinyKernel
7-
# * This file is part of TinyKernel which is released
8-
# * under Apache License 2.0. See file LICENSE or go
9-
# * to https://www.apache.org/licenses/LICENSE-2.0 for
10-
# * full license details.
1+
#* file Makefile
2+
#* author Owen Boreham (owenkadeboreham@gmail.com)
3+
#* version 0.1.8
4+
#* date 2021-07-08
5+
#*
6+
#* Copyright (c) 2021 TinyKernel
7+
#* This file is part of TinyKernel which is released
8+
#* under Apache License 2.0. See file LICENSE or go
9+
#* to https://www.apache.org/licenses/LICENSE-2.0 for
10+
#* full license details.
1111

1212
# Project imports
1313
include config.cfg

colors.mk

Lines changed: 29 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,32 @@
1+
#* file Makefile
2+
#* author Owen Boreham (owenkadeboreham@gmail.com)
3+
#* version 0.1.8
4+
#* date 2021-07-08
5+
#*
6+
#* Copyright (c) 2021 TinyKernel
7+
#* This file is part of TinyKernel which is released
8+
#* under Apache License 2.0. See file LICENSE or go
9+
#* to https://www.apache.org/licenses/LICENSE-2.0 for
10+
#* full license details.
11+
112
ifneq (,$(findstring xterm,${TERM}))
2-
BLACK := $(shell tput -Txterm setaf 0)
3-
RED := $(shell tput -Txterm setaf 1)
4-
GREEN := $(shell tput -Txterm setaf 2)
5-
YELLOW := $(shell tput -Txterm setaf 3)
6-
LIGHT_PURPLE:= $(shell tput -Txterm setaf 4)
7-
PURPLE := $(shell tput -Txterm setaf 5)
8-
BLUE := $(shell tput -Txterm setaf 6)
9-
WHITE := $(shell tput -Txterm setaf 7)
10-
RESET := $(shell tput -Txterm sgr0)
13+
BLACK = $(shell tput -Txterm setaf 0)
14+
RED = $(shell tput -Txterm setaf 1)
15+
GREEN = $(shell tput -Txterm setaf 2)
16+
YELLOW = $(shell tput -Txterm setaf 3)
17+
LIGHT_PURPLE = $(shell tput -Txterm setaf 4)
18+
PURPLE = $(shell tput -Txterm setaf 5)
19+
BLUE = $(shell tput -Txterm setaf 6)
20+
WHITE = $(shell tput -Txterm setaf 7)
21+
RESET = $(shell tput -Txterm sgr0)
1122
else
12-
BLACK := ""
13-
RED := ""
14-
GREEN := ""
15-
YELLOW := ""
16-
LIGHT_PURPLE:= ""
17-
PURPLE := ""
18-
BLUE := ""
19-
WHITE := ""
20-
RESET := ""
23+
BLACK = ""
24+
RED = ""
25+
GREEN = ""
26+
YELLOW = ""
27+
LIGHT_PURPLE = ""
28+
PURPLE = ""
29+
BLUE = ""
30+
WHITE = ""
31+
RESET = ""
2132
endif

config.cfg

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
#* file Makefile
2+
#* author Owen Boreham (owenkadeboreham@gmail.com)
3+
#* version 0.1.8
4+
#* date 2021-07-08
5+
#*
6+
#* Copyright (c) 2021 TinyKernel
7+
#* This file is part of TinyKernel which is released
8+
#* under Apache License 2.0. See file LICENSE or go
9+
#* to https://www.apache.org/licenses/LICENSE-2.0 for
10+
#* full license details.
11+
112
# General infomation
213
VERSION=0.1.4
314
AUTHOR=Bobrossrtx

config/linker.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file linker.ld
33
* @author Owen Boreham (owenkadeboreham@gmail.com)
4-
* @version 0.1.1
4+
* @version 0.1.2
55
* @date 2021-07-06
66
*
77
* @copyright Copyright (c) 2021 TinyKernel

include/arch/i386/elf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ typedef struct
10961096

10971097
/* Legal values for vn_version (version revision). */
10981098
#define VER_NEED_NONE 0 /* No version */
1099-
#define VER_NEED_CURRENT 1 /* Current version */
1099+
#define VER_NEED_CURRENT 1 /* Currestdintnt version */
11001100
#define VER_NEED_NUM 2 /* Given version number */
11011101

11021102
/* Auxiliary needed version information. */

include/arch/i386/elf_core.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/**
2+
* @file elf_core.h
3+
* @author Owen Boreham (owenkadeboreham@gmail.com)
4+
* @version 0.1.1
5+
* @date 2021-08-24
6+
*
7+
* @copyright Copyright (c) 2021 TinyKernel
8+
* This file is part of TinyKernel which is released
9+
* under Apache License 2.0. See file LICENSE or go
10+
* to https://www.apache.org/licenses/LICENSE-2.0 for
11+
* full license details.
12+
*/
13+
114
#pragma once
215

316
#include <config.h>

include/arch/i386/paging.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/**
2+
* @file paging.h
3+
* @author Owen Boreham (owenkadeboreham@gmail.com)
4+
* @version 0.1.2
5+
* @date 2021-08-24
6+
*
7+
* @copyright Copyright (c) 2021 TinyKernel
8+
* This file is part of TinyKernel which is released
9+
* under Apache License 2.0. See file LICENSE or go
10+
* to https://www.apache.org/licenses/LICENSE-2.0 for
11+
* full license details.
12+
*/
13+
114
#ifndef PAGING_INT_H
215
#define PAGING_INT_H
316

include/buildinfo.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/**
2+
* @file buildinfo.h
3+
* @author Owen Boreham (owenkadeboreham@gmail.com)
4+
* @version 0.1.0
5+
* @date 2021-08-26
6+
*
7+
* @copyright Copyright (c) 2021 TinyKernel
8+
* This file is part of TinyKernel which is released
9+
* under Apache License 2.0. See file LICENSE or go
10+
* to https://www.apache.org/licenses/LICENSE-2.0 for
11+
* full license details.
12+
*/
13+
114
#pragma once
215

316
#ifndef __BUILD_ARCH__

include/cdefs.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/**
2+
* @file cdefs.h
3+
* @author Owen Boreham (owenkadeboreham@gmail.com)
4+
* @version 0.1.3
5+
* @date 2021-08-17
6+
*
7+
* @copyright Copyright (c) 2021 TinyKernel
8+
* This file is part of TinyKernel which is released
9+
* under Apache License 2.0. See file LICENSE or go
10+
* to https://www.apache.org/licenses/LICENSE-2.0 for
11+
* full license details.
12+
*/
13+
114
#ifndef CDEFS_H
215
#define CDEFS_H
316

include/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file configure.h
33
* @author Owen Boreham (owenkadeboreham@gmail.com)
4-
* @version 0.1.1
4+
* @version 0.1.3
55
* @date 2021-07-09
66
*
77
* @copyright Copyright (c) 2021 TinyKernel

0 commit comments

Comments
 (0)