Annotation of solidite/kernel/riscv64.ld, revision 1.1.1.1
1.1 user 1: # Copyright (c) 2026 The Solidite Developers
2: #
3: # This program is free software: you can redistribute it and/or modify it under
4: # the terms of the GNU Affero General Public License as published by the Free
5: # Software Foundation, either version 3 of the License, or (at your option) any
6: # later version.
7: #
8: # This program is distributed in the hope that it will be useful, but WITHOUT
9: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10: # FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
11: # details.
12: #
13: # You should have received a copy of the GNU Affero General Public License along
14: # with this program. If not, see <https://www.gnu.org/licenses/>.
15:
16: SECTIONS
17: {
18: . = 0x80200000;
19: .text : {
20: *(.text.entry)
21: *(.text*)
22: }
23: .rodata : { *(.rodata*) }
24: .data : { *(.data*) }
25: .bss : { *(.bss*) }
26: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>