From 03cd291f37c1962a5b4126ed9193e236a7f8a3c8 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 24 Aug 2023 04:48:15 +0300 Subject: [PATCH] Update config --- Makefile.conf | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/Makefile.conf b/Makefile.conf index 8cda44b9..8f1f6ed1 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -1,4 +1,5 @@ -# If the OS we are building should be compiled for debugging purposes. +# If the OS we are building should be compiled +# for debugging purposes. DEBUG = 1 # Operating system name. @@ -8,14 +9,14 @@ OSNAME = Fennix OSARCH = amd64 # Kernel version. -KERNEL_VERSION = pre-alpha-0.0.0.1 +KERNEL_VERSION = dev # Which bootloader to use. # Available bootloaders: -# - lynx - Lynx (still under development) -# - limine - Limine +# - lynx - Lynx (under development) # - grub - GRUB -BOOTLOADER = limine +# - limine - Limine +BOOTLOADER = grub BUILD_KERNEL = 1 BUILD_USERSPACE = 1 @@ -29,15 +30,16 @@ COMPILER_PATH = tools/cross/bin # The path of the Limine bootloader. LIMINE_FOLDER = tools/limine -# Qemu path. If you want to use the one you have installed in your system, -# change it to /usr/bin/qemu-system- (do not include x86_64 or i386, -# it will be added automatically depending on the OSARCH) +# Qemu path. If you want to use the one +# you have installed in your system, change +# it to /usr/bin/qemu-system- +# (do not include x86_64 or i386, it will be +# added automatically depending on the OSARCH) QEMU_PATH = tools/cross/bin/qemu-system- # Set libc to use. Available options: # - internal - Use the internal libc # - musl - Use musl libc (linux syscalls) -# - mlibc - Use mlibc USE_LIBC = internal # Build all libraries as static libraries. @@ -52,6 +54,9 @@ USERSPACE_STATIC_LIBS = 0 # Make releated variables +# ----------------------- +# Do not change anything below this line unless +# you know what you are doing. ifeq ($(OSARCH), amd64) COMPILER_ARCH = x86_64-fennix-