diff options
author | H. Nikolaus Schaller <hns@goldelico.com> | 2012-07-05 14:44:51 +0200 |
---|---|---|
committer | H. Nikolaus Schaller <hns@goldelico.com> | 2012-07-05 14:44:51 +0200 |
commit | e7eba37b4574b0ae57cb21a16061a251ae831159 (patch) | |
tree | 569d867cd4e1f94a18472fc1801fa7252ccccf74 | |
parent | 585a760e0ecee7bf62fb162c4d0380d2879cbdba (diff) | |
download | bootable_bootloader_goldelico_gta04_x-loader-e7eba37b4574b0ae57cb21a16061a251ae831159.zip bootable_bootloader_goldelico_gta04_x-loader-e7eba37b4574b0ae57cb21a16061a251ae831159.tar.gz bootable_bootloader_goldelico_gta04_x-loader-e7eba37b4574b0ae57cb21a16061a251ae831159.tar.bz2 |
fixed bug in .gitignore and added the board specific x-load.lds files
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | board/omap3530gta04/x-load.lds | 54 | ||||
-rw-r--r-- | board/omap4430panda/x-load.lds | 54 |
3 files changed, 114 insertions, 3 deletions
@@ -17,13 +17,16 @@ *.i *.lst *.symtypes +*.log # # Top-level generic files # -x-load -x-load.* -System.map +/x-load +/s-load +/x-load.* +/s-load.* +/System.map include/asm/arch include/asm/proc include/config.h diff --git a/board/omap3530gta04/x-load.lds b/board/omap3530gta04/x-load.lds new file mode 100644 index 0000000..9402f74 --- /dev/null +++ b/board/omap3530gta04/x-load.lds @@ -0,0 +1,54 @@ +/* + * November 2006 - Changed to support 3430sdp device + * Copyright (c) 2004-2006 Texas Instruments + * + * (C) Copyright 2002 + * Gary Jennejohn, DENX Software Engineering, <gj@denx.de> + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * 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", "elf32-littlearm", "elf32-littlearm") +OUTPUT_ARCH(arm) +ENTRY(_start) +SECTIONS +{ + . = 0x00000000; + + . = ALIGN(4); + .text : + { + cpu/omap3/start.o (.text) + *(.text) + } + + . = ALIGN(4); + .rodata : { *(.rodata) } + + . = ALIGN(4); + .data : { *(.data) } + + . = ALIGN(4); + .got : { *(.got) } + + . = ALIGN(4); + __bss_start = .; + .bss : { *(.bss) } + _end = .; +} diff --git a/board/omap4430panda/x-load.lds b/board/omap4430panda/x-load.lds new file mode 100644 index 0000000..e738ed3 --- /dev/null +++ b/board/omap4430panda/x-load.lds @@ -0,0 +1,54 @@ +/* + * November 2006 - Changed to support 3430sdp device + * Copyright (c) 2004-2006 Texas Instruments + * + * (C) Copyright 2002 + * Gary Jennejohn, DENX Software Engineering, <gj@denx.de> + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * 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", "elf32-littlearm", "elf32-littlearm") +OUTPUT_ARCH(arm) +ENTRY(_start) +SECTIONS +{ + . = 0x00000000; + + . = ALIGN(4); + .text : + { + cpu/omap4/start.o (.text) + *(.text) + } + + . = ALIGN(4); + .rodata : { *(.rodata) } + + . = ALIGN(4); + .data : { *(.data) } + + . = ALIGN(4); + .got : { *(.got) } + + . = ALIGN(4); + __bss_start = .; + .bss : { *(.bss) } + _end = .; +} |