blob: ef885fd0cb00308f127573029223f2a0ec97ad13 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass8797b2c2016-07-04 11:57:54 -06002/*
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 Glass8797b2c2016-07-04 11:57:54 -06006 */
7
8SECTIONS
9{
10
Simon Glass0c6be932022-03-27 14:26:18 -060011 . = ALIGN(32);
Andrew Scull99e2fbc2022-05-30 10:00:04 +000012 __u_boot_list : {
13 KEEP(*(SORT(__u_boot_list*)));
Simon Glass8797b2c2016-07-04 11:57:54 -060014 }
15
Simon Glassd5cc1922021-03-15 17:25:39 +130016 /* 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Ășnd1f81fd2021-05-20 13:24:06 +020024 _u_boot_sandbox_getopt : {
Andrew Scull0648b132022-05-30 10:00:03 +000025 *(_u_boot_sandbox_getopt_start)
26 KEEP(*(_u_boot_sandbox_getopt))
27 *(_u_boot_sandbox_getopt_end)
Marek BehĂșnd1f81fd2021-05-20 13:24:06 +020028 }
Simon Glass8797b2c2016-07-04 11:57:54 -060029}
30
Walter Lozanodf297302020-06-25 01:10:12 -030031INSERT AFTER .data;