* conf/Makefile.common (STRIPFLAGS_KERNEL): Add -F elf32-i386 and
-R .drectve on cygwin.
* conf/i386-pc-cygwin-img-ld.sc: Merge rdata and pdata into data.
* configure.ac: Use $(top_builddir) in TARGET_OBJ2ELF.
(COND_CYGWIN): New condition.
* grub-core/Makefile.am (%.mod): Set TARGET_OBJ2ELF.
* grub-core/genmod.sh.in: Use ${TARGET_OBJ2ELF} and
not @TARGET_OBJ2ELF@.
* util/grub-pe2elf.c (write_symbol_table): Use pe_symtab->type and not
type to determine whether aux is to be used.
48 lines
647 B
Scala
48 lines
647 B
Scala
/* Linker script to create grub .img files on Cygwin. */
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
start = . ;
|
|
*(.text)
|
|
etext = . ;
|
|
}
|
|
.data :
|
|
{
|
|
__data_start__ = . ;
|
|
*(.data)
|
|
__data_end__ = . ;
|
|
__rdata_start__ = . ;
|
|
*(.rdata)
|
|
__rdata_end__ = . ;
|
|
*(.pdata)
|
|
edata = . ;
|
|
}
|
|
.bss :
|
|
{
|
|
__bss_start__ = . ;
|
|
*(.bss)
|
|
__common_start__ = . ;
|
|
*(COMMON)
|
|
__bss_end__ = . ;
|
|
}
|
|
.edata :
|
|
{
|
|
*(.edata)
|
|
end = . ;
|
|
}
|
|
.stab :
|
|
{
|
|
*(.stab)
|
|
}
|
|
.stabstr :
|
|
{
|
|
*(.stabstr)
|
|
}
|
|
}
|
|
|
|
ASSERT("__rdata_end__"=="edata", ".pdata not empty")
|
|
ASSERT("__bss_end__" =="end" , ".edata not empty")
|
|
|