head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2003.12.13.11.45.15;	author yoursun74;	state dead;
branches;
next	1.1;

1.1
date	2003.12.13.11.13.30;	author yoursun74;	state Exp;
branches;
next	;


desc
@@


1.2
log
@*** empty log message ***
@
text
@/*-------------------------------------------------------------------------
 * Filename:      ld-script
 * Version:       $Id: ld-script,v 1.1 2003/12/13 11:13:30 yoursun74 Exp $
 * Copyright:     Copyright (C) 1999, Erik Mouw
 * Author:        Erik Mouw <J.A.K.Mouw@@its.tudelft.nl>
 * Description:   ld (linker) script to make the blob bootlader.
 *                Heavily inspired by the Linux kernel linker scripts.
 * Created at:    Tue Aug 24 17:24:06 1999
 * Modified by:   Erik Mouw <J.A.K.Mouw@@its.tudelft.nl>
 * Modified at:   Sun Aug 29 14:45:54 1999
 *-----------------------------------------------------------------------*/
/*OUTPUT_FORMAT("elf32-arm", "elf32-arm", "elf32-arm")*/
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
	. = ALIGN(4);
	. = 0xc1fe0000;								/* location ġ. */
	__btext = .;
	.text : { *(.text) }
		__etext = .;

	. = ALIGN(4);
	.rodata : { *(.rodata) }
		__erodata = .;

	. = ALIGN(4);
	.data : { *(.data) }
		__edata = .;

	. = ALIGN(4);
	.got : { *(.got) }
		__egot = .;
}

@


1.1
log
@*** empty log message ***
@
text
@d3 1
a3 1
 * Version:       $Id: ld-script,v 1.3 2000/01/15 12:43:16 erikm Exp $
@

