Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 9ca517d | 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 | 9ca517d | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | SECTIONS |
| 9 | { |
| 10 | |
| 11 | . = ALIGN(4); |
| 12 | .u_boot_list : { |
| 13 | KEEP(*(SORT(.u_boot_list*))); |
| 14 | } |
| 15 | |
Simon Glass | 07f2e80 | 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 | |
Simon Glass | 9ca517d | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 24 | __u_boot_sandbox_option_start = .; |
Simon Glass | b5dfea8 | 2018-11-15 18:44:01 -0700 | [diff] [blame] | 25 | _u_boot_sandbox_getopt : { KEEP(*(.u_boot_sandbox_getopt)) } |
Simon Glass | 9ca517d | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 26 | __u_boot_sandbox_option_end = .; |
Simon Glass | 9ca517d | 2016-07-04 11:57:54 -0600 | [diff] [blame] | 27 | } |
| 28 | |
Walter Lozano | 16d485e | 2020-06-25 01:10:12 -0300 | [diff] [blame] | 29 | INSERT AFTER .data; |