1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

Kernel: Rename bootloader to prekernel

There are a few occurrences of the old name that slipped through.
This commit is contained in:
Gunnar Beutner 2021-07-18 19:39:33 +02:00 committed by Andreas Kling
parent 439bed301e
commit 5ff1416076
3 changed files with 9 additions and 9 deletions

View file

@ -53,7 +53,7 @@ inline FlatPtr virtual_to_low_physical(FlatPtr virtual_)
enum class UsedMemoryRangeType {
LowMemory = 0,
Bootloader,
Prekernel,
Kernel,
BootModule,
PhysicalPages,
@ -61,7 +61,7 @@ enum class UsedMemoryRangeType {
static constexpr StringView UserMemoryRangeTypeNames[] {
"Low memory",
"Bootloader",
"Prekernel",
"Kernel",
"Boot module",
"Physical Pages"