1 #ifndef_CONFIG_H 2 #define_CONFIG_H 3
4 #defineCONFIG_DISTRIBUTION 5
6 /* 7 * Defines for what uname() should return 8 */ 9 #ifndefUTS_SYSNAME 10 #defineUTS_SYSNAME "Linux"
11 #endif 12 #ifndefUTS_NODENAME 13 #defineUTS_NODENAME "(none)" /* set by sethostname() */ 14 #endif 15 #include <linux/config_rel.h>
16 #ifndefUTS_RELEASE 17 #defineUTS_RELEASE "0.95c-0"
18 #endif 19 #include <linux/config_ver.h>
20 #ifndefUTS_VERSION 21 #defineUTS_VERSION "mm/dd/yy"
22 #endif 23 #defineUTS_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 0x5000
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 #undefHD_TYPE 68
69 #defineCONFIG_BLK_DEV_HD 70 #undefCONFIG_BLK_DEV_SD 71 #undefCONFIG_BLK_DEV_ST 72
73
74 /* 75 Choose supported SCSI adapters here. 76 */ 77
78 #undefCONFIG_SCSI_AHA1542 79 #undef CONFIG_SCSI_ALWAYS
80 #undefCONFIG_SCSI_CSC 81 #undefCONFIG_SCSI_DTC 82 #undefCONFIG_SCSI_FUTURE_DOMAIN 83 #undefCONFIG_SCSI_SEAGATE 84 #undefCONFIG_SCSI_ULTRASTOR 85 #undefCONFIG_SCSI_7000FASST 86
87 #ifdefined(CONFIG_BLK_DEV_SD) || defined(CONFIG_BLK_DEV_CD) || \
88 defined(CONFIG_CHR_DEV_ST)
89 #ifndefCONFIG_SCSI 90 #defineCONFIG_SCSI 91 #endif 92
93 #if !defined(CONFIG_SCSI_AHA1542) && !defined(CONFIG_SCSI_CSC) && !defined(CONFIG_SCSI_DTC) && \
94 !defined(CONFIG_SCSI_FUTURE_DOMAIN) && !defined(CONFIG_SCSI_SEAGATE) && !defined(CONFIG_SCSI_ULTRASTOR) && \
95 !defined(CONFIG_SCSI_7000FASST)
96 #error Error : SCSI devices enabled, but no low level drivers have been enabled.
97 #endif 98 #endif 99
100 #ifdefCONFIG_DISTRIBUTION 101 #include <linux/config.dist.h>
102 #else 103 #include <linux/config.site.h>
104 #endif 105
106 /* 107 File type specific stuff goes into this. 108 */ 109
110 #ifdef ASM_SRC
111 #endif 112
113 #ifdef C_SRC
114 #endif 115
116 #ifdef MAKE
117 #endif 118
119 #endif