diff --git a/src/system/boot/loader/pager.cpp b/src/system/boot/loader/pager.cpp index 514a031dc9..24445e55f2 100644 --- a/src/system/boot/loader/pager.cpp +++ b/src/system/boot/loader/pager.cpp @@ -148,7 +148,7 @@ pager(const PagerTextSource& textSource) // print the statistics line at the bottom console_set_cursor(0, height - 1); - console_set_color(BLACK, WHITE); + console_set_color(BLACK, GRAY); int32 bottomLine = std::min(topLine + height - 2, lineCount - 1); printf("%" B_PRIuSIZE " - %" B_PRIuSIZE " %" B_PRIuSIZE "%%", topLine, bottomLine, (bottomLine + 1) * 100 / lineCount); diff --git a/src/system/boot/platform/bios_ia32/mmu.cpp b/src/system/boot/platform/bios_ia32/mmu.cpp index f08854973e..05cb1c68c6 100644 --- a/src/system/boot/platform/bios_ia32/mmu.cpp +++ b/src/system/boot/platform/bios_ia32/mmu.cpp @@ -578,17 +578,24 @@ mmu_init_for_kernel(void) dprintf("phys memory ranges:\n"); for (i = 0; i < gKernelArgs.num_physical_memory_ranges; i++) { - dprintf(" base 0x%08lx, length 0x%08lx\n", gKernelArgs.physical_memory_range[i].start, gKernelArgs.physical_memory_range[i].size); + dprintf(" base %#018" B_PRIxPHYSADDR ", length %#018" + B_PRIxPHYSADDR "\n", gKernelArgs.physical_memory_range[i].start, + gKernelArgs.physical_memory_range[i].size); } dprintf("allocated phys memory ranges:\n"); for (i = 0; i < gKernelArgs.num_physical_allocated_ranges; i++) { - dprintf(" base 0x%08lx, length 0x%08lx\n", gKernelArgs.physical_allocated_range[i].start, gKernelArgs.physical_allocated_range[i].size); + dprintf(" base %#018" B_PRIxPHYSADDR ", length %#018" + B_PRIxPHYSADDR "\n", + gKernelArgs.physical_allocated_range[i].start, + gKernelArgs.physical_allocated_range[i].size); } dprintf("allocated virt memory ranges:\n"); for (i = 0; i < gKernelArgs.num_virtual_allocated_ranges; i++) { - dprintf(" base 0x%08lx, length 0x%08lx\n", gKernelArgs.virtual_allocated_range[i].start, gKernelArgs.virtual_allocated_range[i].size); + dprintf(" base %#018" B_PRIxADDR ", length %#018" B_PRIxSIZE + "\n", gKernelArgs.virtual_allocated_range[i].start, + gKernelArgs.virtual_allocated_range[i].size); } } #endif