os-k/build/kernel.ld

79 lines
2.6 KiB
Plaintext
Raw Normal View History

/*----------------------------------------------------------------------------//
2020-09-27 17:33:48 +02:00
// OS on Kaleid //
// //
// Desc: OS/K KERNEL LINKER //
// (x86_64 architecture only) //
// //
// //
// Copyright © 2018-2020 The OS/K Team //
// //
// This file is part of OS/K. //
// //
// OS/K is free software: you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation, either version 3 of the License, or //
// (at your option) any later version. //
// //
// OS/K is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
//----------------------------------------------------------------------------*/
2018-12-24 18:13:58 +01:00
2019-05-14 14:39:44 +02:00
ENTRY(BtStartLoader) /* the name of the entry label */
SECTIONS {
2019-11-11 18:32:22 +01:00
. = 0x00100000; /* the code should be loaded at 1 MB */
.boot ALIGN (0x1000) :
{
*(.multiboot)
2019-11-11 18:32:22 +01:00
*(.joke)
}
.text ALIGN (0x1000) :
2018-12-24 18:13:58 +01:00
{
2019-12-21 13:55:02 +01:00
_text = .;
*(.text)
2019-12-21 13:55:02 +01:00
_text_end = .;
2018-12-24 18:13:58 +01:00
}
.data ALIGN (0x1000) :
{
_data = .;
*(.data)
2019-12-21 13:55:02 +01:00
_data_end = .;
}
.eh_frame ALIGN (0x1000) :
{
_ehframe = .;
*(.eh_frame)
}
.rodata ALIGN (0x1000) :
{
2019-12-21 13:55:02 +01:00
_rodata = .;
*(.rodata)
2019-12-21 13:55:02 +01:00
_rodata_end = .;
}
.bss ALIGN (0x1000) :
{
*(.bss)
}
/DISCARD/ :
{
*(.comment)
}
2019-03-25 23:10:06 +01:00
kernelEnd = .;
2018-12-24 18:13:58 +01:00
}
2020-01-09 00:31:22 +01:00