root/include/linux/config.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _CONFIG_H
   2 #define _CONFIG_H
   3 
   4 #define CONFIG_DISTRIBUTION
   5 
   6 /*
   7  * Defines for what uname() should return 
   8  */
   9 #ifndef UTS_SYSNAME
  10 #define UTS_SYSNAME "Linux"
  11 #endif
  12 #ifndef UTS_NODENAME
  13 #define UTS_NODENAME "(none)"   /* set by sethostname() */
  14 #endif
  15 #include <linux/config_rel.h>
  16 #ifndef UTS_RELEASE
  17 #define UTS_RELEASE "0.95c-0" 
  18 #endif
  19 #include <linux/config_ver.h>
  20 #ifndef UTS_VERSION
  21 #define UTS_VERSION "mm/dd/yy"
  22 #endif
  23 #define UTS_MACHINE "i386"      /* hardware type */
  24 
  25 /* Don't touch these, unless you really know what your doing. */
  26 #define DEF_INITSEG     0x9000
  27 #define DEF_SYSSEG      0x1000
  28 #define DEF_SETUPSEG    0x9020
  29 #define DEF_SYSSIZE     0x4000
  30 
  31 /*
  32  * The root-device is no longer hard-coded. You can change the default
  33  * root-device by changing the line ROOT_DEV = XXX in boot/bootsect.s
  34  */
  35 
  36 /*
  37  * The keyboard is now defined in kernel/chr_dev/keyboard.S
  38  */
  39 
  40 /*
  41  * Normally, Linux can get the drive parameters from the BIOS at
  42  * startup, but if this for some unfathomable reason fails, you'd
  43  * be left stranded. For this case, you can define HD_TYPE, which
  44  * contains all necessary info on your harddisk.
  45  *
  46  * The HD_TYPE macro should look like this:
  47  *
  48  * #define HD_TYPE { head, sect, cyl, wpcom, lzone, ctl}
  49  *
  50  * In case of two harddisks, the info should be sepatated by
  51  * commas:
  52  *
  53  * #define HD_TYPE { h,s,c,wpcom,lz,ctl },{ h,s,c,wpcom,lz,ctl }
  54  */
  55 /*
  56  This is an example, two drives, first is type 2, second is type 3:
  57 
  58 #define HD_TYPE { 4,17,615,300,615,8 }, { 6,17,615,300,615,0 }
  59 
  60  NOTE: ctl is 0 for all drives with heads<=8, and ctl=8 for drives
  61  with more than 8 heads.
  62 
  63  If you want the BIOS to tell what kind of drive you have, just
  64  leave HD_TYPE undefined. This is the normal thing to do.
  65 */
  66 
  67 #undef HD_TYPE
  68 
  69 #undef CONFIG_BLK_DEV_SD
  70 #undef CONFIG_BLK_DEV_ST
  71 
  72 /*
  73         Choose supported SCSI adapters here.
  74 */
  75 
  76 #undef CONFIG_SCSI_AHA1542
  77 #undef CONFIG_SCSI_ALWAYS
  78 #undef CONFIG_SCSI_CSC
  79 #undef CONFIG_SCSI_DTC
  80 #undef CONFIG_SCSI_FUTURE_DOMAIN
  81 #undef CONFIG_SCSI_SEAGATE
  82 #undef CONFIG_SCSI_ULTRASTOR
  83 
  84 #if defined(CONFIG_BLK_DEV_SD) || defined(CONFIG_BLK_DEV_ST)
  85         #ifndef CONFIG_SCSI
  86                 #define CONFIG_SCSI
  87         #endif
  88         
  89         #if !defined(CONFIG_SCSI_AHA1542) && !defined(CONFIG_SCSI_CSC) && !defined(CONFIG_SCSI_DTC) && \
  90                 !defined(CONFIG_SCSI_FUTURE_DOMAIN) &&  !defined(CONFIG_SCSI_SEAGATE) && !defined(CONFIG_SCSI_ULTRASTOR) 
  91 
  92         #error  Error : SCSI devices enabled, but no low level drivers have been enabled.
  93         #endif
  94 #endif
  95 
  96 #ifdef CONFIG_DISTRIBUTION
  97         #include <linux/config.dist.h>
  98 #else
  99         #include <linux/config.site.h>
 100 #endif
 101 
 102 /*
 103         File type specific stuff goes into this.
 104 */
 105 
 106 #ifdef ASM_SRC
 107 #endif
 108 
 109 #ifdef C_SRC
 110 #endif
 111 
 112 #ifdef MAKE
 113 #endif
 114 
 115 #endif

/* [previous][next][first][last][top][bottom][index][help] */