1/* SPDX-License-Identifier: GPL-2.0+ */
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.
6 */
7
8SECTIONS
9{
10
11	. = ALIGN(32);
12	__u_boot_list : {
13		KEEP(*(SORT(__u_boot_list*)));
14	}
15
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
24	_u_boot_sandbox_getopt : {
25		*(_u_boot_sandbox_getopt_start)
26		KEEP(*(_u_boot_sandbox_getopt))
27		*(_u_boot_sandbox_getopt_end)
28	}
29
30	_image_binary_end = .;
31}
32
33INSERT AFTER .data;
34