[BACK]Return to vmlinux.lds.S CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / m32r / boot / compressed

File: [Development] / linux-2.6-xfs / arch / m32r / boot / compressed / vmlinux.lds.S (download)

Revision 1.1, Fri Oct 1 15:10:15 2004 UTC (13 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN

Upgrade kernel to 2.6.9-rc3 and kdb to 4.4
Merge of 2.6.x-xfs-melb:linux:19628a by kenmcd.

#include <linux/config.h>

OUTPUT_ARCH(m32r)
ENTRY(startup)
SECTIONS
{
  . = CONFIG_MEMORY_START + 0x00400000;

  _text = .;
  .text : { *(.text) } = 0
  .rodata : { *(.rodata) }
  _etext = .;

  . = ALIGN(32) + (. & (32 - 1));
  .data : { *(.data) }
  _edata  =  .;

  . = ALIGN(32 / 8);
  __bss_start = .;
  .bss : { *(.bss) }
  . = ALIGN(32 / 8);
  _end = . ;
}