init/version.c
20076 /*
20077 * linux/version.c
20078 *
20079 * Copyright (C) 1992 Theodore Ts'o
20080 *
20081 * May be freely distributed as part of Linux.
20082 */
20083
20084 #include <linux/uts.h>
20085 #include <linux/utsname.h>
20086 #include <linux/version.h>
20087 #include <linux/compile.h>
20088
20089 #define version(a) Version_ ## a
20090 #define version_string(a) version(a)
20091
20092 int version_string(LINUX_VERSION_CODE) = 0;
20093
20094 struct new_utsname system_utsname = {
20095 UTS_SYSNAME, UTS_NODENAME, UTS_RELEASE, UTS_VERSION,
20096 UTS_MACHINE, UTS_DOMAINNAME
20097 };
20098
20099 const char *linux_banner =
20100 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
20101 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") "
20102 UTS_VERSION "\n";
Сайт управляется системой
uCoz