aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-01-06 02:04:41 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-01-06 02:04:41 -0500
commitbc8de8888205703b92d0f8fb7edecad25c94c0a9 (patch)
treebddc889fcf5ffa49cfb7d8f7c7d64765df0764e8
parent942f6d544be8aec37eabdd85bb965fe5be6afc8d (diff)
misc: cmos->bubbl
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
-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/linker.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/physical_mm.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/fetch-toolchain.sh2
-rwxr-xr-xscripts/package-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
34 files changed, 34 insertions, 34 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1370de4..50a78d9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
cmake_minimum_required(VERSION 3.21)
-project(CMOS)
+project(bubbl)
add_subdirectory(kernel)
diff --git a/README.md b/README.md
index c232a09..3fab9cd 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# CMOS
+# Bubbl
An Operating System for The x86 Architecture.
diff --git a/env.sh b/env.sh
index 9a6d013..93e729c 100644
--- a/env.sh
+++ b/env.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/kernel/boot/gdt/gdt.c b/kernel/boot/gdt/gdt.c
index 9066620..4401a02 100644
--- a/kernel/boot/gdt/gdt.c
+++ b/kernel/boot/gdt/gdt.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/boot/init/boot.s b/kernel/boot/init/boot.s
index 4ae9a0e..a1a6ee5 100644
--- a/kernel/boot/init/boot.s
+++ b/kernel/boot/init/boot.s
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/boot/init/crti.s b/kernel/boot/init/crti.s
index ca20f2c..8f86ffa 100644
--- a/kernel/boot/init/crti.s
+++ b/kernel/boot/init/crti.s
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/boot/init/crtn.s b/kernel/boot/init/crtn.s
index ee88985..8a20b9e 100644
--- a/kernel/boot/init/crtn.s
+++ b/kernel/boot/init/crtn.s
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/boot/linker.ld b/kernel/boot/linker.ld
index d98714f..a33d966 100644
--- a/kernel/boot/linker.ld
+++ b/kernel/boot/linker.ld
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/drivers/serial/serial.c b/kernel/drivers/serial/serial.c
index 3a289b9..fa465da 100644
--- a/kernel/drivers/serial/serial.c
+++ b/kernel/drivers/serial/serial.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/drivers/vga_text_buffer/vga_text_buffer.c b/kernel/drivers/vga_text_buffer/vga_text_buffer.c
index 6f79f46..e1e1781 100644
--- a/kernel/drivers/vga_text_buffer/vga_text_buffer.c
+++ b/kernel/drivers/vga_text_buffer/vga_text_buffer.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/boot/gdt.h b/kernel/include/boot/gdt.h
index 05d670b..08710f2 100644
--- a/kernel/include/boot/gdt.h
+++ b/kernel/include/boot/gdt.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/common.h b/kernel/include/common.h
index c0f34b5..52076fa 100644
--- a/kernel/include/common.h
+++ b/kernel/include/common.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/drivers/serial.h b/kernel/include/drivers/serial.h
index 7555367..57f7aa2 100644
--- a/kernel/include/drivers/serial.h
+++ b/kernel/include/drivers/serial.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/drivers/vga_text_buffer.h b/kernel/include/drivers/vga_text_buffer.h
index e09bf2e..de498a3 100644
--- a/kernel/include/drivers/vga_text_buffer.h
+++ b/kernel/include/drivers/vga_text_buffer.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/kernel/halt.h b/kernel/include/kernel/halt.h
index 8412b9e..db511cf 100644
--- a/kernel/include/kernel/halt.h
+++ b/kernel/include/kernel/halt.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/kernel/io.h b/kernel/include/kernel/io.h
index 6a15fae..f58bd2d 100644
--- a/kernel/include/kernel/io.h
+++ b/kernel/include/kernel/io.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/libk/stdio.h b/kernel/include/libk/stdio.h
index 66c619a..8caebed 100644
--- a/kernel/include/libk/stdio.h
+++ b/kernel/include/libk/stdio.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/libk/string.h b/kernel/include/libk/string.h
index c5e2236..65de99e 100644
--- a/kernel/include/libk/string.h
+++ b/kernel/include/libk/string.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/mm/memory_map.h b/kernel/include/mm/memory_map.h
index cf798b5..90528c4 100644
--- a/kernel/include/mm/memory_map.h
+++ b/kernel/include/mm/memory_map.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/include/mm/physical_mm.h b/kernel/include/mm/physical_mm.h
index 461016c..7bda283 100644
--- a/kernel/include/mm/physical_mm.h
+++ b/kernel/include/mm/physical_mm.h
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/kernel/halt.c b/kernel/kernel/halt.c
index 012672e..2640829 100644
--- a/kernel/kernel/halt.c
+++ b/kernel/kernel/halt.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/kernel/kernel.c b/kernel/kernel/kernel.c
index d1cc6f1..7b05f65 100644
--- a/kernel/kernel/kernel.c
+++ b/kernel/kernel/kernel.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/kernel/stack_smashing_protector.c b/kernel/kernel/stack_smashing_protector.c
index 1c0c7d7..a00e392 100644
--- a/kernel/kernel/stack_smashing_protector.c
+++ b/kernel/kernel/stack_smashing_protector.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/libk/printk.c b/kernel/libk/printk.c
index e9711fe..ee84fa4 100644
--- a/kernel/libk/printk.c
+++ b/kernel/libk/printk.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/libk/strlen.c b/kernel/libk/strlen.c
index 4d8e26b..69e499f 100644
--- a/kernel/libk/strlen.c
+++ b/kernel/libk/strlen.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/kernel/mm/memory_map.c b/kernel/mm/memory_map.c
index 737f0ab..d7af229 100644
--- a/kernel/mm/memory_map.c
+++ b/kernel/mm/memory_map.c
@@ -1,5 +1,5 @@
/*
- * CMOS
+ * bubbl
* Copyright (C) 2025 Raghuram Subramani <raghus2247@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
diff --git a/scripts/fetch-toolchain.sh b/scripts/fetch-toolchain.sh
index fdf22ca..f0f2397 100755
--- a/scripts/fetch-toolchain.sh
+++ b/scripts/fetch-toolchain.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/scripts/package-toolchain.sh b/scripts/package-toolchain.sh
index 96d0e72..03ca723 100755
--- a/scripts/package-toolchain.sh
+++ b/scripts/package-toolchain.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/toolchain/Makefile b/toolchain/Makefile
index bd49ea5..004ca79 100644
--- a/toolchain/Makefile
+++ b/toolchain/Makefile
@@ -1,5 +1,5 @@
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/toolchain/cross_binutils.mk b/toolchain/cross_binutils.mk
index 95d5a15..dfdea3e 100644
--- a/toolchain/cross_binutils.mk
+++ b/toolchain/cross_binutils.mk
@@ -1,5 +1,5 @@
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/toolchain/cross_gcc.mk b/toolchain/cross_gcc.mk
index a3a84cc..64e6e83 100644
--- a/toolchain/cross_gcc.mk
+++ b/toolchain/cross_gcc.mk
@@ -1,5 +1,5 @@
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/toolchain/host_binutils.mk b/toolchain/host_binutils.mk
index ce6c65c..3b7ab61 100644
--- a/toolchain/host_binutils.mk
+++ b/toolchain/host_binutils.mk
@@ -1,5 +1,5 @@
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/toolchain/host_gcc.mk b/toolchain/host_gcc.mk
index 90c5192..a0aa068 100644
--- a/toolchain/host_gcc.mk
+++ b/toolchain/host_gcc.mk
@@ -1,5 +1,5 @@
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/toolchain/utils.mk b/toolchain/utils.mk
index 6da8dcd..c196d80 100644
--- a/toolchain/utils.mk
+++ b/toolchain/utils.mk
@@ -1,5 +1,5 @@
#
-# CMOS
+# bubbl
# Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
#
# This program is free software: you can redistribute it and/or modify