blob: bfb4e3f4955e0caed1ae3d5b404f55ccdacf35a0 [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>
Masahiro Yamadae4f02fd2017-11-17 15:29:10 -080010#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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 = {
Peter Zijlstra1e24edc2016-11-14 17:12:23 +010026 .kref = KREF_INIT(2),
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070027 .name = {
28 .sysname = UTS_SYSNAME,
29 .nodename = UTS_NODENAME,
30 .release = UTS_RELEASE,
31 .version = UTS_VERSION,
32 .machine = UTS_MACHINE,
33 .domainname = UTS_DOMAINNAME,
34 },
Serge E. Hallyn59607db2011-03-23 16:43:16 -070035 .user_ns = &init_user_ns,
Al Viro435d5f42014-10-31 22:56:04 -040036 .ns.inum = PROC_UTS_INIT_INO,
Al Viro33c42942014-11-01 02:32:53 -040037#ifdef CONFIG_UTS_NS
38 .ns.ops = &utsns_operations,
39#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070041EXPORT_SYMBOL_GPL(init_uts_ns);
Roman Zippel3eb3c742007-01-10 14:45:28 +010042
Linus Torvaldsc71551a2007-01-11 18:18:04 -080043/* FIXED STRINGS! Don't touch! */
44const char linux_banner[] =
Roman Zippel3eb3c742007-01-10 14:45:28 +010045 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
46 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
47
48const char linux_proc_banner[] =
49 "%s version %s"
50 " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
51 " (" LINUX_COMPILER ") %s\n";