blob: 7e92b4ac66c811866148540b6c424026ef7abbbc [file] [log] [blame]
Simon Glass4b0730d2011-09-26 14:10:39 +00001/*
Mike Frysinger3ab7d952012-02-26 14:13:31 -05002 * Copyright (c) 2011-2012 The Chromium OS Authors.
Simon Glass4b0730d2011-09-26 14:10:39 +00003 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02006 * SPDX-License-Identifier: GPL-2.0+
Simon Glass4b0730d2011-09-26 14:10:39 +00007 */
8
9SECTIONS
10{
Simon Glass4b0730d2011-09-26 14:10:39 +000011
Marek Vasut55675142012-10-12 10:27:03 +000012 . = ALIGN(4);
13 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000014 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000015 }
16
Simon Glass70db4212012-02-15 15:51:16 -080017 __u_boot_sandbox_option_start = .;
18 _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
19 __u_boot_sandbox_option_end = .;
20
Mike Frysinger3ab7d952012-02-26 14:13:31 -050021 __bss_start = .;
Simon Glass4b0730d2011-09-26 14:10:39 +000022}
23
24INSERT BEFORE .data;