1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef _LINUX_UTS_H 1 #ifndef _LINUX_UTS_H 3 #define _LINUX_UTS_H 2 #define _LINUX_UTS_H 4 3 5 /* 4 /* 6 * Defines for what uname() should return 5 * Defines for what uname() should return 7 */ 6 */ 8 #ifndef UTS_SYSNAME 7 #ifndef UTS_SYSNAME 9 #define UTS_SYSNAME "Linux" 8 #define UTS_SYSNAME "Linux" 10 #endif 9 #endif 11 10 >> 11 #ifndef UTS_MACHINE >> 12 #define UTS_MACHINE "unknown" >> 13 #endif >> 14 12 #ifndef UTS_NODENAME 15 #ifndef UTS_NODENAME 13 #define UTS_NODENAME CONFIG_DEFAULT_HOSTNAME / !! 16 #define UTS_NODENAME "(none)" /* set by sethostname() */ 14 #endif 17 #endif 15 18 16 #ifndef UTS_DOMAINNAME 19 #ifndef UTS_DOMAINNAME 17 #define UTS_DOMAINNAME "(none)" /* set by setd 20 #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */ 18 #endif 21 #endif 19 22 20 #endif 23 #endif 21 24
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.