2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-09-26 14:10:39 +00:00
|
|
|
/*
|
2012-02-26 19:13:31 +00:00
|
|
|
* Copyright (c) 2011-2012 The Chromium OS Authors.
|
2011-09-26 14:10:39 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
|
2012-10-12 10:27:03 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
.u_boot_list : {
|
2013-02-25 00:59:00 +00:00
|
|
|
KEEP(*(SORT(.u_boot_list*)));
|
2012-10-12 10:27:03 +00:00
|
|
|
}
|
|
|
|
|
2012-02-15 23:51:16 +00:00
|
|
|
__u_boot_sandbox_option_start = .;
|
|
|
|
_u_boot_sandbox_getopt : { *(.u_boot_sandbox_getopt) }
|
|
|
|
__u_boot_sandbox_option_end = .;
|
|
|
|
|
2018-08-06 22:29:01 +00:00
|
|
|
.__efi_runtime_start : {
|
2018-05-16 15:42:23 +00:00
|
|
|
*(.__efi_runtime_start)
|
|
|
|
}
|
|
|
|
|
|
|
|
.efi_runtime : {
|
2018-08-08 09:54:16 +00:00
|
|
|
*(efi_runtime_text)
|
|
|
|
*(efi_runtime_data)
|
2018-05-16 15:42:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.__efi_runtime_stop : {
|
|
|
|
*(.__efi_runtime_stop)
|
|
|
|
}
|
|
|
|
|
|
|
|
.efi_runtime_rel_start :
|
|
|
|
{
|
|
|
|
*(.__efi_runtime_rel_start)
|
|
|
|
}
|
|
|
|
|
|
|
|
.efi_runtime_rel : {
|
2018-08-08 09:54:16 +00:00
|
|
|
*(.relefi_runtime_text)
|
|
|
|
*(.relefi_runtime_data)
|
2018-05-16 15:42:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.efi_runtime_rel_stop :
|
|
|
|
{
|
|
|
|
*(.__efi_runtime_rel_stop)
|
|
|
|
}
|
|
|
|
|
2018-08-06 22:29:01 +00:00
|
|
|
__bss_start = .;
|
2011-09-26 14:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
INSERT BEFORE .data;
|