Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 413541dd66d51f791a0b169d9b9014e4f56be13c authored by Linus Torvalds on 22 December 2013, 21:08:32 UTC
Linux 3.13-rc5
Tip revision: 413541d
rescue_v10.lds
MEMORY 
	{
	flash : ORIGIN = 0x00000000,
	        LENGTH = 0x00100000
	}

SECTIONS
{
	.text :
	{
		stext = . ;
		*(.text)
		etext = . ;
	} > flash
	.data :
	{
		*(.data)
		edata = . ;
	} > flash
}
back to top