ed03c517ad
Still need to do proper loading of the ELF sections somewhere, but other than that, we've got a standard interface now. Needs a syscall so we can write an insmod or something like that.
20 lines
162 B
Plaintext
20 lines
162 B
Plaintext
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text*)
|
|
*(.rodata)
|
|
. = ALIGN(4096);
|
|
}
|
|
.data :
|
|
{
|
|
*(.data*)
|
|
. = ALIGN(4096);
|
|
}
|
|
.bss :
|
|
{
|
|
*(.bss*)
|
|
. = ALIGN(4096);
|
|
}
|
|
}
|