2011-09-26 14:10:39 +00:00
|
|
|
/*
|
2012-02-26 19:13:31 +00:00
|
|
|
* Copyright (c) 2011-2012 The Chromium OS Authors.
|
2011-09-26 14:10:39 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-09-26 14:10:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
|
2012-10-12 10:27:03 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
.u_boot_list : {
|
2013-02-25 00:59:00 +00:00
|
|
|
KEEP(*(SORT(.u_boot_list*)));
|
2012-10-12 10:27:03 +00:00
|
|
|
}
|
|
|
|
|
2012-02-15 23:51:16 +00:00
|
|
|
__u_boot_sandbox_option_start = .;
|
|
|
|
_u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
|
|
|
|
__u_boot_sandbox_option_end = .;
|
|
|
|
|
2012-02-26 19:13:31 +00:00
|
|
|
__bss_start = .;
|
2011-09-26 14:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
INSERT BEFORE .data;
|