limine update

This commit is contained in:
boreddevnl
2026-03-01 18:51:54 +01:00
parent 67640ec8db
commit 22dd21c580
14 changed files with 24 additions and 23 deletions

View File

@@ -1997,7 +1997,7 @@ static void create_ramfs_files(void) {
"- `iso_root/` - ISO filesystem layout (generated during build)\n"
"- `limine/` - Limine bootloader files (downloaded automatically)\n"
"- `linker.ld` - Linker script for x86_64 ELF\n"
"- `limine.cfg` - Limine bootloader configuration\n"
"- `limine.conf` - Limine bootloader configuration\n"
"- `Makefile` - Build configuration and targets\n\n"
"## License\n\n"
"Copyright (C) 2024-2026 boreddevnl\n\n"

Binary file not shown.

View File

@@ -177,9 +177,6 @@ void kmain(void) {
if (fh && fh->valid) {
int written = fat32_write(fh, mod->address, mod->size);
fat32_close(fh);
serial_write("[DEBUG] Module successfully copied to RAMFS. Written bytes: ");
serial_write_num(written);
serial_write("\n");
} else {
serial_write("[DEBUG] ERROR: Failed to create file in RAMFS for module: ");
serial_write(clean_path);