/* * Copyright (c) 2018 Western Digital Corporation or its affiliates. * * Authors: * Anup Patel * * SPDX-License-Identifier: BSD-2-Clause */ OUTPUT_ARCH(riscv) ENTRY(_start) SECTIONS { #include "fw_base.ldS" . = FW_TEXT_START + FW_PAYLOAD_OFFSET; .payload : { PROVIDE(_payload_start = .); *(.payload) . = ALIGN(8); PROVIDE(_payload_end = .); } }