aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-01-01 08:04:09 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-01-01 08:04:09 -0500
commit33b37149008fa0308a168d6466b59fec1d29a31e (patch)
treee089cd64b5bfc8a84da782570940dc9e258cb2d8
parentc459396945898c5c019a602a1f9bf742677de1c1 (diff)
all: Copyright: 2024-2025
-rw-r--r--env.sh2
-rw-r--r--kernel/boot/init/boot.s2
-rw-r--r--kernel/boot/init/crti.s2
-rw-r--r--kernel/boot/init/crtn.s2
-rw-r--r--kernel/boot/link.ld2
-rw-r--r--kernel/drivers/serial/serial.c2
-rw-r--r--kernel/drivers/vga_text_buffer/vga_text_buffer.c2
-rw-r--r--kernel/include/drivers/serial.h2
-rw-r--r--kernel/include/drivers/vga_text_buffer.h2
-rw-r--r--kernel/include/kernel/halt.h2
-rw-r--r--kernel/include/kernel/io.h2
-rw-r--r--kernel/include/libk/io.h2
-rw-r--r--kernel/include/libk/string.h2
-rw-r--r--kernel/kernel/halt.c2
-rw-r--r--kernel/kernel/kernel.c2
-rw-r--r--kernel/libk/printk.c2
-rw-r--r--kernel/libk/strlen.c2
-rwxr-xr-xscripts/build-toolchain.sh2
-rwxr-xr-xscripts/fetch-toolchain.sh2
-rw-r--r--toolchain/Makefile2
-rw-r--r--toolchain/cross_binutils.mk2
-rw-r--r--toolchain/cross_gcc.mk2
-rw-r--r--toolchain/host_binutils.mk2
-rw-r--r--toolchain/host_gcc.mk2
-rw-r--r--toolchain/utils.mk2
25 files changed, 25 insertions, 25 deletions
diff --git a/env.sh b/env.sh
index b804342..9993d92 100644
--- a/env.sh
+++ b/env.sh
@@ -2,7 +2,7 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/boot/init/boot.s b/kernel/boot/init/boot.s
index c9c6dd5..d2000a3 100644
--- a/kernel/boot/init/boot.s
+++ b/kernel/boot/init/boot.s
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/boot/init/crti.s b/kernel/boot/init/crti.s
index 2819b76..aa67cd2 100644
--- a/kernel/boot/init/crti.s
+++ b/kernel/boot/init/crti.s
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/boot/init/crtn.s b/kernel/boot/init/crtn.s
index f5186e2..3b204b8 100644
--- a/kernel/boot/init/crtn.s
+++ b/kernel/boot/init/crtn.s
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/boot/link.ld b/kernel/boot/link.ld
index e2ae26c..f67ebfe 100644
--- a/kernel/boot/link.ld
+++ b/kernel/boot/link.ld
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/drivers/serial/serial.c b/kernel/drivers/serial/serial.c
index 49362de..20a9889 100644
--- a/kernel/drivers/serial/serial.c
+++ b/kernel/drivers/serial/serial.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/drivers/vga_text_buffer/vga_text_buffer.c b/kernel/drivers/vga_text_buffer/vga_text_buffer.c
index d7aa235..df92b63 100644
--- a/kernel/drivers/vga_text_buffer/vga_text_buffer.c
+++ b/kernel/drivers/vga_text_buffer/vga_text_buffer.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/include/drivers/serial.h b/kernel/include/drivers/serial.h
index 869500f..eef5e02 100644
--- a/kernel/include/drivers/serial.h
+++ b/kernel/include/drivers/serial.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/include/drivers/vga_text_buffer.h b/kernel/include/drivers/vga_text_buffer.h
index 0dcc911..0362f17 100644
--- a/kernel/include/drivers/vga_text_buffer.h
+++ b/kernel/include/drivers/vga_text_buffer.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/include/kernel/halt.h b/kernel/include/kernel/halt.h
index 5735a06..901f807 100644
--- a/kernel/include/kernel/halt.h
+++ b/kernel/include/kernel/halt.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/include/kernel/io.h b/kernel/include/kernel/io.h
index 99a8aec..5453cb1 100644
--- a/kernel/include/kernel/io.h
+++ b/kernel/include/kernel/io.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/include/libk/io.h b/kernel/include/libk/io.h
index 7cda8a4..8757dd6 100644
--- a/kernel/include/libk/io.h
+++ b/kernel/include/libk/io.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/include/libk/string.h b/kernel/include/libk/string.h
index 3c19fa4..7bc38d3 100644
--- a/kernel/include/libk/string.h
+++ b/kernel/include/libk/string.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/kernel/halt.c b/kernel/kernel/halt.c
index 894ee8a..53d27e2 100644
--- a/kernel/kernel/halt.c
+++ b/kernel/kernel/halt.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/kernel/kernel.c b/kernel/kernel/kernel.c
index 4da19c3..9d325d5 100644
--- a/kernel/kernel/kernel.c
+++ b/kernel/kernel/kernel.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/libk/printk.c b/kernel/libk/printk.c
index 4983c50..1bde77f 100644
--- a/kernel/libk/printk.c
+++ b/kernel/libk/printk.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/kernel/libk/strlen.c b/kernel/libk/strlen.c
index c203099..4ea4279 100644
--- a/kernel/libk/strlen.c
+++ b/kernel/libk/strlen.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/scripts/build-toolchain.sh b/scripts/build-toolchain.sh
index a59c79c..5583cdb 100755
--- a/scripts/build-toolchain.sh
+++ b/scripts/build-toolchain.sh
@@ -2,7 +2,7 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/scripts/fetch-toolchain.sh b/scripts/fetch-toolchain.sh
index 19b8cdc..ee96f8c 100755
--- a/scripts/fetch-toolchain.sh
+++ b/scripts/fetch-toolchain.sh
@@ -2,7 +2,7 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/toolchain/Makefile b/toolchain/Makefile
index 8652bdb..f3fa7c6 100644
--- a/toolchain/Makefile
+++ b/toolchain/Makefile
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/toolchain/cross_binutils.mk b/toolchain/cross_binutils.mk
index c8bb68d..6a5bf6f 100644
--- a/toolchain/cross_binutils.mk
+++ b/toolchain/cross_binutils.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/toolchain/cross_gcc.mk b/toolchain/cross_gcc.mk
index 06d128a..0aed8ad 100644
--- a/toolchain/cross_gcc.mk
+++ b/toolchain/cross_gcc.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/toolchain/host_binutils.mk b/toolchain/host_binutils.mk
index 1f8e23c..f2ae3fa 100644
--- a/toolchain/host_binutils.mk
+++ b/toolchain/host_binutils.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/toolchain/host_gcc.mk b/toolchain/host_gcc.mk
index 0feb33e..bb581ce 100644
--- a/toolchain/host_gcc.mk
+++ b/toolchain/host_gcc.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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
diff --git a/toolchain/utils.mk b/toolchain/utils.mk
index 53724e4..bad7fff 100644
--- a/toolchain/utils.mk
+++ b/toolchain/utils.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@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