diff options
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) @@ -1,4 +1,4 @@ -# CMOS +# Bubbl An Operating System for The x86 Architecture. @@ -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 |