root/arch/arm64/kernel/vdso32/note.c

/* [<][>][^][v][top][bottom][index][help] */
   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;

/* [<][>][^][v][top][bottom][index][help] */