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