ia64: syscalls: switch to generic syscallhdr.sh
[linux-block.git] / init / version.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * linux/init/version.c
4 *
5 * Copyright (C) 1992 Theodore Ts'o
6 *
7 * May be freely distributed as part of Linux.
8 */
9
92045954 10#include <generated/compile.h>
9afb719e 11#include <linux/build-salt.h>
e4f02fda 12#include <linux/export.h>
1da177e4
LT
13#include <linux/uts.h>
14#include <linux/utsname.h>
273b281f 15#include <generated/utsrelease.h>
1da177e4 16#include <linux/version.h>
0bb80f24 17#include <linux/proc_ns.h>
1da177e4 18
4865ecf1 19struct uts_namespace init_uts_ns = {
9a56493f 20 .ns.count = REFCOUNT_INIT(2),
4865ecf1
SH
21 .name = {
22 .sysname = UTS_SYSNAME,
23 .nodename = UTS_NODENAME,
24 .release = UTS_RELEASE,
25 .version = UTS_VERSION,
26 .machine = UTS_MACHINE,
27 .domainname = UTS_DOMAINNAME,
28 },
59607db3 29 .user_ns = &init_user_ns,
435d5f4b 30 .ns.inum = PROC_UTS_INIT_INO,
33c42940
AV
31#ifdef CONFIG_UTS_NS
32 .ns.ops = &utsns_operations,
33#endif
1da177e4 34};
4865ecf1 35EXPORT_SYMBOL_GPL(init_uts_ns);
3eb3c740 36
c71551ad
LT
37/* FIXED STRINGS! Don't touch! */
38const char linux_banner[] =
3eb3c740
RZ
39 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
40 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
41
42const char linux_proc_banner[] =
43 "%s version %s"
44 " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
45 " (" LINUX_COMPILER ") %s\n";
9afb719e
LA
46
47BUILD_SALT;