summaryrefslogtreecommitdiffstats
path: root/tools/imagetool.lds
diff options
context:
space:
mode:
authorAndreas Bießmann <andreas.devel@googlemail.com>2015-02-09 00:06:10 +0100
committerTom Rini <trini@ti.com>2015-02-16 12:41:41 -0500
commit1fddd7b63c69b8da40b5dc737db0382f473f9644 (patch)
tree013c7c68d8a517ad77252deb192817b1c58952e6 /tools/imagetool.lds
parent312aca4e6964812007c8218c0b4b0737e9e0f46a (diff)
downloadtalos-obmc-uboot-1fddd7b63c69b8da40b5dc737db0382f473f9644.tar.gz
talos-obmc-uboot-1fddd7b63c69b8da40b5dc737db0382f473f9644.zip
tools/imagetool: remove linker script
Commit a93648d197df48fa46dd55f925ff70468bd81c71 introduced linker generated lists for imagetool which is the base for some host tools (mkimage, dumpimage, et al.). Unfortunately some host tool chains do not support the used type of linker scripts. Therefore this commit broke these host-tools for them, namely FreeBSD and Darwin (OS/X). This commit tries to fix this. In order to have a clean distinction between host and embedded code space we need to introduce our own linker generated list instead of re-using the available linker_lists.h provided functionality. So we copy the implementation used in linux kernel script/mod/file2alias.c which has the very same problem (cause it is a host tool). This code also comes with an abstraction for Mach-O binary format used in Darwin systems. Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com> Cc: Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
Diffstat (limited to 'tools/imagetool.lds')
-rw-r--r--tools/imagetool.lds24
1 files changed, 0 insertions, 24 deletions
diff --git a/tools/imagetool.lds b/tools/imagetool.lds
deleted file mode 100644
index 7e92b4ac66..0000000000
--- a/tools/imagetool.lds
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright (c) 2011-2012 The Chromium OS Authors.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-SECTIONS
-{
-
- . = ALIGN(4);
- .u_boot_list : {
- KEEP(*(SORT(.u_boot_list*)));
- }
-
- __u_boot_sandbox_option_start = .;
- _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
- __u_boot_sandbox_option_end = .;
-
- __bss_start = .;
-}
-
-INSERT BEFORE .data;
OpenPOWER on IntegriCloud