mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

Now opensbi can run at any address via dynamic relocation. We can remove FW_TEXT_START. Signed-off-by: Xiang W <wxjstz@126.com> Reviewed-by: Anup Patel <anup@brainfault.org> Tested-by: Anup Patel <anup@brainfault.org>
33 lines
476 B
Plaintext
33 lines
476 B
Plaintext
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*/
|
|
|
|
OUTPUT_ARCH(riscv)
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
#include "fw_base.ldS"
|
|
|
|
#ifdef FW_PAYLOAD_OFFSET
|
|
. = FW_PAYLOAD_OFFSET;
|
|
#else
|
|
. = ALIGN(FW_PAYLOAD_ALIGN);
|
|
#endif
|
|
|
|
.payload :
|
|
{
|
|
PROVIDE(_payload_start = .);
|
|
*(.payload)
|
|
. = ALIGN(8);
|
|
PROVIDE(_payload_end = .);
|
|
}
|
|
|
|
PROVIDE(_fw_reloc_end = .);
|
|
}
|