mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-05 11:15:07 +01:00
118 lines
2.0 KiB
Plaintext
118 lines
2.0 KiB
Plaintext
|
/*
|
||
|
elfloader - a Free Software replacement for the Nintendo/BroadOn IOS.
|
||
|
|
||
|
Copyright (C) 2008, 2009 Hector Martin "marcan" <marcan@marcansoft.com>
|
||
|
|
||
|
This program 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, version 2.
|
||
|
|
||
|
This program 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 this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
|
||
|
*/
|
||
|
OUTPUT_FORMAT("elf32-bigarm")
|
||
|
OUTPUT_ARCH(arm)
|
||
|
EXTERN(_start)
|
||
|
ENTRY(_start)
|
||
|
|
||
|
__base_addr = 0;
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = __base_addr;
|
||
|
.header :
|
||
|
{
|
||
|
__header = .;
|
||
|
/* Entry point (offset) */
|
||
|
LONG(__code_start);
|
||
|
/* Loader size */
|
||
|
LONG(__loader_size);
|
||
|
/* ELF size */
|
||
|
LONG(0);
|
||
|
/* Boot argument? */
|
||
|
LONG(0);
|
||
|
. = ALIGN(16);
|
||
|
}
|
||
|
|
||
|
__code_start = .;
|
||
|
|
||
|
.init :
|
||
|
{
|
||
|
*(.init)
|
||
|
. = ALIGN(4);
|
||
|
}
|
||
|
|
||
|
.got :
|
||
|
{
|
||
|
__got_start = .;
|
||
|
*(.got.*)
|
||
|
*(.got)
|
||
|
. = ALIGN(4);
|
||
|
__got_end = . ;
|
||
|
}
|
||
|
|
||
|
.text :
|
||
|
{
|
||
|
*(.text.*)
|
||
|
*(.gnu.warning)
|
||
|
*(.gnu.linkonce.t*)
|
||
|
*(.glue_7)
|
||
|
*(.glue_7t)
|
||
|
. = ALIGN(4);
|
||
|
}
|
||
|
|
||
|
__text_end = . ;
|
||
|
|
||
|
.rodata :
|
||
|
{
|
||
|
*(.rodata)
|
||
|
*all.rodata*(*)
|
||
|
*(.roda)
|
||
|
*(.rodata.*)
|
||
|
*(.gnu.linkonce.r*)
|
||
|
. = ALIGN(4);
|
||
|
}
|
||
|
|
||
|
.data :
|
||
|
{
|
||
|
*(.data)
|
||
|
*(.data.*)
|
||
|
*(.gnu.linkonce.d*)
|
||
|
. = ALIGN(4);
|
||
|
}
|
||
|
|
||
|
.bss :
|
||
|
{
|
||
|
__bss_start = . ;
|
||
|
*(.dynbss)
|
||
|
*(.gnu.linkonce.b*)
|
||
|
*(.bss*)
|
||
|
*(.sbss*)
|
||
|
*(COMMON)
|
||
|
. = ALIGN(32);
|
||
|
__bss_end = . ;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
__stack_end = (__bss_end);
|
||
|
__stack_addr = (__bss_end + 0x100);
|
||
|
|
||
|
__end = __stack_addr ;
|
||
|
__loader_size = __end - __code_start;
|
||
|
|
||
|
PROVIDE (__stack_end = __stack_end);
|
||
|
PROVIDE (__stack_addr = __stack_addr);
|
||
|
PROVIDE (__got_start = __got_start);
|
||
|
PROVIDE (__got_end = __got_end);
|
||
|
PROVIDE (__bss_start = __bss_start);
|
||
|
PROVIDE (__bss_end = __bss_end);
|
||
|
|