Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 2 | /* |
Mike Frysinger | 3ab7d95 | 2012-02-26 14:13:31 -0500 | [diff] [blame] | 3 | * Copyright (c) 2011-2012 The Chromium OS Authors. |
Simon Glass | 4b0730d | 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 | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 6 | */ |
7 | |||||
8 | SECTIONS | ||||
9 | { | ||||
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 10 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 11 | . = ALIGN(4); |
12 | .u_boot_list : { | ||||
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 13 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 14 | } |
15 | |||||
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 16 | __u_boot_sandbox_option_start = .; |
17 | _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) } | ||||
18 | __u_boot_sandbox_option_end = .; | ||||
19 | |||||
Alexander Graf | 18e684d | 2018-08-07 00:29:01 +0200 | [diff] [blame] | 20 | .__efi_runtime_start : { |
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 21 | *(.__efi_runtime_start) |
22 | } | ||||
23 | |||||
24 | .efi_runtime : { | ||||
Simon Glass | 7bf07cf | 2018-08-08 03:54:16 -0600 | [diff] [blame] | 25 | *(efi_runtime_text) |
26 | *(efi_runtime_data) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 27 | } |
28 | |||||
29 | .__efi_runtime_stop : { | ||||
30 | *(.__efi_runtime_stop) | ||||
31 | } | ||||
32 | |||||
33 | .efi_runtime_rel_start : | ||||
34 | { | ||||
35 | *(.__efi_runtime_rel_start) | ||||
36 | } | ||||
37 | |||||
38 | .efi_runtime_rel : { | ||||
Simon Glass | 7bf07cf | 2018-08-08 03:54:16 -0600 | [diff] [blame] | 39 | *(.relefi_runtime_text) |
40 | *(.relefi_runtime_data) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 41 | } |
42 | |||||
43 | .efi_runtime_rel_stop : | ||||
44 | { | ||||
45 | *(.__efi_runtime_rel_stop) | ||||
46 | } | ||||
47 | |||||
Alexander Graf | 18e684d | 2018-08-07 00:29:01 +0200 | [diff] [blame] | 48 | __bss_start = .; |
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 49 | } |
50 | |||||
51 | INSERT BEFORE .data; |