blob: de65b01b33c3a8b9ff5bcb38cb3a1a84d183aa55 [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
11 . = ALIGN(4);
12 .u_boot_list : {
13 KEEP(*(SORT(.u_boot_list*)));
14 }
15
16 __u_boot_sandbox_option_start = .;
Simon Glass1ca910b2018-11-15 18:44:01 -070017 _u_boot_sandbox_getopt : { KEEP(*(.u_boot_sandbox_getopt)) }
Simon Glass8797b2c2016-07-04 11:57:54 -060018 __u_boot_sandbox_option_end = .;
19
20 __bss_start = .;
21}
22
23INSERT BEFORE .data;