Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.15 17 lines 206 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#include <asm/page.h> 4#include <asm/pgtable.h> 5 6OUTPUT_ARCH(riscv) 7ENTRY(_start) 8 9SECTIONS 10{ 11 . = KERNEL_LINK_ADDR; 12 13 .payload : { 14 *(.payload) 15 . = ALIGN(8); 16 } 17}