Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68abceef authored by Roman Zippel's avatar Roman Zippel Committed by Linus Torvalds
Browse files

m68k: Put .bss at the end of the data section



Put .bss at the end of the data section

Signed-off-by: default avatarRoman Zippel <zippel@linux-m68k.org>
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8fbbae65
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -34,10 +34,10 @@ SECTIONS
	CONSTRUCTORS
	CONSTRUCTORS
	}
	}


  .bss : { *(.bss) }		/* BSS */

  . = ALIGN(16);
  . = ALIGN(16);
  .data.cacheline_aligned : { *(.data.cacheline_aligned) } :data
  .data.cacheline_aligned : { *(.data.cacheline_aligned) }

  .bss : { *(.bss) }		/* BSS */


  _edata = .;			/* End of data section */
  _edata = .;			/* End of data section */


@@ -48,7 +48,7 @@ SECTIONS
	_sinittext = .;
	_sinittext = .;
	INIT_TEXT
	INIT_TEXT
	_einittext = .;
	_einittext = .;
  }
  } :data
  .init.data : { INIT_DATA }
  .init.data : { INIT_DATA }
  . = ALIGN(16);
  . = ALIGN(16);
  __setup_start = .;
  __setup_start = .;