Commit 9bf59424 authored by Denys Vlasenko's avatar Denys Vlasenko Committed by Michal Marek
Browse files

Rename .text.startup to .text..startup.

parent 819d6762
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

#define SRAM_START 0xff4000

	.section	.text.startup
	.section	.text..startup
	.global	startup
startup:
	mov.l	#SRAM_START+0x8000, sp
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ SECTIONS
        {
        __stext = . ;
	__text = .;
	       *(.text.startup)
	       *(.text..startup)
	       *(.text)
        __etext = . ;
        }