Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 1 | /* |
Mike Frysinger | 3ab7d95 | 2012-02-26 14:13:31 -0500 | [diff] [blame] | 2 | * Copyright (c) 2011-2012 The Chromium OS Authors. |
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 3 | * Use of this source code is governed by a BSD-style license that can be |
| 4 | * found in the LICENSE file. |
| 5 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | SECTIONS |
| 10 | { |
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 11 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 12 | . = ALIGN(4); |
| 13 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 14 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 15 | } |
| 16 | |
Simon Glass | 70db421 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 17 | __u_boot_sandbox_option_start = .; |
| 18 | _u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) } |
| 19 | __u_boot_sandbox_option_end = .; |
| 20 | |
Mike Frysinger | 3ab7d95 | 2012-02-26 14:13:31 -0500 | [diff] [blame] | 21 | __bss_start = .; |
Simon Glass | 4b0730d | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | INSERT BEFORE .data; |