1 #ifndef _LINUX_CONFIG_H
   2 #define _LINUX_CONFIG_H
   3 
   4 #include <linux/autoconf.h>
   5 
   6 
   7 
   8 
   9 #ifndef UTS_SYSNAME
  10 #define UTS_SYSNAME "Linux"
  11 #endif
  12 
  13 #ifndef UTS_MACHINE
  14 #define UTS_MACHINE "unknown"
  15 #endif
  16 
  17 #ifndef UTS_NODENAME
  18 #define UTS_NODENAME "(none)"   
  19 #endif
  20 
  21 #ifndef UTS_DOMAINNAME
  22 #define UTS_DOMAINNAME "(none)" 
  23 #endif
  24 
  25 
  26 
  27 
  28 
  29 
  30 
  31 #define DEF_INITSEG     0x9000
  32 #define DEF_SYSSEG      0x1000
  33 #define DEF_SETUPSEG    0x9020
  34 #define DEF_SYSSIZE     0x7F00
  35 
  36 
  37 #define NORMAL_VGA      0xffff          
  38 #define EXTENDED_VGA    0xfffe          
  39 #define ASK_VGA         0xfffd          
  40 
  41 #endif