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

The PLAT_TEXT_START is only used by our firmware blobs hence rename it to FW_TEXT_START. Signed-off-by: Anup Patel <anup.patel@wdc.com>
27 lines
396 B
Plaintext
27 lines
396 B
Plaintext
/*
|
|
* Copyright (c) 2018 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
OUTPUT_ARCH(riscv)
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
#include "fw_common.ldS"
|
|
|
|
. = FW_TEXT_START + FW_PAYLOAD_OFFSET;
|
|
|
|
.payload :
|
|
{
|
|
PROVIDE(_payload_start = .);
|
|
*(.payload)
|
|
. = ALIGN(8);
|
|
PROVIDE(_payload_end = .);
|
|
}
|
|
}
|