[BACK]Return to i386-pc.ld CVS log [TXT][DIR] Up to [local] / prex / usr / arch / i386

File: [local] / prex / usr / arch / i386 / i386-pc.ld (download)

Revision 1.1.1.1 (vendor branch), Tue Aug 19 12:46:57 2008 UTC (15 years, 10 months ago) by nbrk
Branch: MAIN, KOHSUKE
CVS Tags: PREX_0_8_BASE, HEAD
Changes since 1.1: +0 -0 lines

Initial import of Prex, Portable Real-time Embedded POSIX microkernel system.
I have totally new directions in my development (more focused on real hardware, not virtual one).

Old hacks are available in prex-old module. They will be carefully re-designed and merged soon.

OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
OUTPUT_ARCH(i386)
ENTRY(_start)
SECTIONS
{
	. = 0x08048000 + SIZEOF_HEADERS ;

	.text : {
		*(.text)
	} = 0x9090

	. = ALIGN(32);

	.rodata : {
		*(.rodata)
		*(.rodata.*)
	}

	. = ALIGN (0x1000);
	.data : {
		*(.data)
	}

	.bss . : {
		*(.bss)
		*(COMMON)
	}

	/DISCARD/ : { *(.comment .note) }
}