:: commit dddfe43874bcf45b89337499d67f4401d360ad84

mintsuki <mintsuki@protonmail.com> — 2020-06-05 19:40

parents: 5a6d6afb94

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;
         }
     }
tab: 248 wrap: offon