note.c 387 B

123456789101112131415
  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. #include <linux/uts.h>
  9. #include <linux/version.h>
  10. #include <linux/elfnote.h>
  11. #include <linux/build-salt.h>
  12. ELFNOTE32("Linux", 0, LINUX_VERSION_CODE);
  13. BUILD_SALT;