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
diff --git a/kitten/include/lwk/uts.h b/kitten/include/lwk/uts.h
new file mode 100644 (file)
index 0000000..79ddbf5
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef _LWK_UTS_H
+#define _LWK_UTS_H
+
+#include <lwk/compile.h>  /* for UTS_MACHINE and UTS_VERSION */
+
+/*
+ * Defines for what uname() should return 
+ * We trick user-level into thinking we are Linux for compatibility purposes.
+ */
+#ifndef UTS_LINUX_SYSNAME
+#define UTS_LINUX_SYSNAME "Linux"
+#endif
+
+#ifndef UTS_LINUX_RELEASE
+#define UTS_LINUX_RELEASE "2.6.23"
+#endif
+
+#ifndef UTS_NODENAME
+#define UTS_NODENAME "(none)"  /* set by sethostname() */
+#endif
+
+#ifndef UTS_DOMAINNAME
+#define UTS_DOMAINNAME "(none)"        /* set by setdomainname() */
+#endif
+
+#endif