root/tools/version.c

/* [previous][next][first][last][top][bottom][index][help] */
   1 /*
   2  *  linux/version.c
   3  *
   4  *  Copyright (C) 1992  Theodore Ts'o
   5  *
   6  *  May be freely distributed as part of Linux.
   7  */
   8 
   9 #include <linux/config.h>
  10 #include <linux/utsname.h>
  11 
  12 #include "./version.h"
  13 
  14 struct new_utsname system_utsname = {
  15         UTS_SYSNAME, UTS_NODENAME, UTS_RELEASE, UTS_VERSION,
  16         UTS_MACHINE, UTS_DOMAINNAME
  17 };
  18 
  19 char *linux_banner = 
  20         "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
  21         LINUX_COMPILE_HOST ") " UTS_VERSION "\n";

/* [previous][next][first][last][top][bottom][index][help] */