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