diff options
Diffstat (limited to 'src/include/linux/config.h')
-rw-r--r-- | src/include/linux/config.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/include/linux/config.h b/src/include/linux/config.h new file mode 100644 index 0000000..819b525 --- /dev/null +++ b/src/include/linux/config.h | |||
@@ -0,0 +1,48 @@ | |||
1 | #ifndef _CONFIG_H | ||
2 | #define _CONFIG_H | ||
3 | |||
4 | /* | ||
5 | * The root-device is no longer hard-coded. You can change the default | ||
6 | * root-device by changing the line ROOT_DEV = XXX in boot/bootsect.s | ||
7 | */ | ||
8 | |||
9 | /* | ||
10 | * define your keyboard here - | ||
11 | * KBD_FINNISH for Finnish keyboards | ||
12 | * KBD_US for US-type | ||
13 | * KBD_GR for German keyboards | ||
14 | * KBD_FR for Frech keyboard | ||
15 | */ | ||
16 | #define KBD_US | ||
17 | /*#define KBD_GR */ | ||
18 | /*#define KBD_FR */ | ||
19 | /*#define KBD_FINNISH */ | ||
20 | |||
21 | /* | ||
22 | * Normally, Linux can get the drive parameters from the BIOS at | ||
23 | * startup, but if this for some unfathomable reason fails, you'd | ||
24 | * be left stranded. For this case, you can define HD_TYPE, which | ||
25 | * contains all necessary info on your harddisk. | ||
26 | * | ||
27 | * The HD_TYPE macro should look like this: | ||
28 | * | ||
29 | * #define HD_TYPE { head, sect, cyl, wpcom, lzone, ctl} | ||
30 | * | ||
31 | * In case of two harddisks, the info should be sepatated by | ||
32 | * commas: | ||
33 | * | ||
34 | * #define HD_TYPE { h,s,c,wpcom,lz,ctl },{ h,s,c,wpcom,lz,ctl } | ||
35 | */ | ||
36 | /* | ||
37 | This is an example, two drives, first is type 2, second is type 3: | ||
38 | |||
39 | #define HD_TYPE { 4,17,615,300,615,8 }, { 6,17,615,300,615,0 } | ||
40 | |||
41 | NOTE: ctl is 0 for all drives with heads<=8, and ctl=8 for drives | ||
42 | with more than 8 heads. | ||
43 | |||
44 | If you want the BIOS to tell what kind of drive you have, just | ||
45 | leave HD_TYPE undefined. This is the normal thing to do. | ||
46 | */ | ||
47 | |||
48 | #endif | ||