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

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

Revision 1.1.1.1 (vendor branch), Tue Jun 3 09:38:41 2008 UTC (16 years 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.

/*
 * Linker script for boot loader
 */
SECTIONS {
	. = 0x4000;
	.text . : {
		*(.text)
	}
	.rodata . : {
		*(.rodata)
	}
	.data . : {
		*(.data)
	}
	.bss . : {
		*(.bss)
		*(COMMON)
	}
	. = 0x5fff;
	.tail : {
		*(.tail)
	}
}