]>
Commit | Line | Data |
---|---|---|
1 | #ifndef _LINUX_CONFIG_H | |
2 | #define _LINUX_CONFIG_H | |
3 | ||
4 | #ifdef __LINUX__ | |
5 | #include <linux/autoconf.h> | |
6 | #endif | |
7 | ||
8 | /* | |
9 | * Defines for what uname() should return | |
10 | */ | |
11 | #ifndef UTS_SYSNAME | |
12 | #define UTS_SYSNAME "Linux" | |
13 | #endif | |
14 | ||
15 | #ifndef UTS_MACHINE | |
16 | #define UTS_MACHINE "unknown" | |
17 | #endif | |
18 | ||
19 | #ifndef UTS_NODENAME | |
20 | #define UTS_NODENAME "(none)" /* set by sethostname() */ | |
21 | #endif | |
22 | ||
23 | #ifndef UTS_DOMAINNAME | |
24 | #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */ | |
25 | #endif | |
26 | ||
27 | /* | |
28 | * The definitions for UTS_RELEASE and UTS_VERSION are now defined | |
29 | * in linux/version.h, and should only be used by linux/version.c | |
30 | */ | |
31 | ||
32 | /* Shouldn't these be defined somewhere in a i386 definition? */ | |
33 | ||
34 | /* Don't touch these, unless you really know what you're doing. */ | |
35 | #define DEF_INITSEG 0x9000 | |
36 | #define DEF_SYSSEG 0x1000 | |
37 | #define DEF_SETUPSEG 0x9020 | |
38 | #define DEF_SYSSIZE 0x7F00 | |
39 | ||
40 | /* internal svga startup constants */ | |
41 | #define NORMAL_VGA 0xffff /* 80x25 mode */ | |
42 | #define EXTENDED_VGA 0xfffe /* 80x50 mode */ | |
43 | #define ASK_VGA 0xfffd /* ask for it at bootup */ | |
44 | ||
45 | #endif |