xref: /OK3568_Linux_fs/u-boot/arch/sandbox/cpu/u-boot-spl.lds (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun/*
2*4882a593Smuzhiyun * Copyright (c) 2011-2012 The Chromium OS Authors.
3*4882a593Smuzhiyun * Use of this source code is governed by a BSD-style license that can be
4*4882a593Smuzhiyun * found in the LICENSE file.
5*4882a593Smuzhiyun *
6*4882a593Smuzhiyun * SPDX-License-Identifier:	GPL-2.0+
7*4882a593Smuzhiyun */
8*4882a593Smuzhiyun
9*4882a593SmuzhiyunSECTIONS
10*4882a593Smuzhiyun{
11*4882a593Smuzhiyun
12*4882a593Smuzhiyun	. = ALIGN(4);
13*4882a593Smuzhiyun	.u_boot_list : {
14*4882a593Smuzhiyun		KEEP(*(SORT(.u_boot_list*)));
15*4882a593Smuzhiyun	}
16*4882a593Smuzhiyun
17*4882a593Smuzhiyun	__u_boot_sandbox_option_start = .;
18*4882a593Smuzhiyun	_u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
19*4882a593Smuzhiyun	__u_boot_sandbox_option_end = .;
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun	__bss_start = .;
22*4882a593Smuzhiyun}
23*4882a593Smuzhiyun
24*4882a593SmuzhiyunINSERT BEFORE .data;
25