Wipe out the last remains of arch/mips64/boot, rot in pieces ...
[linux-2.6/linux-mips.git] / init / version.c
blobb4cfb10af45f83206cb6d2077d8d5544ec032b3c
1 /*
2 * linux/init/version.c
4 * Copyright (C) 1992 Theodore Ts'o
6 * May be freely distributed as part of Linux.
7 */
9 #include <linux/compile.h>
10 #include <linux/uts.h>
11 #include <linux/utsname.h>
12 #include <linux/version.h>
14 #define version(a) Version_ ## a
15 #define version_string(a) version(a)
17 int version_string(LINUX_VERSION_CODE);
19 struct new_utsname system_utsname = {
20 .sysname = UTS_SYSNAME,
21 .nodename = UTS_NODENAME,
22 .release = UTS_RELEASE,
23 .version = UTS_VERSION,
24 .machine = UTS_MACHINE,
25 .domainname = UTS_DOMAINNAME,
28 const char *linux_banner =
29 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
30 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";