2019-03-08 08:43:44 +01:00
|
|
|
/*----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Desc: OS/K KERNEL LINKER //
|
|
|
|
// (x86_64 architecture only) //
|
|
|
|
// //
|
|
|
|
// //
|
|
|
|
// Copyright © 2018-2019 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-03-08 08:43:44 +01:00
|
|
|
|
2019-05-14 14:39:44 +02:00
|
|
|
ENTRY(BtStartLoader) /* the name of the entry label */
|
2019-03-08 08:43:44 +01:00
|
|
|
|
|
|
|
SECTIONS {
|
2019-11-11 18:32:22 +01:00
|
|
|
|
2019-03-08 08:43:44 +01:00
|
|
|
. = 0x00100000; /* the code should be loaded at 1 MB */
|
|
|
|
|
2019-05-11 22:26:40 +02:00
|
|
|
.boot ALIGN (0x1000) :
|
2019-03-08 08:43:44 +01:00
|
|
|
{
|
2019-05-11 22:26:40 +02:00
|
|
|
*(.multiboot)
|
2019-11-11 18:32:22 +01:00
|
|
|
*(.joke)
|
2019-03-08 08:43:44 +01:00
|
|
|
}
|
|
|
|
|
2019-05-11 22:26:40 +02:00
|
|
|
.text ALIGN (0x1000) :
|
2018-12-24 18:13:58 +01:00
|
|
|
{
|
2019-12-21 13:55:02 +01:00
|
|
|
_text = .;
|
2019-05-11 22:26:40 +02:00
|
|
|
*(.text)
|
2019-12-21 13:55:02 +01:00
|
|
|
_text_end = .;
|
2018-12-24 18:13:58 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 08:43:44 +01:00
|
|
|
.data ALIGN (0x1000) :
|
|
|
|
{
|
|
|
|
_data = .;
|
|
|
|
*(.data)
|
2019-12-21 13:55:02 +01:00
|
|
|
_data_end = .;
|
2019-03-08 08:43:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.eh_frame ALIGN (0x1000) :
|
|
|
|
{
|
|
|
|
_ehframe = .;
|
|
|
|
*(.eh_frame)
|
|
|
|
}
|
|
|
|
|
2019-05-11 22:26:40 +02:00
|
|
|
.rodata ALIGN (0x1000) :
|
2019-03-08 08:43:44 +01:00
|
|
|
{
|
2019-12-21 13:55:02 +01:00
|
|
|
_rodata = .;
|
2019-05-11 22:26:40 +02:00
|
|
|
*(.rodata)
|
2019-12-21 13:55:02 +01:00
|
|
|
_rodata_end = .;
|
2019-03-08 08:43:44 +01:00
|
|
|
}
|
|
|
|
|
2019-05-11 22:26:40 +02:00
|
|
|
.bss ALIGN (0x1000) :
|
2019-03-08 08:43:44 +01:00
|
|
|
{
|
2019-05-11 22:26:40 +02:00
|
|
|
*(.bss)
|
2019-03-08 08:43:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/DISCARD/ :
|
|
|
|
{
|
2019-05-11 22:26:40 +02:00
|
|
|
*(.comment)
|
2019-03-08 08:43:44 +01:00
|
|
|
}
|
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
|
|
|
|