summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalin Marinas <catalin.marinas@arm.com>2009-12-17 09:55:03 +0000
committerCatalin Marinas <catalin.marinas@arm.com>2009-12-17 09:55:03 +0000
commit83c4d2a2019555ef8c6e74885496563c6e171225 (patch)
treea98b4a7508ccf236778346473ce64c767d41b7a6
parent28fce2618e3b12680d7a41dc64e5c35a8094228e (diff)
Deleted original model.lds (it will be autogenerated).
-rw-r--r--model.lds46
1 files changed, 0 insertions, 46 deletions
diff --git a/model.lds b/model.lds
deleted file mode 100644
index e61dd4c..0000000
--- a/model.lds
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * boot.S - simple register setup code for stand-alone Linux booting
- *
- * Copyright (C) 2009 ARM Limited
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-OUTPUT_FORMAT("elf32-littlearm")
-OUTPUT_ARCH(arm)
-TARGET(binary)
-
-INPUT(./uImage)
-INPUT(./filesystem.cpio.gz)
-INPUT(./boot.o)
-
-PHYS_OFFSET = 0x70000000;
-
-SECTIONS
-{
- . = PHYS_OFFSET;
- .text : { boot.o }
-
- . = PHYS_OFFSET + 0x8000 - 0x40;
- kernel = . + 0x40;
- .kernel : { ./uImage }
-
- . = PHYS_OFFSET + 0x00800000;
- filesystem = .;
- .filesystem : { ./filesystem.cpio.gz }
- fs_size = . - filesystem;
-
- .data : { *(.data) }
- .bss : { *(.bss) }
-}