note.S (e5451c8f8330e03ad3cfa16048b4daf961af434f) | note.S (9fa1db4c7511543c951128758f358cd7aad99628) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ |
|
1/* 2 * This supplies .note.* sections to go into the PT_NOTE inside the vDSO text. 3 * Here we can supply some information useful to userland. 4 */ 5 6#include <linux/uts.h> 7#include <linux/version.h> 8#include <linux/elfnote.h> 9 10ELFNOTE_START(Linux, 0, "a") 11 .long LINUX_VERSION_CODE 12ELFNOTE_END | 2/* 3 * This supplies .note.* sections to go into the PT_NOTE inside the vDSO text. 4 * Here we can supply some information useful to userland. 5 */ 6 7#include <linux/uts.h> 8#include <linux/version.h> 9#include <linux/elfnote.h> 10 11ELFNOTE_START(Linux, 0, "a") 12 .long LINUX_VERSION_CODE 13ELFNOTE_END |