-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.in
More file actions
99 lines (99 loc) · 3.15 KB
/
Copy pathconfig.in
File metadata and controls
99 lines (99 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#
# For a description of the syntax of this configuration file,
# see the Configure script.
#
*
* General setup
*
bool 'Kernel math emulation' CONFIG_MATH_EMULATION n
bool 'Normal harddisk support' CONFIG_BLK_DEV_HD y
bool 'XT harddisk support' CONFIG_BLK_DEV_XD y
bool 'TCP/IP networking' CONFIG_INET y
bool 'Limit memory to low 16MB' CONFIG_MAX_16M n
bool 'System V IPC' CONFIG_SYSVIPC y
bool 'Use -m486 flag for 486-specific optimizations' CONFIG_M486 y
*
* SCSI support
*
bool 'SCSI support?' CONFIG_SCSI y
if [ "$CONFIG_SCSI" = "n" ]
:
: Skipping SCSI configuration options...
:
else
*
* SCSI support type (disk, tape, CDrom)
*
bool 'Scsi disk support' CONFIG_BLK_DEV_SD y
bool 'Scsi tape support' CONFIG_BLK_DEV_ST y
bool 'Scsi CDROM support' CONFIG_BLK_DEV_SR y
*
* SCSI low-level drivers
*
bool 'Adaptec AHA1542 support' CONFIG_SCSI_AHA1542 y
bool 'Adaptec AHA1740 support' CONFIG_SCSI_AHA1740 y
bool 'Future Domain SCSI support' CONFIG_SCSI_FUTURE_DOMAIN y
bool 'Seagate ST-02 and Future Domain TMC-8xx SCSI support' CONFIG_SCSI_SEAGATE y
bool 'UltraStor SCSI support' CONFIG_SCSI_ULTRASTOR y
bool '7000FASST SCSI support' CONFIG_SCSI_7000FASST y
fi
*
* Network device support
*
bool 'Network device support?' CONFIG_ETHERCARDS y
if [ "$CONFIG_ETHERCARDS" = "n" ]
:
: Skipping ethercard configuration options...
:
else
bool 'SLIP (serial line) support' CONFIG_SLIP y
bool 'PLIP (parallel port) support' CONFIG_PLIP y
bool 'NE2000/NE1000 support' CONFIG_NE2000 y
bool 'WD80*3 support' CONFIG_WD80x3 y
#bool '3c501 support' CONFIG_EL1 n
bool '3c503 support' CONFIG_EL2 y
#bool '3c509 support' CONFIG_EL3 n
bool 'HP PCLAN support' CONFIG_HPLAN y
bool 'AT1500 and NE2100 support' CONFIG_AT1500 y
#bool 'DEPCA support' CONFIG_DEPCA n
bool 'D-Link DE600 pocket adaptor support' CONFIG_DE600 y
#bool 'AT-LAN-TEC pocket adaptor support' CONFIG_ATP n
#bool 'EtherExpress support' CONFIG_EEXPRESS n
fi
*
bool 'Sony CDU31A CDROM driver support' CONFIG_CDU31A y
bool 'Mitsumi CDROM driver support' CONFIG_MCD y
*
* Filesystems
*
bool 'Standard (minix) fs support' CONFIG_MINIX_FS y
bool 'Extended fs support' CONFIG_EXT_FS y
bool 'Second extended fs support' CONFIG_EXT2_FS y
bool 'xiafs filesystem support' CONFIG_XIA_FS y
bool 'msdos fs support' CONFIG_MSDOS_FS y
bool '/proc filesystem support' CONFIG_PROC_FS y
bool 'NFS filesystem support' CONFIG_NFS_FS y
bool 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS y
*
* character devices
*
bool 'Keyboard meta-key sends ESC-prefix' CONFIG_KBD_META y
bool 'Keyboard Num Lock on by default' CONFIG_KBD_NUML y
bool 'Logitech busmouse support' CONFIG_BUSMOUSE y
bool 'PS/2 mouse (aka "auxiliary device") support' CONFIG_PSMOUSE y
bool 'Microsoft busmouse support' CONFIG_MS_BUSMOUSE y
bool 'ATIXL busmouse support' CONFIG_ATIXL_BUSMOUSE y
bool 'Selection (cut and paste for virtual consoles)' CONFIG_SELECTION y
bool 'QIC-02 tape support' CONFIG_TAPE_QIC02 y
*
* Sound
*
bool 'Sound card support (distributed separately)' CONFIG_SOUND n
*
* Kernel hacking
*
bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC n
bool 'Kernel profiling support' CONFIG_PROFILE n
if [ "$CONFIG_SCSI" = "y" ]
bool 'Verbose scsi error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS n
fi