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 | |
Simon Glass | 0c6be93 | 2022-03-27 14:26:18 -0600 | [diff] [blame] | 11 | . = ALIGN(32); |
Andrew Scull | 99e2fbc | 2022-05-30 10:00:04 +0000 | [diff] [blame] | 12 | __u_boot_list : { |
13 | KEEP(*(SORT(__u_boot_list*))); | ||||
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 14 | } |
15 | |||||
Marek BehĂșn | d1f81fd | 2021-05-20 13:24:06 +0200 | [diff] [blame] | 16 | _u_boot_sandbox_getopt : { |
Andrew Scull | 0648b13 | 2022-05-30 10:00:03 +0000 | [diff] [blame] | 17 | *(_u_boot_sandbox_getopt_start) |
Heinrich Schuchardt | be6a249 | 2023-10-24 08:30:47 +0200 | [diff] [blame] | 18 | KEEP(*(_u_boot_sandbox_getopt)) |
Andrew Scull | 0648b13 | 2022-05-30 10:00:03 +0000 | [diff] [blame] | 19 | *(_u_boot_sandbox_getopt_end) |
Marek BehĂșn | d1f81fd | 2021-05-20 13:24:06 +0200 | [diff] [blame] | 20 | } |
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 21 | |
Andrew Scull | aac53d3 | 2022-05-30 10:00:02 +0000 | [diff] [blame] | 22 | efi_runtime_start : { |
23 | *(___efi_runtime_start) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 24 | } |
25 | |||||
Andrew Scull | aac53d3 | 2022-05-30 10:00:02 +0000 | [diff] [blame] | 26 | efi_runtime : { |
Simon Glass | 7bf07cf | 2018-08-08 03:54:16 -0600 | [diff] [blame] | 27 | *(efi_runtime_text) |
28 | *(efi_runtime_data) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 29 | } |
30 | |||||
Andrew Scull | aac53d3 | 2022-05-30 10:00:02 +0000 | [diff] [blame] | 31 | efi_runtime_stop : { |
32 | *(___efi_runtime_stop) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 33 | } |
34 | |||||
Andrew Scull | aac53d3 | 2022-05-30 10:00:02 +0000 | [diff] [blame] | 35 | efi_runtime_rel_start : { |
36 | *(___efi_runtime_rel_start) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 37 | } |
38 | |||||
Andrew Scull | aac53d3 | 2022-05-30 10:00:02 +0000 | [diff] [blame] | 39 | efi_runtime_rel : { |
Simon Glass | 7bf07cf | 2018-08-08 03:54:16 -0600 | [diff] [blame] | 40 | *(.relefi_runtime_text) |
41 | *(.relefi_runtime_data) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 42 | } |
43 | |||||
Andrew Scull | aac53d3 | 2022-05-30 10:00:02 +0000 | [diff] [blame] | 44 | efi_runtime_rel_stop : { |
45 | *(___efi_runtime_rel_stop) | ||||
Simon Glass | bb223b7 | 2018-05-16 09:42:23 -0600 | [diff] [blame] | 46 | } |
Heinrich Schuchardt | e502122 | 2021-03-23 12:37:47 +0100 | [diff] [blame] | 47 | |
48 | .dynsym : | ||||
49 | { | ||||
50 | __dyn_sym_start = .; | ||||
51 | *(.dynsym) | ||||
52 | __dyn_sym_end = .; | ||||
53 | } | ||||
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 54 | } |
55 | |||||
56 | INSERT BEFORE .data; |