blob: 7e92b4ac66c811866148540b6c424026ef7abbbc [file] [log] [blame]
Simon Glass8797b2c2016-07-04 11:57:54 -06001/*
2 * Copyright (c) 2011-2012 The Chromium OS Authors.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9SECTIONS
10{
11
12 . = ALIGN(4);
13 .u_boot_list : {
14 KEEP(*(SORT(.u_boot_list*)));
15 }
16
17 __u_boot_sandbox_option_start = .;
18 _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
19 __u_boot_sandbox_option_end = .;
20
21 __bss_start = .;
22}
23
24INSERT BEFORE .data;