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

File: [local] / prex-old / boot / avr32 / ngw100 / boot.ld (download)

Revision 1.1, Tue Jul 15 22:48:16 2008 UTC (15 years, 10 months ago) by nbrk
Branch: MAIN
CVS Tags: HEAD

initial port of Prex bootldr to avr32 ngw100 platform.

SECTIONS {
	. = 0x10200000;
	.text . : {
		*(.text)
	}
	.rodata . : {
		*(.rodata)
	}
	.data . : {
		*(.data)
	}
	.bss . : {
		*(.bss)
		*(COMMON)
	}
	.tail : {
		*(.tail)
	}
}