note.c (387B)
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 14ELFNOTE32("Linux", 0, LINUX_VERSION_CODE); 15BUILD_SALT;