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 8SECTIONS 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 .__efi_runtime_start : { 21 *(.__efi_runtime_start) 22 } 23 24 .efi_runtime : { 25 *(efi_runtime_text) 26 *(efi_runtime_data) 27 } 28 29 .__efi_runtime_stop : { 30 *(.__efi_runtime_stop) 31 } 32 33 .efi_runtime_rel_start : 34 { 35 *(.__efi_runtime_rel_start) 36 } 37 38 .efi_runtime_rel : { 39 *(.relefi_runtime_text) 40 *(.relefi_runtime_data) 41 } 42 43 .efi_runtime_rel_stop : 44 { 45 *(.__efi_runtime_rel_stop) 46 } 47 48 __bss_start = .; 49} 50 51INSERT BEFORE .data; 52