xref: /linux/arch/riscv/kernel/vdso/note.S (revision 0a9f2a61)
1*0a9f2a61SAndreas Schwab/* SPDX-License-Identifier: GPL-2.0-or-later */
2*0a9f2a61SAndreas Schwab/*
3*0a9f2a61SAndreas Schwab * This supplies .note.* sections to go into the PT_NOTE inside the vDSO text.
4*0a9f2a61SAndreas Schwab * Here we can supply some information useful to userland.
5*0a9f2a61SAndreas Schwab */
6*0a9f2a61SAndreas Schwab
7*0a9f2a61SAndreas Schwab#include <linux/elfnote.h>
8*0a9f2a61SAndreas Schwab#include <linux/version.h>
9*0a9f2a61SAndreas Schwab
10*0a9f2a61SAndreas SchwabELFNOTE_START(Linux, 0, "a")
11*0a9f2a61SAndreas Schwab	.long LINUX_VERSION_CODE
12*0a9f2a61SAndreas SchwabELFNOTE_END
13