diff options
Diffstat (limited to 'init/version.c')
-rw-r--r-- | init/version.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/init/version.c b/init/version.c new file mode 100644 index 000000000..42885c427 --- /dev/null +++ b/init/version.c @@ -0,0 +1,20 @@ +/* + * linux/version.c + * + * Copyright (C) 1992 Theodore Ts'o + * + * May be freely distributed as part of Linux. + */ + +#include <linux/config.h> +#include <linux/utsname.h> +#include <linux/version.h> + +struct new_utsname system_utsname = { + UTS_SYSNAME, UTS_NODENAME, UTS_RELEASE, UTS_VERSION, + UTS_MACHINE, UTS_DOMAINNAME +}; + +char *linux_banner = + "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@" + LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n"; |