diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index 4463c481ff..56e253a644 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -1656,7 +1656,7 @@ int Process::sys$uname(utsname* buf) { if (!validate_write_typed(buf)) return -EFAULT; - strcpy(buf->sysname, "Serenity"); + strcpy(buf->sysname, "SerenityOS"); strcpy(buf->release, "1.0-dev"); strcpy(buf->version, "FIXME"); strcpy(buf->machine, "i686"); diff --git a/Kernel/grub.cfg b/Kernel/grub.cfg index 9daee90c41..1b4534d88d 100644 --- a/Kernel/grub.cfg +++ b/Kernel/grub.cfg @@ -1,11 +1,11 @@ timeout=1 -menuentry 'Serenity (normal)' { +menuentry 'SerenityOS (normal)' { root=hd0,1 multiboot /boot/kernel root=/dev/hda1 } -menuentry 'Serenity (with serial debug)' { +menuentry 'SerenityOS (with serial debug)' { root=hd0,1 multiboot /boot/kernel serial_debug root=/dev/hda1 } diff --git a/Kernel/grub_gpt.cfg b/Kernel/grub_gpt.cfg index c222d06af4..b890913116 100644 --- a/Kernel/grub_gpt.cfg +++ b/Kernel/grub_gpt.cfg @@ -1,11 +1,11 @@ timeout=1 -menuentry 'Serenity (normal)' { +menuentry 'SerenityOS (normal)' { root=hd0,2 multiboot /boot/kernel root=/dev/hda2 } -menuentry 'Serenity (with serial debug)' { +menuentry 'SerenityOS (with serial debug)' { root=hd0,2 multiboot /boot/kernel serial_debug root=/dev/hda2 } diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 803f3d065e..f85640d9b7 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -275,7 +275,7 @@ extern "C" [[noreturn]] void init(u32 physical_address_for_kernel_page_tables) tty1 = new VirtualConsole(1); VirtualConsole::switch_to(0); - kprintf("Starting Serenity Operating System...\n"); + kprintf("Starting SerenityOS...\n"); MemoryManager::initialize(physical_address_for_kernel_page_tables); diff --git a/Kernel/run b/Kernel/run index 2affd27203..303a7d6c17 100755 --- a/Kernel/run +++ b/Kernel/run @@ -65,7 +65,7 @@ elif [ "$1" = "qcmd" ]; then SERENITY_KERNEL_CMDLINE="$SERENITY_KERNEL_CMDLINE $1" done echo "Starting SerenityOS, Commandline: ${SERENITY_KERNEL_CMDLINE}" - # ./run: qemu with serenity with custom commandline + # ./run: qemu with SerenityOS with custom commandline $SERENITY_QEMU_BIN \ $SERENITY_COMMON_QEMU_ARGS \ -device e1000 \