3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-19 05:35:53 +00:00

24 lines
413 B
ArmAsm
Raw Normal View History

2022-04-02 18:08:56 +05:00
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2014 Regents of the University of California
*/
#include <linux/init.h>
#include <linux/linkage.h>
#include <asm/page.h>
2022-09-13 23:14:27 +05:00
#ifndef __VDSO_PATH
#define __VDSO_PATH "arch/riscv/kernel/vdso/vdso.so"
#endif
2022-04-02 18:08:56 +05:00
__PAGE_ALIGNED_DATA
.globl vdso_start, vdso_end
.balign PAGE_SIZE
vdso_start:
2022-09-13 23:14:27 +05:00
.incbin __VDSO_PATH
2022-04-02 18:08:56 +05:00
.balign PAGE_SIZE
vdso_end:
.previous