xref: /OK3568_Linux_fs/kernel/arch/arm/vdso/note.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Copyright (C) 2012-2018 ARM Limited
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This supplies .note.* sections to go into the PT_NOTE inside the vDSO text.
6*4882a593Smuzhiyun  * Here we can supply some information useful to userland.
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #include <linux/uts.h>
10*4882a593Smuzhiyun #include <linux/version.h>
11*4882a593Smuzhiyun #include <linux/elfnote.h>
12*4882a593Smuzhiyun #include <linux/build-salt.h>
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun ELFNOTE32("Linux", 0, LINUX_VERSION_CODE);
15*4882a593Smuzhiyun BUILD_SALT;
16