Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 2 | /* |
Mike Frysinger | ba15072 | 2012-02-26 14:13:31 -0500 | [diff] [blame] | 3 | * Copyright (c) 2011-2012 The Chromium OS Authors. |
Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
5 | * found in the LICENSE file. | ||||
Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 6 | */ |
7 | |||||
8 | SECTIONS | ||||
9 | { | ||||
Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 10 | |
Marek Vasut | 607092a | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 11 | . = ALIGN(4); |
12 | .u_boot_list : { | ||||
Albert ARIBAUD | c24895e | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 13 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 607092a | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 14 | } |
15 | |||||
Marek BehĂșn | 184c4af | 2021-05-20 13:24:06 +0200 | [diff] [blame] | 16 | _u_boot_sandbox_getopt : { |
17 | *(.u_boot_sandbox_getopt_start) | ||||
18 | *(.u_boot_sandbox_getopt) | ||||
19 | *(.u_boot_sandbox_getopt_end) | ||||
20 | } | ||||
Simon Glass | 8a3e035 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 21 | |
Alexander Graf | 41cc3b9 | 2018-08-07 00:29:01 +0200 | [diff] [blame] | 22 | .__efi_runtime_start : { |
Simon Glass | 43c4205 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 23 | *(.__efi_runtime_start) |
24 | } | ||||
25 | |||||
26 | .efi_runtime : { | ||||
Simon Glass | 20f2b0f | 2018-08-08 03:54:16 -0600 | [diff] [blame] | 27 | *(efi_runtime_text) |
28 | *(efi_runtime_data) | ||||
Simon Glass | 43c4205 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 29 | } |
30 | |||||
31 | .__efi_runtime_stop : { | ||||
32 | *(.__efi_runtime_stop) | ||||
33 | } | ||||
34 | |||||
35 | .efi_runtime_rel_start : | ||||
36 | { | ||||
37 | *(.__efi_runtime_rel_start) | ||||
38 | } | ||||
39 | |||||
40 | .efi_runtime_rel : { | ||||
Simon Glass | 20f2b0f | 2018-08-08 03:54:16 -0600 | [diff] [blame] | 41 | *(.relefi_runtime_text) |
42 | *(.relefi_runtime_data) | ||||
Simon Glass | 43c4205 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 43 | } |
44 | |||||
45 | .efi_runtime_rel_stop : | ||||
46 | { | ||||
47 | *(.__efi_runtime_rel_stop) | ||||
48 | } | ||||
Heinrich Schuchardt | caf5d8c | 2021-03-23 12:37:47 +0100 | [diff] [blame] | 49 | |
50 | .dynsym : | ||||
51 | { | ||||
52 | __dyn_sym_start = .; | ||||
53 | *(.dynsym) | ||||
54 | __dyn_sym_end = .; | ||||
55 | } | ||||
Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 56 | } |
57 | |||||
58 | INSERT BEFORE .data; |