diff options
| author | Fabian Imhof <fabian.imhof@ost.ch> | 2024-11-24 13:10:21 +0000 |
|---|---|---|
| committer | Fabian Imhof <fabian.imhof@ost.ch> | 2024-11-24 13:10:21 +0000 |
| commit | 55f32173e97fdcf4a45006b66cc4b20329a5c7af (patch) | |
| tree | d9b53c5037caf3a353f3e9cd93e7b0d6d5187240 /arch/x86_64/scripts | |
| parent | 77146c6e2dbd02661636d9424b7e51562eac30c9 (diff) | |
| download | teachos-55f32173e97fdcf4a45006b66cc4b20329a5c7af.tar.xz teachos-55f32173e97fdcf4a45006b66cc4b20329a5c7af.zip | |
implement basic heap and remap it
Diffstat (limited to 'arch/x86_64/scripts')
| -rw-r--r-- | arch/x86_64/scripts/kernel.ld | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86_64/scripts/kernel.ld b/arch/x86_64/scripts/kernel.ld index e9d245f..c3eea9c 100644 --- a/arch/x86_64/scripts/kernel.ld +++ b/arch/x86_64/scripts/kernel.ld @@ -60,9 +60,8 @@ SECTIONS } /*************************************************************************** - * Now it is time to load the 64-bit kernel code. We virtually load it into - * the upper 2GiB, while adjusting the linear load address appropriately. We - * also make sure to align the loaded data onto a page boundary. + * Now it is time to load the 64-bit kernel code. We + * make sure to align the loaded data onto a page boundary. ***************************************************************************/ .init ALIGN(4K) : AT(ADDR (.init)) { |
