blob: 62d94696a19c71366d287b7ac286606b43e8bee7 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0 */
#include <asm/page.h>
#include <asm/pgtable.h>
OUTPUT_ARCH(riscv)
ENTRY(_start)
SECTIONS
{
. = KERNEL_LINK_ADDR;
.payload : {
*(.payload)
. = ALIGN(8);
}
}