mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 12:27:36 +00:00
Revert "Kernel/x86: Bake the Prekernel and the Kernel into one image"
Some hardware/software configurations crash KVM as soon as we try to
start Serenity. The exact cause is currently unknown, so just fully
revert it for now.
This reverts commit 897c4e5145
.
This commit is contained in:
parent
a8d08357c9
commit
9ab598af49
10 changed files with 50 additions and 81 deletions
|
@ -69,8 +69,6 @@ SECTIONS
|
|||
start_of_kernel_data = .;
|
||||
*(.data*)
|
||||
end_of_kernel_data = .;
|
||||
. = ALIGN(4K);
|
||||
*(.heap)
|
||||
} :data
|
||||
|
||||
.ro_after_init ALIGN(4K) : AT(ADDR(.ro_after_init))
|
||||
|
@ -87,6 +85,9 @@ SECTIONS
|
|||
*(COMMON)
|
||||
*(.bss*)
|
||||
end_of_kernel_bss = .;
|
||||
|
||||
. = ALIGN(4K);
|
||||
*(.heap)
|
||||
} :bss
|
||||
|
||||
.dynamic ALIGN(4K) : AT (ADDR(.dynamic))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue