Blame view
init/version.c
1009 Bytes
1da177e4c Linux-2.6.12-rc2 |
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> |
63104eec2 kbuild: introduce... |
13 |
#include <linux/utsrelease.h> |
1da177e4c Linux-2.6.12-rc2 |
14 15 16 17 18 19 |
#include <linux/version.h> #define version(a) Version_ ## a #define version_string(a) version(a) int version_string(LINUX_VERSION_CODE); |
4865ecf13 [PATCH] namespace... |
20 21 22 23 24 25 26 27 28 29 30 31 |
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, }, |
1da177e4c Linux-2.6.12-rc2 |
32 |
}; |
4865ecf13 [PATCH] namespace... |
33 |
EXPORT_SYMBOL_GPL(init_uts_ns); |
3eb3c740f [PATCH] fix linux... |
34 |
|
c71551ad3 Don't put "linux_... |
35 36 |
/* FIXED STRINGS! Don't touch! */ const char linux_banner[] = |
3eb3c740f [PATCH] fix linux... |
37 38 39 40 41 42 43 44 45 |
"Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION " "; const char linux_proc_banner[] = "%s version %s" " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")" " (" LINUX_COMPILER ") %s "; |