Merge tag 'x86-splitlock-2020-03-30' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / arch / riscv / boot / loader.lds.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #include <asm/page.h>
4
5 OUTPUT_ARCH(riscv)
6 ENTRY(_start)
7
8 SECTIONS
9 {
10         . = PAGE_OFFSET;
11
12         .payload : {
13                 *(.payload)
14                 . = ALIGN(8);
15         }
16 }