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

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

Revision 1.1.1.1 (vendor branch), Tue Jun 3 09:38:46 2008 UTC (15 years, 11 months ago) by nbrk
Branch: MAIN, KOHSUKE
CVS Tags: PREX_0_8_BASE, PREX_0_7_BASE, HEAD
Changes since 1.1: +0 -0 lines

Yeah, this is an initial import of Prex, portable real-time microkernel 
operating system. I wanna hack it for non-profit but fun, so let it in.

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

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

	. = ALIGN(32);
	.rodata : {
		*(.rodata)
		*(.rodata.*)
	}

	. = ALIGN(32);
	.data : {
		*(.data)
	}

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

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