mtd: sf: Make sf_mtd.c more robust
[platform/kernel/u-boot.git] / arch / sandbox / cpu / u-boot-spl.lds
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2011-2012 The Chromium OS Authors.
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7
8 SECTIONS
9 {
10
11         . = ALIGN(4);
12         .u_boot_list : {
13                 KEEP(*(SORT(.u_boot_list*)));
14         }
15
16         __u_boot_sandbox_option_start = .;
17         _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
18         __u_boot_sandbox_option_end = .;
19
20         __bss_start = .;
21 }
22
23 INSERT BEFORE .data;