repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
arch
/
riscv
/
boot
/
loader.lds.S
blob
47a5003c2e286650be7f633bf7b9c5a2250434af
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
}