Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | #ifndef _LINUX_UTS_H | ||||
3 | #define _LINUX_UTS_H | ||||
4 | |||||
5 | /* | ||||
6 | * Defines for what uname() should return | ||||
7 | */ | ||||
8 | #ifndef UTS_SYSNAME | ||||
9 | #define UTS_SYSNAME "Linux" | ||||
10 | #endif | ||||
11 | |||||
12 | #ifndef UTS_NODENAME | ||||
13 | #define UTS_NODENAME CONFIG_DEFAULT_HOSTNAME /* set by sethostname() */ | ||||
14 | #endif | ||||
15 | |||||
16 | #ifndef UTS_DOMAINNAME | ||||
17 | #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */ | ||||
18 | #endif | ||||
19 | |||||
20 | #endif |