aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-01-04 10:56:18 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-01-04 10:56:18 -0500
commit7126d25d7fd914494c66fbbf18cf0a265079e40a (patch)
tree2ab9373e979b450b219c8f4a96fefc250fe03780
parentae6db9be229bdfdf19fa98eec9871f89b08d14eb (diff)
misc: Two spaces before the copyright name.
-rw-r--r--env.sh2
-rw-r--r--kernel/boot/gdt/gdt.c2
-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/boot/gdt.h2
-rw-r--r--kernel/include/common.h2
-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/stdio.h2
-rw-r--r--kernel/include/libk/string.h2
-rw-r--r--kernel/include/mm/memory_map.h2
-rw-r--r--kernel/include/mm/multiboot.h2
-rw-r--r--kernel/kernel/halt.c2
-rw-r--r--kernel/kernel/kernel.c2
-rw-r--r--kernel/kernel/stack_smashing_protector.c2
-rw-r--r--kernel/libk/printk.c2
-rw-r--r--kernel/libk/strlen.c2
-rw-r--r--kernel/mm/memory_map.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
32 files changed, 32 insertions, 32 deletions
diff --git a/env.sh b/env.sh
index ee9dd83..6e0170f 100644
--- a/env.sh
+++ b/env.sh
@@ -2,7 +2,7 @@
#
# CMOS
-# Copyright (C) 2024-2025 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/gdt/gdt.c b/kernel/boot/gdt/gdt.c
index fcf71b3..8a3fb11 100644
--- a/kernel/boot/gdt/gdt.c
+++ b/kernel/boot/gdt/gdt.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 8e0d10b..38e21ee 100644
--- a/kernel/boot/init/boot.s
+++ b/kernel/boot/init/boot.s
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 aa67cd2..ca20f2c 100644
--- a/kernel/boot/init/crti.s
+++ b/kernel/boot/init/crti.s
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 3b204b8..ee88985 100644
--- a/kernel/boot/init/crtn.s
+++ b/kernel/boot/init/crtn.s
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 f67ebfe..8fb5e85 100644
--- a/kernel/boot/link.ld
+++ b/kernel/boot/link.ld
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 06cbdbb..3d96377 100644
--- a/kernel/drivers/serial/serial.c
+++ b/kernel/drivers/serial/serial.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 62c7ab8..3122056 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-2025 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/boot/gdt.h b/kernel/include/boot/gdt.h
index 7cf7d35..316c359 100644
--- a/kernel/include/boot/gdt.h
+++ b/kernel/include/boot/gdt.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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/common.h b/kernel/include/common.h
index 269d3f3..85079b5 100644
--- a/kernel/include/common.h
+++ b/kernel/include/common.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 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 949b012..239a53a 100644
--- a/kernel/include/drivers/serial.h
+++ b/kernel/include/drivers/serial.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 9fd1ac3..f060c7f 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-2025 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 e12dc86..8412b9e 100644
--- a/kernel/include/kernel/halt.h
+++ b/kernel/include/kernel/halt.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 5453cb1..6a15fae 100644
--- a/kernel/include/kernel/io.h
+++ b/kernel/include/kernel/io.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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/stdio.h b/kernel/include/libk/stdio.h
index 76f52d3..66c619a 100644
--- a/kernel/include/libk/stdio.h
+++ b/kernel/include/libk/stdio.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 7bc38d3..c5e2236 100644
--- a/kernel/include/libk/string.h
+++ b/kernel/include/libk/string.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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/mm/memory_map.h b/kernel/include/mm/memory_map.h
index 5a80aa3..a02daa6 100644
--- a/kernel/include/mm/memory_map.h
+++ b/kernel/include/mm/memory_map.h
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 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/mm/multiboot.h b/kernel/include/mm/multiboot.h
index 5463cfb..2a25bcd 100644
--- a/kernel/include/mm/multiboot.h
+++ b/kernel/include/mm/multiboot.h
@@ -1,5 +1,5 @@
/* Copyright (C) 1999,2003,2007,2008,2009,2010 Free Software Foundation, Inc.
- * Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
diff --git a/kernel/kernel/halt.c b/kernel/kernel/halt.c
index 438407f..012672e 100644
--- a/kernel/kernel/halt.c
+++ b/kernel/kernel/halt.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 427dfbf..5cb31b9 100644
--- a/kernel/kernel/kernel.c
+++ b/kernel/kernel/kernel.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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/stack_smashing_protector.c b/kernel/kernel/stack_smashing_protector.c
index d879c07..1c0c7d7 100644
--- a/kernel/kernel/stack_smashing_protector.c
+++ b/kernel/kernel/stack_smashing_protector.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 be30179..e9711fe 100644
--- a/kernel/libk/printk.c
+++ b/kernel/libk/printk.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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 4ea4279..4d8e26b 100644
--- a/kernel/libk/strlen.c
+++ b/kernel/libk/strlen.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2024-2025 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/mm/memory_map.c b/kernel/mm/memory_map.c
index c6aefee..41c1142 100644
--- a/kernel/mm/memory_map.c
+++ b/kernel/mm/memory_map.c
@@ -1,6 +1,6 @@
/*
* CMOS
- * Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
+ * Copyright (C) 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 5583cdb..96d0e72 100755
--- a/scripts/build-toolchain.sh
+++ b/scripts/build-toolchain.sh
@@ -2,7 +2,7 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 ee96f8c..f6c10fa 100755
--- a/scripts/fetch-toolchain.sh
+++ b/scripts/fetch-toolchain.sh
@@ -2,7 +2,7 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 f3fa7c6..8211b2e 100644
--- a/toolchain/Makefile
+++ b/toolchain/Makefile
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 6a5bf6f..95d5a15 100644
--- a/toolchain/cross_binutils.mk
+++ b/toolchain/cross_binutils.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 0aed8ad..a3a84cc 100644
--- a/toolchain/cross_gcc.mk
+++ b/toolchain/cross_gcc.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 f2ae3fa..ce6c65c 100644
--- a/toolchain/host_binutils.mk
+++ b/toolchain/host_binutils.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 bb581ce..90c5192 100644
--- a/toolchain/host_gcc.mk
+++ b/toolchain/host_gcc.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024-2025 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 bad7fff..6da8dcd 100644
--- a/toolchain/utils.mk
+++ b/toolchain/utils.mk
@@ -1,6 +1,6 @@
#
# CMOS
-# Copyright (C) 2024-2025 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