Make memmap less verbose
diff --git a/qloader2.bin b/qloader2.bin
index 42803045..06ed518b 100644
Binary files a/qloader2.bin and b/qloader2.bin differ
diff --git a/src/lib/memmap.c b/src/lib/memmap.c
index 78501120..73b0947c 100644
--- a/src/lib/memmap.c
+++ b/src/lib/memmap.c
@@ -167,9 +167,6 @@ void init_memmap(void) {
memmap_entries++;
}
-
- print("Memory map initialised. Current layout:\n");
- print_memmap(memmap, memmap_entries);
}
void memmap_alloc_range(uint64_t base, uint64_t length) {
@@ -217,8 +214,6 @@ void memmap_alloc_range(uint64_t base, uint64_t length) {
target->base = base;
target->length = length;
- print("Memory map changed. Current layout:\n");
- print_memmap(memmap, memmap_entries);
return;
}
}
