]> Git Repo - linux.git/blob - arch/riscv/boot/loader.lds.S
ACPI: bus: Avoid using CPPC if not supported by firmware
[linux.git] / arch / riscv / boot / loader.lds.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #include <asm/page.h>
4 #include <asm/pgtable.h>
5
6 OUTPUT_ARCH(riscv)
7 ENTRY(_start)
8
9 SECTIONS
10 {
11         . = KERNEL_LINK_ADDR;
12
13         .payload : {
14                 *(.payload)
15                 . = ALIGN(8);
16         }
17 }
This page took 0.033004 seconds and 4 git commands to generate.