blob: 86fe0ccb997abdd2e97a920288fd2d3fbfd9736e [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>
15
Daniel Guilak197dcff2008-07-25 01:45:50 -070016#ifndef CONFIG_KALLSYMS
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define version(a) Version_ ## a
18#define version_string(a) version(a)
19
Daniel Guilak277e2c62008-07-25 01:45:49 -070020extern int version_string(LINUX_VERSION_CODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021int version_string(LINUX_VERSION_CODE);
Daniel Guilak197dcff2008-07-25 01:45:50 -070022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070024struct uts_namespace init_uts_ns = {
25 .kref = {
26 .refcount = ATOMIC_INIT(2),
27 },
28 .name = {
29 .sysname = UTS_SYSNAME,
30 .nodename = UTS_NODENAME,
31 .release = UTS_RELEASE,
32 .version = UTS_VERSION,
33 .machine = UTS_MACHINE,
34 .domainname = UTS_DOMAINNAME,
35 },
Serge E. Hallyn59607db2011-03-23 16:43:16 -070036 .user_ns = &init_user_ns,
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070038EXPORT_SYMBOL_GPL(init_uts_ns);
Roman Zippel3eb3c742007-01-10 14:45:28 +010039
Linus Torvaldsc71551a2007-01-11 18:18:04 -080040/* FIXED STRINGS! Don't touch! */
41const char linux_banner[] =
Roman Zippel3eb3c742007-01-10 14:45:28 +010042 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
43 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
44
45const char linux_proc_banner[] =
46 "%s version %s"
47 " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
48 " (" LINUX_COMPILER ") %s\n";