Nicholas Flintham | 1e3d311 | 2013-04-10 10:48:38 +0100 | [diff] [blame^] | 1 | #ifndef _LINUX_UTS_H |
2 | #define _LINUX_UTS_H | ||||
3 | |||||
4 | #ifndef UTS_SYSNAME | ||||
5 | #define UTS_SYSNAME "Linux" | ||||
6 | #endif | ||||
7 | |||||
8 | #ifndef UTS_NODENAME | ||||
9 | #define UTS_NODENAME CONFIG_DEFAULT_HOSTNAME | ||||
10 | #endif | ||||
11 | |||||
12 | #ifndef UTS_DOMAINNAME | ||||
13 | #define UTS_DOMAINNAME "(none)" | ||||
14 | #endif | ||||
15 | |||||
16 | #endif |