1*87f3248cSGuo Ren/* SPDX-License-Identifier: GPL-2.0-or-later */ 2*87f3248cSGuo Ren/* 3*87f3248cSGuo Ren * This supplies .note.* sections to go into the PT_NOTE inside the vDSO text. 4*87f3248cSGuo Ren * Here we can supply some information useful to userland. 5*87f3248cSGuo Ren */ 6*87f3248cSGuo Ren 7*87f3248cSGuo Ren#include <linux/elfnote.h> 8*87f3248cSGuo Ren#include <linux/version.h> 9*87f3248cSGuo Ren 10*87f3248cSGuo RenELFNOTE_START(Linux, 0, "a") 11*87f3248cSGuo Ren .long LINUX_VERSION_CODE 12*87f3248cSGuo RenELFNOTE_END 13