xref: /openbmc/linux/init/version.c (revision 31e67366)
1 // SPDX-License-Identifier: GPL-2.0-only
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 
10 #include <generated/compile.h>
11 #include <linux/build-salt.h>
12 #include <linux/export.h>
13 #include <linux/uts.h>
14 #include <linux/utsname.h>
15 #include <generated/utsrelease.h>
16 #include <linux/version.h>
17 #include <linux/proc_ns.h>
18 
19 struct uts_namespace init_uts_ns = {
20 	.ns.count = REFCOUNT_INIT(2),
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 	},
29 	.user_ns = &init_user_ns,
30 	.ns.inum = PROC_UTS_INIT_INO,
31 #ifdef CONFIG_UTS_NS
32 	.ns.ops = &utsns_operations,
33 #endif
34 };
35 EXPORT_SYMBOL_GPL(init_uts_ns);
36 
37 /* FIXED STRINGS! Don't touch! */
38 const char linux_banner[] =
39 	"Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
40 	LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
41 
42 const char linux_proc_banner[] =
43 	"%s version %s"
44 	" (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
45 	" (" LINUX_COMPILER ") %s\n";
46 
47 BUILD_SALT;
48