patch-2.4.2 linux/arch/cris/boot/compressed/decompress.ld
Next file: linux/arch/cris/boot/compressed/head.S
Previous file: linux/arch/cris/boot/compressed/README
Back to the patch index
Back to the overall index
-  Lines: 27
-  Date:
Thu Feb  8 16:32:44 2001
-  Orig file: 
v2.4.1/linux/arch/cris/boot/compressed/decompress.ld
-  Orig date: 
Wed Dec 31 16:00:00 1969
diff -u --recursive --new-file v2.4.1/linux/arch/cris/boot/compressed/decompress.ld linux/arch/cris/boot/compressed/decompress.ld
@@ -0,0 +1,26 @@
+MEMORY 
+	{
+	dram : ORIGIN = 0x40700000,
+	       LENGTH = 0x00100000
+	}
+
+SECTIONS
+{
+	.text :
+	{
+		_stext = . ;
+		*(.text)
+		*(.rodata)
+		_etext = . ;
+	} > dram
+	.data :
+	{
+		*(.data)
+		_edata = . ;
+	} > dram
+	.bss :
+	{
+		*(.bss)
+		_end = ALIGN( 0x10 ) ;
+	} > dram
+}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)