Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 8797b2c | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011-2012 The Chromium OS Authors. |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
Simon Glass | 8797b2c | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | SECTIONS |
| 9 | { |
| 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*))); |
Simon Glass | 8797b2c | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 14 | } |
| 15 | |
Simon Glass | d5cc192 | 2021-03-15 17:25:39 +1300 | [diff] [blame] | 16 | /* Private data for devices with OF_PLATDATA_RT */ |
| 17 | . = ALIGN(4); |
| 18 | .priv_data : { |
| 19 | __priv_data_start = .; |
| 20 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.priv_data*))) |
| 21 | __priv_data_end = .; |
| 22 | } |
| 23 | |
Marek BehĂșn | d1f81fd | 2021-05-20 13:24:06 +0200 | [diff] [blame] | 24 | _u_boot_sandbox_getopt : { |
Andrew Scull | 0648b13 | 2022-05-30 10:00:03 +0000 | [diff] [blame] | 25 | *(_u_boot_sandbox_getopt_start) |
| 26 | KEEP(*(_u_boot_sandbox_getopt)) |
| 27 | *(_u_boot_sandbox_getopt_end) |
Marek BehĂșn | d1f81fd | 2021-05-20 13:24:06 +0200 | [diff] [blame] | 28 | } |
Simon Glass | 8797b2c | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 29 | } |
| 30 | |
Walter Lozano | df29730 | 2020-06-25 01:10:12 -0300 | [diff] [blame] | 31 | INSERT AFTER .data; |