version.c 719 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  linux/init/version.c
 *
 *  Copyright (C) 1992  Theodore Ts'o
 *
 *  May be freely distributed as part of Linux.
 */

#include <linux/compile.h>
#include <linux/module.h>
#include <linux/uts.h>
#include <linux/utsname.h>
S
Sam Ravnborg 已提交
13
#include <linux/utsrelease.h>
L
Linus Torvalds 已提交
14
#include <linux/version.h>
15
#include <linux/sched.h>
L
Linus Torvalds 已提交
16 17 18 19 20 21

#define version(a) Version_ ## a
#define version_string(a) version(a)

int version_string(LINUX_VERSION_CODE);

22 23 24 25 26 27 28 29 30 31 32 33
struct uts_namespace init_uts_ns = {
	.kref = {
		.refcount	= ATOMIC_INIT(2),
	},
	.name = {
		.sysname	= UTS_SYSNAME,
		.nodename	= UTS_NODENAME,
		.release	= UTS_RELEASE,
		.version	= UTS_VERSION,
		.machine	= UTS_MACHINE,
		.domainname	= UTS_DOMAINNAME,
	},
L
Linus Torvalds 已提交
34
};
35
EXPORT_SYMBOL_GPL(init_uts_ns);