Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel'
[palacios.git] / kitten / include / lwk / uts.h
1 #ifndef _LWK_UTS_H
2 #define _LWK_UTS_H
3
4 #include <lwk/compile.h>  /* for UTS_MACHINE and UTS_VERSION */
5
6 /*
7  * Defines for what uname() should return 
8  * We trick user-level into thinking we are Linux for compatibility purposes.
9  */
10 #ifndef UTS_LINUX_SYSNAME
11 #define UTS_LINUX_SYSNAME "Linux"
12 #endif
13
14 #ifndef UTS_LINUX_RELEASE
15 #define UTS_LINUX_RELEASE "2.6.23"
16 #endif
17
18 #ifndef UTS_NODENAME
19 #define UTS_NODENAME "(none)"   /* set by sethostname() */
20 #endif
21
22 #ifndef UTS_DOMAINNAME
23 #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */
24 #endif
25
26 #endif