blob: fe41a63efed63b54831b2546df1553288052b97c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/init/version.c
3 *
4 * Copyright (C) 1992 Theodore Ts'o
5 *
6 * May be freely distributed as part of Linux.
7 */
8
Sam Ravnborg92045952009-10-18 00:36:47 +02009#include <generated/compile.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/uts.h>
12#include <linux/utsname.h>
Sam Ravnborg273b2812009-10-18 00:52:28 +020013#include <generated/utsrelease.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/version.h>
David Howells0bb80f22013-04-12 01:50:06 +010015#include <linux/proc_ns.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Daniel Guilak197dcff2008-07-25 01:45:50 -070017#ifndef CONFIG_KALLSYMS
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define version(a) Version_ ## a
19#define version_string(a) version(a)
20
Daniel Guilak277e2c62008-07-25 01:45:49 -070021extern int version_string(LINUX_VERSION_CODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022int version_string(LINUX_VERSION_CODE);
Daniel Guilak197dcff2008-07-25 01:45:50 -070023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070025struct uts_namespace init_uts_ns = {
26 .kref = {
27 .refcount = ATOMIC_INIT(2),
28 },
29 .name = {
30 .sysname = UTS_SYSNAME,
31 .nodename = UTS_NODENAME,
32 .release = UTS_RELEASE,
33 .version = UTS_VERSION,
34 .machine = UTS_MACHINE,
35 .domainname = UTS_DOMAINNAME,
36 },
Serge E. Hallyn59607db2011-03-23 16:43:16 -070037 .user_ns = &init_user_ns,
Al Viro435d5f42014-10-31 22:56:04 -040038 .ns.inum = PROC_UTS_INIT_INO,
Al Viro33c42942014-11-01 02:32:53 -040039#ifdef CONFIG_UTS_NS
40 .ns.ops = &utsns_operations,
41#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070043EXPORT_SYMBOL_GPL(init_uts_ns);
Roman Zippel3eb3c7402007-01-10 14:45:28 +010044
Linus Torvaldsc71551a2007-01-11 18:18:04 -080045/* FIXED STRINGS! Don't touch! */
46const char linux_banner[] =
Roman Zippel3eb3c7402007-01-10 14:45:28 +010047 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
48 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
49
50const char linux_proc_banner[] =
51 "%s version %s"
52 " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
53 " (" LINUX_COMPILER ") %s\n";