Limine Bare Bones: Difference between revisions

Jump to navigation Jump to search
Make PIE kernel
[unchecked revision][unchecked revision]
(Misc updates for Limine 5.x)
(Make PIE kernel)
Line 152:
rodata PT_LOAD FLAGS((1 << 2)) ; /* Read only */
data PT_LOAD FLAGS((1 << 1) | (1 << 2)) ; /* Write + Read */
dynamic PT_DYNAMIC FLAGS((1 << 1) | (1 << 2)) ; /* Dynamic PHDR for relocations */
}
 
Line 179 ⟶ 180:
*(.data .data.*)
} :data
 
/* Dynamic section for relocations, both in its own PHDR and inside data PHDR */
.dynamic : {
*(.dynamic)
} :data :dynamic
 
/* NOTE: .bss needs to be the last thing mapped to :data, otherwise lots of */
Line 259 ⟶ 265:
-fno-stack-check \
-fno-lto \
-fno-PIEfPIE \
-fno-PIC \
-m64 \
-march=x86-64 \
Line 268 ⟶ 273:
-mno-sse \
-mno-sse2 \
-mno-red-zone \
-mcmodel=kernel
 
# Internal C preprocessor flags that should not be changed by the user.
Line 280 ⟶ 284:
# Internal linker flags that should not be changed by the user.
override LDFLAGS += \
-m elf_x86_64 \
-nostdlib \
-static \
-m elf_x86_64pie \
--no-dynamic-linker \
-fno-PICz text \
-z max-page-size=0x1000 \
-T linker.ld
 
# Check if the linker supports -no-pie and enable it if it does.
ifeq ($(shell $(LD) --help 2>&1 | grep 'no-pie' >/dev/null 2>&1; echo $$?),0)
override LDFLAGS += -no-pie
endif
 
# Internal nasm flags that should not be changed by the user.
Line 342 ⟶ 344:
 
# The entry name that will be displayed in the boot menu.
:myOS (KASLR off)
# We use the Limine boot protocol.
PROTOCOL=limine
 
# Disable KASLR (it is enabled by default for relocatable kernels)
KASLR=no
 
# Path to the kernel to boot. boot:/// represents the partition on which limine.cfg is located.
KERNEL_PATH=boot:///myos.elf
 
# Same thing, but with KASLR.
:myOS (KASLR on)
PROTOCOL=limine
 
KERNEL_PATH=boot:///myos.elf
</source>
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu