os/arch/i686/linker.ld

49 lines
829 B
Plaintext
Raw Normal View History

2024-07-11 08:56:52 +02:00
/* The bootloader will look at this image and start execution at the symbol
designated as the entry point. */
ENTRY(_start)
/* Tell where the various sections of the object files will be put in the final
kernel image. */
SECTIONS
{
2024-11-27 21:57:18 +01:00
. = 1M;
_kernel_start = .;
.multiboot.data :
{
*(.multiboot.data)
}
2024-07-11 08:56:52 +02:00
2024-11-27 21:57:18 +01:00
.multiboot.text :
{
*(.multiboot.text)
}
. += 0xC0000000;
.text BLOCK (4K) : AT (ADDR (.text) - 0xC0000000)
2024-07-11 08:56:52 +02:00
{
*(.text)
}
/* Read-only data. */
2024-11-27 21:57:18 +01:00
.rodata BLOCK(4K) : AT (ADDR (.rodata) - 0xC0000000)
2024-07-11 08:56:52 +02:00
{
*(.rodata)
}
/* Read-write data (initialized) */
2024-11-27 21:57:18 +01:00
.data BLOCK(4K) : AT (ADDR (.data) - 0xC0000000)
2024-07-11 08:56:52 +02:00
{
*(.data)
}
/* Read-write data (uninitialized) and stack */
2024-11-27 21:57:18 +01:00
.bss BLOCK(4K) : AT (ADDR (.bss) - 0xC0000000)
2024-07-11 08:56:52 +02:00
{
*(COMMON)
*(.bss)
}
2024-11-27 21:57:18 +01:00
_kernel_end = .;
2024-07-11 08:56:52 +02:00
}