-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog-2.6.18
6403 lines (6403 loc) · 306 KB
/
log-2.6.18
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
>>>>>>>>>> Cleaning...
CLEAN /mnt/hdb1/home/raz/work/fsbox/v2.6/linux-2.6.18
CLEAN scripts/basic
CLEAN scripts/genksyms
CLEAN scripts/kconfig
CLEAN scripts/mod
CLEAN include/config
CLEAN .config include/asm include/linux/autoconf.h include/linux/version.h include/linux/utsrelease.h
>>>>>>>>>> Configuring...
HOSTCC scripts/basic/fixdep
HOSTCC scripts/basic/docproc
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/kxgettext.o
HOSTCC scripts/kconfig/mconf.o
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/lex.zconf.c
SHIPPED scripts/kconfig/zconf.hash.c
HOSTCC scripts/kconfig/zconf.tab.o
HOSTLD scripts/kconfig/conf
scripts/kconfig/conf -m arch/i386/Kconfig
*
* Linux Kernel Configuration
*
*
* Code maturity level options
*
Prompt for development and/or incomplete code/drivers (EXPERIMENTAL) [N/y/?] (NEW) y
*
* General setup
*
Local version - append to kernel release (LOCALVERSION) [] (NEW)
Automatically append version information to the version string (LOCALVERSION_AUTO) [Y/n/?] (NEW) y
Support for paging of anonymous memory (swap) (SWAP) [Y/n/?] (NEW) y
System V IPC (SYSVIPC) [N/y/?] (NEW) y
BSD Process Accounting (BSD_PROCESS_ACCT) [N/y/?] (NEW) y
BSD Process Accounting version 3 file format (BSD_PROCESS_ACCT_V3) [N/y/?] (NEW) y
Kernel .config support (IKCONFIG) [N/y/?] (NEW) y
Enable access to .config through /proc/config.gz (IKCONFIG_PROC) [N/y/?] (NEW) y
Kernel->user space relay support (formerly relayfs) (RELAY) [N/y/?] (NEW) y
Initramfs source file(s) (INITRAMFS_SOURCE) [] (NEW)
Optimize for size (Look out for broken compilers!) (CC_OPTIMIZE_FOR_SIZE) [Y/n/?] (NEW) y
*
* Configure standard kernel features (for small systems)
*
Configure standard kernel features (for small systems) (EMBEDDED) [N/y/?] (NEW) y
Enable 16-bit UID system calls (UID16) [Y/n/?] (NEW) y
Sysctl support (SYSCTL) [Y/n/?] (NEW) y
Load all symbols for debugging/kksymoops (KALLSYMS) [Y/n/?] (NEW) y
Do an extra kallsyms pass (KALLSYMS_EXTRA_PASS) [N/y/?] (NEW) y
Support for hot-pluggable devices (HOTPLUG) [Y/n/?] (NEW) y
Enable support for printk (PRINTK) [Y/n/?] (NEW) y
BUG() support (BUG) [Y/n/?] (NEW) y
Enable ELF core dumps (ELF_CORE) [Y/n/?] (NEW) y
Enable full-sized data structures for core (BASE_FULL) [Y/n/?] (NEW) y
Enable futex support (FUTEX) [Y/n/?] (NEW) y
Enable eventpoll support (EPOLL) [Y/n/?] (NEW) y
Use full shmem filesystem (SHMEM) [Y/n/?] (NEW) y
Use full SLAB allocator (SLAB) [Y/n/?] (NEW) y
Enable VM event counters for /proc/vmstat (VM_EVENT_COUNTERS) [Y/n/?] (NEW) y
*
* Loadable module support
*
Enable loadable module support (MODULES) [N/y/?] (NEW) y
Module unloading (MODULE_UNLOAD) [N/y/?] (NEW) y
Forced module unloading (MODULE_FORCE_UNLOAD) [N/y/?] (NEW) y
Module versioning support (MODVERSIONS) [N/y/?] (NEW) y
Source checksum for all modules (MODULE_SRCVERSION_ALL) [N/y/?] (NEW) y
Automatic kernel module loading (KMOD) [N/y/?] (NEW) y
*
* Block layer
*
Support for Large Block Devices (LBD) [N/y/?] (NEW) y
Support for tracing block io actions (BLK_DEV_IO_TRACE) [N/y/?] (NEW) y
Support for Large Single Files (LSF) [N/y/?] (NEW) y
*
* IO Schedulers
*
Anticipatory I/O scheduler (IOSCHED_AS) [Y/n/m/?] (NEW) m
Deadline I/O scheduler (IOSCHED_DEADLINE) [Y/n/m/?] (NEW) m
CFQ I/O scheduler (IOSCHED_CFQ) [Y/n/m/?] (NEW) m
Default I/O scheduler
> 1. No-op (DEFAULT_NOOP) (NEW)
choice[1]: 1
*
* Processor type and features
*
Symmetric multi-processing support (SMP) [N/y/?] (NEW) y
Subarchitecture Type
> 1. PC-compatible (X86_PC) (NEW)
2. AMD Elan (X86_ELAN) (NEW)
3. Voyager (NCR) (X86_VOYAGER) (NEW)
4. NUMAQ (IBM/Sequent) (X86_NUMAQ) (NEW)
5. Summit/EXA (IBM x440) (X86_SUMMIT) (NEW)
6. Support for other sub-arch SMP systems with more than 8 CPUs (X86_BIGSMP) (NEW)
7. SGI 320/540 (Visual Workstation) (X86_VISWS) (NEW)
8. Generic architecture (Summit, bigsmp, ES7000, default) (X86_GENERICARCH) (NEW)
9. Support for Unisys ES7000 IA32 series (X86_ES7000) (NEW)
choice[1-9]: 1
Processor family
1. 386 (M386) (NEW)
2. 486 (M486) (NEW)
3. 586/K5/5x86/6x86/6x86MX (M586) (NEW)
4. Pentium-Classic (M586TSC) (NEW)
5. Pentium-MMX (M586MMX) (NEW)
> 6. Pentium-Pro (M686) (NEW)
7. Pentium-II/Celeron(pre-Coppermine) (MPENTIUMII) (NEW)
8. Pentium-III/Celeron(Coppermine)/Pentium-III Xeon (MPENTIUMIII) (NEW)
9. Pentium M (MPENTIUMM) (NEW)
10. Pentium-4/Celeron(P4-based)/Pentium-4 M/Xeon (MPENTIUM4) (NEW)
11. K6/K6-II/K6-III (MK6) (NEW)
12. Athlon/Duron/K7 (MK7) (NEW)
13. Opteron/Athlon64/Hammer/K8 (MK8) (NEW)
14. Crusoe (MCRUSOE) (NEW)
15. Efficeon (MEFFICEON) (NEW)
16. Winchip-C6 (MWINCHIPC6) (NEW)
17. Winchip-2 (MWINCHIP2) (NEW)
18. Winchip-2A/Winchip-3 (MWINCHIP3D) (NEW)
19. GeodeGX1 (MGEODEGX1) (NEW)
20. Geode GX/LX (MGEODE_LX) (NEW)
21. CyrixIII/VIA-C3 (MCYRIXIII) (NEW)
22. VIA C3-2 (Nehemiah) (MVIAC3_2) (NEW)
choice[1-22]: 6
Generic x86 support (X86_GENERIC) [N/y/?] (NEW) y
HPET Timer Support (HPET_TIMER) [N/y/?] (NEW) y
Maximum number of CPUs (2-255) (NR_CPUS) [8] (NEW) 8
SMT (Hyperthreading) scheduler support (SCHED_SMT) [N/y/?] (NEW) y
Multi-core scheduler support (SCHED_MC) [Y/n/?] (NEW) y
Preemption Model
> 1. No Forced Preemption (Server) (PREEMPT_NONE) (NEW)
2. Voluntary Kernel Preemption (Desktop) (PREEMPT_VOLUNTARY) (NEW)
3. Preemptible Kernel (Low-Latency Desktop) (PREEMPT) (NEW)
choice[1-3]: 1
Preempt The Big Kernel Lock (PREEMPT_BKL) [Y/n/?] (NEW) y
Machine Check Exception (X86_MCE) [N/y/?] (NEW) y
Check for non-fatal errors on AMD Athlon/Duron / Intel Pentium 4 (X86_MCE_NONFATAL) [N/m/y/?] (NEW) m
check for P4 thermal throttling interrupt. (X86_MCE_P4THERMAL) [N/y/?] (NEW) y
Enable VM86 support (VM86) [Y/n/?] (NEW) y
Toshiba Laptop support (TOSHIBA) [N/m/y/?] (NEW) m
Dell laptop support (I8K) [N/m/y/?] (NEW) m
Enable X86 board specific fixups for reboot (X86_REBOOTFIXUPS) [N/y/?] (NEW) y
/dev/cpu/microcode - Intel IA32 CPU microcode support (MICROCODE) [N/m/y/?] (NEW) m
/dev/cpu/*/msr - Model-specific register support (X86_MSR) [N/m/y/?] (NEW) m
/dev/cpu/*/cpuid - CPU information support (X86_CPUID) [N/m/y/?] (NEW) m
*
* Firmware Drivers
*
BIOS Enhanced Disk Drive calls determine boot disk (EDD) [N/m/y/?] (NEW) m
BIOS update support for DELL systems via sysfs (DELL_RBU) [N/m/y/?] (NEW) m
Dell Systems Management Base Driver (DCDBAS) [N/m/y/?] (NEW) m
High Memory Support
> 1. off (NOHIGHMEM) (NEW)
2. 4GB (HIGHMEM4G) (NEW)
3. 64GB (HIGHMEM64G) (NEW)
choice[1-3]: 1
Memory split
> 1. 3G/1G user/kernel split (VMSPLIT_3G) (NEW)
2. 3G/1G user/kernel split (for full 1G low memory) (VMSPLIT_3G_OPT) (NEW)
3. 2G/2G user/kernel split (VMSPLIT_2G) (NEW)
4. 1G/3G user/kernel split (VMSPLIT_1G) (NEW)
choice[1-4?]: 1
Memory model
> 1. Flat Memory (FLATMEM_MANUAL) (NEW)
2. Sparse Memory (SPARSEMEM_MANUAL) (NEW)
choice[1-2]: 1
64 bit Memory and IO resources (EXPERIMENTAL) (RESOURCES_64BIT) [N/y/?] (NEW) y
Math emulation (MATH_EMULATION) [N/y/?] (NEW) y
MTRR (Memory Type Range Register) support (MTRR) [N/y/?] (NEW) y
Enable kernel irq balancing (IRQBALANCE) [Y/n/?] (NEW) y
Use register arguments (REGPARM) [Y/n/?] (NEW) y
Enable seccomp to safely compute untrusted bytecode (SECCOMP) [Y/n/?] (NEW) y
Timer frequency
1. 100 HZ (HZ_100) (NEW)
> 2. 250 HZ (HZ_250) (NEW)
3. 1000 HZ (HZ_1000) (NEW)
choice[1-3?]: 2
kexec system call (EXPERIMENTAL) (KEXEC) [N/y/?] (NEW) y
Physical address where the kernel is loaded (PHYSICAL_START) [0x100000] (NEW) 0x100000
Support for hot-pluggable CPUs (EXPERIMENTAL) (HOTPLUG_CPU) [N/y/?] (NEW) y
Compat VDSO support (COMPAT_VDSO) [Y/n/?] (NEW) y
*
* Power management options (ACPI, APM)
*
Power Management support (PM) [N/y/?] (NEW) y
Legacy Power Management API (PM_LEGACY) [Y/n/?] (NEW) y
Power Management Debug Support (PM_DEBUG) [N/y/?] (NEW) y
Suspend/resume event tracing (PM_TRACE) [N/y/?] (NEW) y
Software Suspend (SOFTWARE_SUSPEND) [N/y/?] (NEW) y
Default resume partition (PM_STD_PARTITION) [] (NEW)
*
* ACPI (Advanced Configuration and Power Interface) Support
*
*
* APM (Advanced Power Management) BIOS Support
*
APM (Advanced Power Management) BIOS support (APM) [N/m/y/?] (NEW) m
Ignore USER SUSPEND (APM_IGNORE_USER_SUSPEND) [N/y/?] (NEW) y
Enable PM at boot time (APM_DO_ENABLE) [N/y/?] (NEW) y
Make CPU Idle calls when idle (APM_CPU_IDLE) [N/y/?] (NEW) y
Enable console blanking using APM (APM_DISPLAY_BLANK) [N/y/?] (NEW) y
RTC stores time in GMT (APM_RTC_IS_GMT) [N/y/?] (NEW) y
Allow interrupts during APM BIOS calls (APM_ALLOW_INTS) [N/y/?] (NEW) y
Use real mode APM BIOS call to power off (APM_REAL_MODE_POWER_OFF) [N/y/?] (NEW) y
*
* CPU Frequency scaling
*
CPU Frequency scaling (CPU_FREQ) [N/y/?] (NEW) y
Enable CPUfreq debugging (CPU_FREQ_DEBUG) [N/y/?] (NEW) y
CPU frequency translation statistics (CPU_FREQ_STAT) [Y/n/m/?] (NEW) m
CPU frequency translation statistics details (CPU_FREQ_STAT_DETAILS) [N/y/?] (NEW) y
Default CPUFreq governor
> 1. performance (CPU_FREQ_DEFAULT_GOV_PERFORMANCE) (NEW)
2. userspace (CPU_FREQ_DEFAULT_GOV_USERSPACE) (NEW)
choice[1-2?]: 1
'performance' governor (CPU_FREQ_GOV_PERFORMANCE) [Y/?] (NEW) y
'powersave' governor (CPU_FREQ_GOV_POWERSAVE) [N/m/y/?] (NEW) m
'userspace' governor for userspace frequency scaling (CPU_FREQ_GOV_USERSPACE) [N/m/y/?] (NEW) m
'ondemand' cpufreq policy governor (CPU_FREQ_GOV_ONDEMAND) [N/m/y/?] (NEW) m
'conservative' cpufreq governor (CPU_FREQ_GOV_CONSERVATIVE) [N/m/y/?] (NEW) m
*
* CPUFreq processor drivers
*
AMD Mobile K6-2/K6-3 PowerNow! (X86_POWERNOW_K6) [N/m/y/?] (NEW) m
AMD Mobile Athlon/Duron PowerNow! (X86_POWERNOW_K7) [N/m/y/?] (NEW) m
AMD Opteron/Athlon64 PowerNow! (X86_POWERNOW_K8) [N/m/y/?] (NEW) m
Intel Enhanced SpeedStep (X86_SPEEDSTEP_CENTRINO) [N/m/y/?] (NEW) m
Built-in tables for Banias CPUs (X86_SPEEDSTEP_CENTRINO_TABLE) [Y/?] (NEW) y
Intel Speedstep on ICH-M chipsets (ioport interface) (X86_SPEEDSTEP_ICH) [N/m/y/?] (NEW) m
Intel SpeedStep on 440BX/ZX/MX chipsets (SMI interface) (X86_SPEEDSTEP_SMI) [N/m/y/?] (NEW) m
Intel Pentium 4 clock modulation (X86_P4_CLOCKMOD) [N/m/y/?] (NEW) m
nVidia nForce2 FSB changing (X86_CPUFREQ_NFORCE2) [N/m/y/?] (NEW) m
Transmeta LongRun (X86_LONGRUN) [N/m/y/?] (NEW) m
*
* shared options
*
Relaxed speedstep capability checks (X86_SPEEDSTEP_RELAXED_CAP_CHECK) [N/y/?] (NEW) y
*
* Bus options (PCI, PCMCIA, EISA, MCA, ISA)
*
PCI support (PCI) [N/y/?] (NEW) y
PCI access mode
1. BIOS (PCI_GOBIOS) (NEW)
2. MMConfig (PCI_GOMMCONFIG) (NEW)
3. Direct (PCI_GODIRECT) (NEW)
> 4. Any (PCI_GOANY) (NEW)
choice[1-4?]: 4
PCI Express support (PCIEPORTBUS) [N/y/?] (NEW) y
Message Signaled Interrupts (MSI and MSI-X) (PCI_MSI) [N/y/?] (NEW) y
ISA support (ISA) [N/y/?] (NEW) y
EISA support (EISA) [N/y/?] (NEW) y
Vesa Local Bus priming (EISA_VLB_PRIMING) [N/y/?] (NEW) y
Generic PCI/EISA bridge (EISA_PCI_EISA) [Y/n/?] (NEW) y
EISA virtual root device (EISA_VIRTUAL_ROOT) [Y/n/?] (NEW) y
EISA device name database (EISA_NAMES) [Y/n/?] (NEW) y
MCA support (MCA) [N/y/?] (NEW) y
Legacy MCA API Support (MCA_LEGACY) [N/y/?] (NEW) y
Support for the mca entry in /proc (MCA_PROC_FS) [N/y/?] (NEW) y
NatSemi SCx200 support (SCx200) [N/m/y/?] (NEW) m
NatSemi SCx200 27MHz High-Resolution Timer Support (SCx200HR_TIMER) [M/n/?] (NEW) m
*
* PCCARD (PCMCIA/CardBus) support
*
PCCard (PCMCIA/CardBus) support (PCCARD) [N/m/y/?] (NEW) m
Enable PCCARD debugging (PCMCIA_DEBUG) [N/y/?] (NEW) y
16-bit PCMCIA support (PCMCIA) [M/n/?] (NEW) m
Load CIS updates from userspace (EXPERIMENTAL) (PCMCIA_LOAD_CIS) [Y/n/?] (NEW) y
PCMCIA control ioctl (obsolete) (PCMCIA_IOCTL) [Y/n/?] (NEW) y
32-bit CardBus support (CARDBUS) [Y/n/?] (NEW) y
*
* PC-card bridges
*
CardBus yenta-compatible bridge support (YENTA) [N/m/?] (NEW) m
Special initialization for O2Micro bridges (YENTA_O2) [Y/n] (NEW) y
Special initialization for Ricoh bridges (YENTA_RICOH) [Y/n] (NEW) y
Special initialization for TI and EnE bridges (YENTA_TI) [Y/n] (NEW) y
Auto-tune EnE bridges for CB cards (YENTA_ENE_TUNE) [Y/n] (NEW) y
Special initialization for Toshiba ToPIC bridges (YENTA_TOSHIBA) [Y/n] (NEW) y
Cirrus PD6729 compatible bridge support (PD6729) [N/m/?] (NEW) m
i82092 compatible bridge support (I82092) [N/m/?] (NEW) m
i82365 compatible bridge support (I82365) [N/m/?] (NEW) m
Databook TCIC host bridge support (TCIC) [N/m/?] (NEW) m
*
* PCI Hotplug Support
*
Support for PCI Hotplug (EXPERIMENTAL) (HOTPLUG_PCI) [N/m/y/?] (NEW) m
Fake PCI Hotplug driver (HOTPLUG_PCI_FAKE) [N/m/?] (NEW) m
Compaq PCI Hotplug driver (HOTPLUG_PCI_COMPAQ) [N/m/?] (NEW) m
Save configuration into NVRAM on Compaq servers (HOTPLUG_PCI_COMPAQ_NVRAM) [N/y/?] (NEW) y
IBM PCI Hotplug driver (HOTPLUG_PCI_IBM) [N/m/?] (NEW) m
ACPI PCI Hotplug driver (HOTPLUG_PCI_ACPI) [N/m/?] (NEW) m
ACPI PCI Hotplug driver IBM extensions (HOTPLUG_PCI_ACPI_IBM) [N/m/?] (NEW) m
CompactPCI Hotplug driver (HOTPLUG_PCI_CPCI) [N/y/?] (NEW) y
Ziatech ZT5550 CompactPCI Hotplug driver (HOTPLUG_PCI_CPCI_ZT5550) [N/m/?] (NEW) m
Generic port I/O CompactPCI Hotplug driver (HOTPLUG_PCI_CPCI_GENERIC) [N/m/?] (NEW) m
SHPC PCI Hotplug driver (HOTPLUG_PCI_SHPC) [N/m/?] (NEW) m
Use polling mechanism for hot-plug events (for testing purpose) (HOTPLUG_PCI_SHPC_POLL_EVENT_MODE) [N/y/?] (NEW) y
*
* Executable file formats
*
Kernel support for ELF binaries (BINFMT_ELF) [Y/n/?] (NEW) y
Kernel support for a.out and ECOFF binaries (BINFMT_AOUT) [N/m/y/?] (NEW) m
Kernel support for MISC binaries (BINFMT_MISC) [N/m/y/?] (NEW) m
*
* Networking
*
Networking support (NET) [N/y/?] (NEW) y
*
* Networking options
*
Network packet debugging (NETDEBUG) [N/y/?] (NEW) y
Packet socket (PACKET) [N/m/y/?] (NEW) m
Packet socket: mmapped IO (PACKET_MMAP) [N/y/?] (NEW) y
Unix domain sockets (UNIX) [N/m/y/?] (NEW) m
PF_KEY sockets (NET_KEY) [N/m/y/?] (NEW) m
TCP/IP networking (INET) [N/y/?] (NEW) y
IP: multicasting (IP_MULTICAST) [N/y/?] (NEW) y
IP: advanced router (IP_ADVANCED_ROUTER) [N/y/?] (NEW) y
Choose IP: FIB lookup algorithm (choose FIB_HASH if unsure)
> 1. FIB_HASH (ASK_IP_FIB_HASH) (NEW)
2. FIB_TRIE (IP_FIB_TRIE) (NEW)
choice[1-2]: 1
IP: policy routing (IP_MULTIPLE_TABLES) [N/y/?] (NEW) y
IP: equal cost multipath (IP_ROUTE_MULTIPATH) [N/y/?] (NEW) y
IP: equal cost multipath with caching support (EXPERIMENTAL) (IP_ROUTE_MULTIPATH_CACHED) [N/y/?] (NEW) y
MULTIPATH: round robin algorithm (IP_ROUTE_MULTIPATH_RR) [N/m/y/?] (NEW) m
MULTIPATH: random algorithm (IP_ROUTE_MULTIPATH_RANDOM) [N/m/y/?] (NEW) m
MULTIPATH: weighted random algorithm (IP_ROUTE_MULTIPATH_WRANDOM) [N/m/y/?] (NEW) m
MULTIPATH: interface round robin algorithm (IP_ROUTE_MULTIPATH_DRR) [N/m/y/?] (NEW) m
IP: verbose route monitoring (IP_ROUTE_VERBOSE) [N/y/?] (NEW) y
IP: kernel level autoconfiguration (IP_PNP) [N/y/?] (NEW) y
IP: DHCP support (IP_PNP_DHCP) [N/y/?] (NEW) y
IP: BOOTP support (IP_PNP_BOOTP) [N/y/?] (NEW) y
IP: RARP support (IP_PNP_RARP) [N/y/?] (NEW) y
IP: tunneling (NET_IPIP) [N/m/y/?] (NEW) m
IP: GRE tunnels over IP (NET_IPGRE) [N/m/y/?] (NEW) m
IP: broadcast GRE over IP (NET_IPGRE_BROADCAST) [N/y/?] (NEW) y
IP: multicast routing (IP_MROUTE) [N/y/?] (NEW) y
IP: PIM-SM version 1 support (IP_PIMSM_V1) [N/y/?] (NEW) y
IP: PIM-SM version 2 support (IP_PIMSM_V2) [N/y/?] (NEW) y
IP: ARP daemon support (EXPERIMENTAL) (ARPD) [N/y/?] (NEW) y
IP: TCP syncookie support (disabled per default) (SYN_COOKIES) [N/y/?] (NEW) y
IP: AH transformation (INET_AH) [N/m/y/?] (NEW) m
IP: ESP transformation (INET_ESP) [N/m/y/?] (NEW) m
IP: IPComp transformation (INET_IPCOMP) [N/m/y/?] (NEW) m
IP: IPsec transport mode (INET_XFRM_MODE_TRANSPORT) [Y/n/m/?] (NEW) m
IP: IPsec tunnel mode (INET_XFRM_MODE_TUNNEL) [Y/n/m/?] (NEW) m
INET: socket monitoring interface (INET_DIAG) [Y/n/m/?] (NEW) m
TCP: advanced congestion control (TCP_CONG_ADVANCED) [N/y/?] (NEW) y
*
* TCP congestion control
*
Binary Increase Congestion (BIC) control (TCP_CONG_BIC) [Y/n/m/?] (NEW) m
CUBIC TCP (TCP_CONG_CUBIC) [M/n/y/?] (NEW) m
TCP Westwood+ (TCP_CONG_WESTWOOD) [M/n/y/?] (NEW) m
H-TCP (TCP_CONG_HTCP) [M/n/y/?] (NEW) m
High Speed TCP (TCP_CONG_HSTCP) [N/m/y/?] (NEW) m
TCP-Hybla congestion control algorithm (TCP_CONG_HYBLA) [N/m/y/?] (NEW) m
TCP Vegas (TCP_CONG_VEGAS) [N/m/y/?] (NEW) m
Scalable TCP (TCP_CONG_SCALABLE) [N/m/y/?] (NEW) m
TCP Low Priority (TCP_CONG_LP) [N/m/y/?] (NEW) m
TCP Veno (TCP_CONG_VENO) [N/m/y/?] (NEW) m
The IPv6 protocol (IPV6) [M/n/y/?] (NEW) m
IPv6: Privacy Extensions support (IPV6_PRIVACY) [N/y/?] (NEW) y
IPv6: Router Preference (RFC 4191) support (IPV6_ROUTER_PREF) [N/y/?] (NEW) y
IPv6: Route Information (RFC 4191) support (EXPERIMENTAL) (IPV6_ROUTE_INFO) [N/y/?] (NEW) y
IPv6: AH transformation (INET6_AH) [N/m/?] (NEW) m
IPv6: ESP transformation (INET6_ESP) [N/m/?] (NEW) m
IPv6: IPComp transformation (INET6_IPCOMP) [N/m/?] (NEW) m
IPv6: IPsec transport mode (INET6_XFRM_MODE_TRANSPORT) [M/n/?] (NEW) m
IPv6: IPsec tunnel mode (INET6_XFRM_MODE_TUNNEL) [M/n/?] (NEW) m
IPv6: IPv6-in-IPv6 tunnel (IPV6_TUNNEL) [N/m/?] (NEW) m
Security Marking (NETWORK_SECMARK) [N/y/?] (NEW) y
*
* Network packet filtering (replaces ipchains)
*
Network packet filtering (replaces ipchains) (NETFILTER) [N/y/?] (NEW) y
Network packet filtering debugging (NETFILTER_DEBUG) [N/y/?] (NEW) y
*
* Core Netfilter Configuration
*
Netfilter netlink interface (NETFILTER_NETLINK) [N/m/y/?] (NEW) m
Netfilter NFQUEUE over NFNETLINK interface (NETFILTER_NETLINK_QUEUE) [N/m/?] (NEW) m
Netfilter LOG over NFNETLINK interface (NETFILTER_NETLINK_LOG) [N/m/?] (NEW) m
Layer 3 Independent Connection tracking (EXPERIMENTAL) (NF_CONNTRACK) [N/m/y/?] (NEW) m
Connection tracking flow accounting (NF_CT_ACCT) [N/y/?] (NEW) y
Connection mark tracking support (NF_CONNTRACK_MARK) [N/y/?] (NEW) y
Connection tracking security mark support (NF_CONNTRACK_SECMARK) [N/y/?] (NEW) y
Connection tracking events (EXPERIMENTAL) (NF_CONNTRACK_EVENTS) [N/y/?] (NEW) y
SCTP protocol on new connection tracking support (EXPERIMENTAL) (NF_CT_PROTO_SCTP) [N/m/?] (NEW) m
FTP support on new connection tracking (EXPERIMENTAL) (NF_CONNTRACK_FTP) [N/m/?] (NEW) m
Connection tracking netlink interface (EXPERIMENTAL) (NF_CT_NETLINK) [N/m/?] (NEW) m
Netfilter Xtables support (required for ip_tables) (NETFILTER_XTABLES) [N/m/y/?] (NEW) m
"CLASSIFY" target support (NETFILTER_XT_TARGET_CLASSIFY) [N/m/?] (NEW) m
"MARK" target support (NETFILTER_XT_TARGET_MARK) [N/m/?] (NEW) m
"NFQUEUE" target Support (NETFILTER_XT_TARGET_NFQUEUE) [N/m/?] (NEW) m
"SECMARK" target support (NETFILTER_XT_TARGET_SECMARK) [N/m/?] (NEW) m
"CONNSECMARK" target support (NETFILTER_XT_TARGET_CONNSECMARK) [N/m/?] (NEW) m
"comment" match support (NETFILTER_XT_MATCH_COMMENT) [N/m/?] (NEW) m
"connbytes" per-connection counter match support (NETFILTER_XT_MATCH_CONNBYTES) [N/m/?] (NEW) m
"connmark" connection mark match support (NETFILTER_XT_MATCH_CONNMARK) [N/m/?] (NEW) m
"conntrack" connection tracking match support (NETFILTER_XT_MATCH_CONNTRACK) [N/m/?] (NEW) m
"DCCP" protocol match support (NETFILTER_XT_MATCH_DCCP) [N/m/?] (NEW) m
"ESP" match support (NETFILTER_XT_MATCH_ESP) [N/m/?] (NEW) m
"helper" match support (NETFILTER_XT_MATCH_HELPER) [N/m/?] (NEW) m
"length" match support (NETFILTER_XT_MATCH_LENGTH) [N/m/?] (NEW) m
"limit" match support (NETFILTER_XT_MATCH_LIMIT) [N/m/?] (NEW) m
"mac" address match support (NETFILTER_XT_MATCH_MAC) [N/m/?] (NEW) m
"mark" match support (NETFILTER_XT_MATCH_MARK) [N/m/?] (NEW) m
IPsec "policy" match support (NETFILTER_XT_MATCH_POLICY) [N/m/?] (NEW) m
Multiple port match support (NETFILTER_XT_MATCH_MULTIPORT) [N/m/?] (NEW) m
"pkttype" packet type match support (NETFILTER_XT_MATCH_PKTTYPE) [N/m/?] (NEW) m
"quota" match support (NETFILTER_XT_MATCH_QUOTA) [N/m/?] (NEW) m
"realm" match support (NETFILTER_XT_MATCH_REALM) [N/m/?] (NEW) m
"sctp" protocol match support (EXPERIMENTAL) (NETFILTER_XT_MATCH_SCTP) [N/m/?] (NEW) m
"state" match support (NETFILTER_XT_MATCH_STATE) [N/m/?] (NEW) m
"statistic" match support (NETFILTER_XT_MATCH_STATISTIC) [N/m/?] (NEW) m
"string" match support (NETFILTER_XT_MATCH_STRING) [N/m/?] (NEW) m
"tcpmss" match support (NETFILTER_XT_MATCH_TCPMSS) [N/m/?] (NEW) m
*
* IP: Netfilter Configuration
*
IPv4 support for new connection tracking (EXPERIMENTAL) (NF_CONNTRACK_IPV4) [N/m/?] (NEW) m
Connection tracking (required for masq/NAT) (IP_NF_CONNTRACK) [N/m/y/?] (NEW) m
Connection tracking flow accounting (IP_NF_CT_ACCT) [N/y/?] (NEW) y
Connection mark tracking support (IP_NF_CONNTRACK_MARK) [N/y/?] (NEW) y
Connection tracking security mark support (IP_NF_CONNTRACK_SECMARK) [N/y/?] (NEW) y
Connection tracking events (EXPERIMENTAL) (IP_NF_CONNTRACK_EVENTS) [N/y/?] (NEW) y
Connection tracking netlink interface (EXPERIMENTAL) (IP_NF_CONNTRACK_NETLINK) [N/m/?] (NEW) m
SCTP protocol connection tracking support (EXPERIMENTAL) (IP_NF_CT_PROTO_SCTP) [N/m/?] (NEW) m
FTP protocol support (IP_NF_FTP) [N/m/?] (NEW) m
IRC protocol support (IP_NF_IRC) [N/m/?] (NEW) m
NetBIOS name service protocol support (EXPERIMENTAL) (IP_NF_NETBIOS_NS) [N/m/?] (NEW) m
TFTP protocol support (IP_NF_TFTP) [N/m/?] (NEW) m
Amanda backup protocol support (IP_NF_AMANDA) [N/m/?] (NEW) m
PPTP protocol support (IP_NF_PPTP) [N/m/?] (NEW) m
H.323 protocol support (EXPERIMENTAL) (IP_NF_H323) [N/m/?] (NEW) m
SIP protocol support (EXPERIMENTAL) (IP_NF_SIP) [N/m/?] (NEW) m
IP Userspace queueing via NETLINK (OBSOLETE) (IP_NF_QUEUE) [N/m/y/?] (NEW) m
IP tables support (required for filtering/masq/NAT) (IP_NF_IPTABLES) [N/m/?] (NEW) m
IP range match support (IP_NF_MATCH_IPRANGE) [N/m/?] (NEW) m
TOS match support (IP_NF_MATCH_TOS) [N/m/?] (NEW) m
recent match support (IP_NF_MATCH_RECENT) [N/m/?] (NEW) m
ECN match support (IP_NF_MATCH_ECN) [N/m/?] (NEW) m
DSCP match support (IP_NF_MATCH_DSCP) [N/m/?] (NEW) m
AH match support (IP_NF_MATCH_AH) [N/m/?] (NEW) m
TTL match support (IP_NF_MATCH_TTL) [N/m/?] (NEW) m
Owner match support (IP_NF_MATCH_OWNER) [N/m/?] (NEW) m
address type match support (IP_NF_MATCH_ADDRTYPE) [N/m/?] (NEW) m
hashlimit match support (IP_NF_MATCH_HASHLIMIT) [N/m/?] (NEW) m
Packet filtering (IP_NF_FILTER) [N/m/?] (NEW) m
REJECT target support (IP_NF_TARGET_REJECT) [N/m/?] (NEW) m
LOG target support (IP_NF_TARGET_LOG) [N/m/?] (NEW) m
ULOG target support (IP_NF_TARGET_ULOG) [N/m/?] (NEW) m
TCPMSS target support (IP_NF_TARGET_TCPMSS) [N/m/?] (NEW) m
Full NAT (IP_NF_NAT) [N/m/?] (NEW) m
MASQUERADE target support (IP_NF_TARGET_MASQUERADE) [N/m/?] (NEW) m
REDIRECT target support (IP_NF_TARGET_REDIRECT) [N/m/?] (NEW) m
NETMAP target support (IP_NF_TARGET_NETMAP) [N/m/?] (NEW) m
SAME target support (IP_NF_TARGET_SAME) [N/m/?] (NEW) m
Basic SNMP-ALG support (EXPERIMENTAL) (IP_NF_NAT_SNMP_BASIC) [N/m/?] (NEW) m
Packet mangling (IP_NF_MANGLE) [N/m/?] (NEW) m
TOS target support (IP_NF_TARGET_TOS) [N/m/?] (NEW) m
ECN target support (IP_NF_TARGET_ECN) [N/m/?] (NEW) m
DSCP target support (IP_NF_TARGET_DSCP) [N/m/?] (NEW) m
TTL target support (IP_NF_TARGET_TTL) [N/m/?] (NEW) m
CLUSTERIP target support (EXPERIMENTAL) (IP_NF_TARGET_CLUSTERIP) [N/m/?] (NEW) m
raw table support (required for NOTRACK/TRACE) (IP_NF_RAW) [N/m/?] (NEW) m
ARP tables support (IP_NF_ARPTABLES) [N/m/?] (NEW) m
ARP packet filtering (IP_NF_ARPFILTER) [N/m/?] (NEW) m
ARP payload mangling (IP_NF_ARP_MANGLE) [N/m/?] (NEW) m
*
* IPv6: Netfilter Configuration (EXPERIMENTAL)
*
IP6 Userspace queueing via NETLINK (OBSOLETE) (IP6_NF_QUEUE) [N/m/?] (NEW) m
IP6 tables support (required for filtering/masq/NAT) (IP6_NF_IPTABLES) [N/m/?] (NEW) m
Routing header match support (IP6_NF_MATCH_RT) [N/m/?] (NEW) m
Hop-by-hop and Dst opts header match support (IP6_NF_MATCH_OPTS) [N/m/?] (NEW) m
Fragmentation header match support (IP6_NF_MATCH_FRAG) [N/m/?] (NEW) m
HL match support (IP6_NF_MATCH_HL) [N/m/?] (NEW) m
Owner match support (IP6_NF_MATCH_OWNER) [N/m/?] (NEW) m
IPv6 Extension Headers Match (IP6_NF_MATCH_IPV6HEADER) [N/m/?] (NEW) m
AH match support (IP6_NF_MATCH_AH) [N/m/?] (NEW) m
EUI64 address check (IP6_NF_MATCH_EUI64) [N/m/?] (NEW) m
Packet filtering (IP6_NF_FILTER) [N/m/?] (NEW) m
LOG target support (IP6_NF_TARGET_LOG) [N/m/?] (NEW) m
REJECT target support (IP6_NF_TARGET_REJECT) [N/m/?] (NEW) m
Packet mangling (IP6_NF_MANGLE) [N/m/?] (NEW) m
HL (hoplimit) target support (IP6_NF_TARGET_HL) [N/m/?] (NEW) m
raw table support (required for TRACE) (IP6_NF_RAW) [N/m/?] (NEW) m
*
* DCCP Configuration (EXPERIMENTAL)
*
The DCCP Protocol (EXPERIMENTAL) (IP_DCCP) [N/m/y/?] (NEW) m
*
* DCCP CCIDs Configuration (EXPERIMENTAL)
*
CCID2 (TCP-Like) (EXPERIMENTAL) (IP_DCCP_CCID2) [M/n/?] (NEW) m
CCID3 (TCP-Friendly) (EXPERIMENTAL) (IP_DCCP_CCID3) [M/n/?] (NEW) m
*
* SCTP Configuration (EXPERIMENTAL)
*
The SCTP Protocol (EXPERIMENTAL) (IP_SCTP) [N/m/?] (NEW) m
SCTP: Debug messages (SCTP_DBG_MSG) [N/y/?] (NEW) y
SCTP: Debug object counts (SCTP_DBG_OBJCNT) [N/y/?] (NEW) y
SCTP: Cookie HMAC Algorithm
1. None (SCTP_HMAC_NONE) (NEW)
2. HMAC-SHA1 (SCTP_HMAC_SHA1) (NEW)
> 3. HMAC-MD5 (SCTP_HMAC_MD5) (NEW)
choice[1-3?]: 3
*
* TIPC Configuration (EXPERIMENTAL)
*
The TIPC Protocol (EXPERIMENTAL) (TIPC) [N/m/y/?] (NEW) m
TIPC: Advanced configuration (TIPC_ADVANCED) [N/y/?] (NEW) y
Maximum number of zones in network (TIPC_ZONES) [3] (NEW) 3
Maximum number of clusters in a zone (TIPC_CLUSTERS) [1] (NEW) 1
Maximum number of nodes in cluster (TIPC_NODES) [255] (NEW) 255
Maximum number of slave nodes in cluster (TIPC_SLAVE_NODES) [0] (NEW) 0
Maximum number of ports in a node (TIPC_PORTS) [8191] (NEW) 8191
Size of log buffer (TIPC_LOG) [0] (NEW) 0
Enable debugging support (TIPC_DEBUG) [N/y/?] (NEW) y
Asynchronous Transfer Mode (ATM) (EXPERIMENTAL) (ATM) [N/m/y/?] (NEW) m
Classical IP over ATM (EXPERIMENTAL) (ATM_CLIP) [N/m/?] (NEW) m
Do NOT send ICMP if no neighbour (EXPERIMENTAL) (ATM_CLIP_NO_ICMP) [N/y/?] (NEW) y
LAN Emulation (LANE) support (EXPERIMENTAL) (ATM_LANE) [N/m/?] (NEW) m
Multi-Protocol Over ATM (MPOA) support (EXPERIMENTAL) (ATM_MPOA) [N/m/?] (NEW) m
RFC1483/2684 Bridged protocols (ATM_BR2684) [N/m/?] (NEW) m
Per-VC IP filter kludge (ATM_BR2684_IPFILTER) [N/y/?] (NEW) y
802.1d Ethernet Bridging (BRIDGE) [N/m/y/?] (NEW) m
802.1Q VLAN Support (VLAN_8021Q) [N/m/y/?] (NEW) m
DECnet Support (DECNET) [N/m/y/?] (NEW) m
DECnet: router support (EXPERIMENTAL) (DECNET_ROUTER) [N/y/?] (NEW) y
DECnet: use FWMARK value as routing key (EXPERIMENTAL) (DECNET_ROUTE_FWMARK) [N/y/?] (NEW) y
ANSI/IEEE 802.2 LLC type 2 Support (LLC2) [N/m/y/?] (NEW) m
The IPX protocol (IPX) [N/m/y/?] (NEW) m
IPX: Full internal IPX network (IPX_INTERN) [N/y/?] (NEW) y
Appletalk protocol support (ATALK) [N/m/y/?] (NEW) m
Appletalk interfaces support (DEV_APPLETALK) [N/m/?] (NEW) m
Apple/Farallon LocalTalk PC support (LTPC) [N/m/?] (NEW) m
COPS LocalTalk PC support (COPS) [N/m/?] (NEW) m
Dayna firmware support (COPS_DAYNA) [N/y/?] (NEW) y
Tangent firmware support (COPS_TANGENT) [N/y/?] (NEW) y
Appletalk-IP driver support (IPDDP) [N/m/?] (NEW) m
IP to Appletalk-IP Encapsulation support (IPDDP_ENCAP) [N/y/?] (NEW) y
Appletalk-IP to IP Decapsulation support (IPDDP_DECAP) [N/y/?] (NEW) y
CCITT X.25 Packet Layer (EXPERIMENTAL) (X25) [N/m/y/?] (NEW) m
LAPB Data Link Driver (EXPERIMENTAL) (LAPB) [N/m/y/?] (NEW) m
Acorn Econet/AUN protocols (EXPERIMENTAL) (ECONET) [N/m/y/?] (NEW) m
AUN over UDP (ECONET_AUNUDP) [N/y/?] (NEW) y
Native Econet (ECONET_NATIVE) [N/y/?] (NEW) y
WAN router (WAN_ROUTER) [N/m/y/?] (NEW) m
*
* QoS and/or fair queueing
*
QoS and/or fair queueing (NET_SCHED) [N/y/?] (NEW) y
Packet scheduler clock source
1. Timer interrupt (NET_SCH_CLK_JIFFIES) (NEW)
> 2. gettimeofday (NET_SCH_CLK_GETTIMEOFDAY) (NEW)
choice[1-2?]: 2
*
* Queueing/Scheduling
*
Class Based Queueing (CBQ) (NET_SCH_CBQ) [N/m/y/?] (NEW) m
Hierarchical Token Bucket (HTB) (NET_SCH_HTB) [N/m/y/?] (NEW) m
Hierarchical Fair Service Curve (HFSC) (NET_SCH_HFSC) [N/m/y/?] (NEW) m
ATM Virtual Circuits (ATM) (NET_SCH_ATM) [N/m/?] (NEW) m
Multi Band Priority Queueing (PRIO) (NET_SCH_PRIO) [N/m/y/?] (NEW) m
Random Early Detection (RED) (NET_SCH_RED) [N/m/y/?] (NEW) m
Stochastic Fairness Queueing (SFQ) (NET_SCH_SFQ) [N/m/y/?] (NEW) m
True Link Equalizer (TEQL) (NET_SCH_TEQL) [N/m/y/?] (NEW) m
Token Bucket Filter (TBF) (NET_SCH_TBF) [N/m/y/?] (NEW) m
Generic Random Early Detection (GRED) (NET_SCH_GRED) [N/m/y/?] (NEW) m
Differentiated Services marker (DSMARK) (NET_SCH_DSMARK) [N/m/y/?] (NEW) m
Network emulator (NETEM) (NET_SCH_NETEM) [N/m/y/?] (NEW) m
Ingress Qdisc (NET_SCH_INGRESS) [N/m/y/?] (NEW) m
*
* Classification
*
Elementary classification (BASIC) (NET_CLS_BASIC) [N/m/y/?] (NEW) m
Traffic-Control Index (TCINDEX) (NET_CLS_TCINDEX) [N/m/y/?] (NEW) m
Routing decision (ROUTE) (NET_CLS_ROUTE4) [N/m/y/?] (NEW) m
Netfilter mark (FW) (NET_CLS_FW) [N/m/y/?] (NEW) m
Universal 32bit comparisons w/ hashing (U32) (NET_CLS_U32) [N/m/y/?] (NEW) m
Performance counters support (CLS_U32_PERF) [N/y/?] (NEW) y
Netfilter marks support (CLS_U32_MARK) [N/y/?] (NEW) y
IPv4 Resource Reservation Protocol (RSVP) (NET_CLS_RSVP) [N/m/y/?] (NEW) m
IPv6 Resource Reservation Protocol (RSVP6) (NET_CLS_RSVP6) [N/m/y/?] (NEW) m
Extended Matches (NET_EMATCH) [N/y/?] (NEW) y
Stack size (NET_EMATCH_STACK) [32] (NEW) 32
Simple packet data comparison (NET_EMATCH_CMP) [N/m/y/?] (NEW) m
Multi byte comparison (NET_EMATCH_NBYTE) [N/m/y/?] (NEW) m
U32 key (NET_EMATCH_U32) [N/m/y/?] (NEW) m
Metadata (NET_EMATCH_META) [N/m/y/?] (NEW) m
Textsearch (NET_EMATCH_TEXT) [N/m/y/?] (NEW) m
Actions (NET_CLS_ACT) [N/y/?] (NEW) y
Traffic Policing (NET_ACT_POLICE) [N/m/y/?] (NEW) m
Generic actions (NET_ACT_GACT) [N/m/y/?] (NEW) m
Probability support (GACT_PROB) [N/y/?] (NEW) y
Redirecting and Mirroring (NET_ACT_MIRRED) [N/m/y/?] (NEW) m
IPtables targets (NET_ACT_IPT) [N/m/?] (NEW) m
Packet Editing (NET_ACT_PEDIT) [N/m/y/?] (NEW) m
Simple Example (Debug) (NET_ACT_SIMP) [N/m/y/?] (NEW) m
Incoming device classification (NET_CLS_IND) [N/y/?] (NEW) y
Rate estimator (NET_ESTIMATOR) [Y/?] (NEW) y
*
* Network testing
*
Packet Generator (USE WITH CAUTION) (NET_PKTGEN) [N/m/y/?] (NEW) m
*
* Amateur Radio support
*
Amateur Radio support (HAMRADIO) [N/y/?] (NEW) y
*
* Packet Radio protocols
*
Amateur Radio AX.25 Level 2 protocol (AX25) [N/m/y/?] (NEW) m
AX.25 DAMA Slave support (AX25_DAMA_SLAVE) [N/y/?] (NEW) y
Amateur Radio NET/ROM protocol (NETROM) [N/m/?] (NEW) m
Amateur Radio X.25 PLP (Rose) (ROSE) [N/m/?] (NEW) m
*
* AX.25 network device drivers
*
Serial port KISS driver (MKISS) [N/m/?] (NEW) m
Serial port 6PACK driver (6PACK) [N/m/?] (NEW) m
BPQ Ethernet driver (BPQETHER) [N/m/?] (NEW) m
Z8530 SCC driver (SCC) [N/m/?] (NEW) m
additional delay for PA0HZP OptoSCC compatible boards (SCC_DELAY) [N/y/?] (NEW) y
support for TRX that feedback the tx signal to rx (SCC_TRXECHO) [N/y/?] (NEW) y
BAYCOM ser12 fullduplex driver for AX.25 (BAYCOM_SER_FDX) [N/m/?] (NEW) m
BAYCOM ser12 halfduplex driver for AX.25 (BAYCOM_SER_HDX) [N/m/?] (NEW) m
YAM driver for AX.25 (YAM) [N/m/?] (NEW) m
*
* IrDA (infrared) subsystem support
*
IrDA (infrared) subsystem support (IRDA) [N/m/y/?] (NEW) m
*
* IrDA protocols
*
IrLAN protocol (IRLAN) [N/m/?] (NEW) m
IrCOMM protocol (IRCOMM) [N/m/?] (NEW) m
Ultra (connectionless) protocol (IRDA_ULTRA) [N/y/?] (NEW) y
*
* IrDA options
*
Cache last LSAP (IRDA_CACHE_LAST_LSAP) [N/y/?] (NEW) y
Fast RRs (low latency) (IRDA_FAST_RR) [N/y/?] (NEW) y
Debug information (IRDA_DEBUG) [N/y/?] (NEW) y
*
* Infrared-port device drivers
*
*
* SIR device drivers
*
IrTTY (uses Linux serial driver) (IRTTY_SIR) [N/m/?] (NEW) m
*
* Dongle support
*
Serial dongle support (DONGLE) [N/y/?] (NEW) y
ESI JetEye PC dongle (ESI_DONGLE) [N/m/?] (NEW) m
ACTiSYS IR-220L and IR220L+ dongle (ACTISYS_DONGLE) [N/m/?] (NEW) m
Tekram IrMate 210B dongle (TEKRAM_DONGLE) [N/m/?] (NEW) m
TOIM3232 IrDa dongle (TOIM3232_DONGLE) [N/m/?] (NEW) m
Parallax LiteLink dongle (LITELINK_DONGLE) [N/m/?] (NEW) m
Mobile Action MA600 dongle (MA600_DONGLE) [N/m/?] (NEW) m
Greenwich GIrBIL dongle (GIRBIL_DONGLE) [N/m/?] (NEW) m
Microchip MCP2120 (MCP2120_DONGLE) [N/m/?] (NEW) m
Old Belkin dongle (OLD_BELKIN_DONGLE) [N/m/?] (NEW) m
ACTiSYS IR-200L dongle (ACT200L_DONGLE) [N/m/?] (NEW) m
*
* Old SIR device drivers
*
*
* Old Serial dongle support
*
*
* FIR device drivers
*
NSC PC87108/PC87338 (NSC_FIR) [N/m/?] (NEW) m
Winbond W83977AF (IR) (WINBOND_FIR) [N/m/?] (NEW) m
Toshiba Type-O IR Port (TOSHIBA_FIR) [N/m/?] (NEW) m
SMSC IrCC (EXPERIMENTAL) (SMC_IRCC_FIR) [N/m/?] (NEW) m
ALi M5123 FIR (EXPERIMENTAL) (ALI_FIR) [N/m/?] (NEW) m
VLSI 82C147 SIR/MIR/FIR (EXPERIMENTAL) (VLSI_FIR) [N/m/?] (NEW) m
VIA VT8231/VT1211 SIR/MIR/FIR (VIA_FIR) [N/m/?] (NEW) m
*
* Bluetooth subsystem support
*
Bluetooth subsystem support (BT) [N/m/y/?] (NEW) m
L2CAP protocol support (BT_L2CAP) [N/m/?] (NEW) m
SCO links support (BT_SCO) [N/m/?] (NEW) m
RFCOMM protocol support (BT_RFCOMM) [N/m/?] (NEW) m
RFCOMM TTY support (BT_RFCOMM_TTY) [N/y/?] (NEW) y
BNEP protocol support (BT_BNEP) [N/m/?] (NEW) m
Multicast filter support (BT_BNEP_MC_FILTER) [N/y/?] (NEW) y
Protocol filter support (BT_BNEP_PROTO_FILTER) [N/y/?] (NEW) y
HIDP protocol support (BT_HIDP) [N/m/?] (NEW) m
*
* Bluetooth device drivers
*
HCI UART driver (BT_HCIUART) [N/m/?] (NEW) m
UART (H4) protocol support (BT_HCIUART_H4) [N/y/?] (NEW) y
BCSP protocol support (BT_HCIUART_BCSP) [N/y/?] (NEW) y
HCI DTL1 (PC Card) driver (BT_HCIDTL1) [N/m/?] (NEW) m
HCI BT3C (PC Card) driver (BT_HCIBT3C) [N/m/?] (NEW) m
HCI BlueCard (PC Card) driver (BT_HCIBLUECARD) [N/m/?] (NEW) m
HCI UART (PC Card) device driver (BT_HCIBTUART) [N/m/?] (NEW) m
HCI VHCI (Virtual HCI device) driver (BT_HCIVHCI) [N/m/?] (NEW) m
Generic IEEE 802.11 Networking Stack (IEEE80211) [N/m/y/?] (NEW) m
Enable full debugging output (IEEE80211_DEBUG) [N/y/?] (NEW) y
IEEE 802.11 WEP encryption (802.1x) (IEEE80211_CRYPT_WEP) [N/m/?] (NEW) m
IEEE 802.11i CCMP support (IEEE80211_CRYPT_CCMP) [N/m/?] (NEW) m
Software MAC add-on to the IEEE 802.11 networking stack (IEEE80211_SOFTMAC) [N/m/?] (NEW) m
Enable full debugging output (IEEE80211_SOFTMAC_DEBUG) [N/y] (NEW) y
*
* Device Drivers
*
*
* Generic Driver Options
*
Select only drivers that don't need compile-time external firmware (STANDALONE) [Y/n/?] (NEW) y
Prevent firmware from being built (PREVENT_FIRMWARE_BUILD) [Y/n/?] (NEW) y
Userspace firmware loading support (FW_LOADER) [M/y/?] (NEW) m
*
* Connector - unified userspace <-> kernelspace linker
*
Connector - unified userspace <-> kernelspace linker (CONNECTOR) [N/m/y/?] (NEW) m
*
* Memory Technology Devices (MTD)
*
Memory Technology Device (MTD) support (MTD) [N/m/y/?] (NEW) m
Debugging (MTD_DEBUG) [N/y/?] (NEW) y
Debugging verbosity (0 = quiet, 3 = noisy) (MTD_DEBUG_VERBOSE) [0] (NEW) 0
MTD concatenating support (MTD_CONCAT) [N/m/?] (NEW) m
MTD partitioning support (MTD_PARTITIONS) [N/y/?] (NEW) y
RedBoot partition table parsing (MTD_REDBOOT_PARTS) [N/m/y/?] (NEW) m
Location of RedBoot partition table (MTD_REDBOOT_DIRECTORY_BLOCK) [-1] (NEW) -1
Include unallocated flash regions (MTD_REDBOOT_PARTS_UNALLOCATED) [N/y/?] (NEW) y
Force read-only for RedBoot system images (MTD_REDBOOT_PARTS_READONLY) [N/y/?] (NEW) y
Command line partition table parsing (MTD_CMDLINE_PARTS) [N/y/?] (NEW) y
*
* User Modules And Translation Layers
*
Direct char device access to MTD devices (MTD_CHAR) [N/m/?] (NEW) m
Caching block device access to MTD devices (MTD_BLOCK) [N/m/?] (NEW) m
Readonly block device access to MTD devices (MTD_BLOCK_RO) [N/m/?] (NEW) m
FTL (Flash Translation Layer) support (FTL) [N/m/?] (NEW) m
NFTL (NAND Flash Translation Layer) support (NFTL) [N/m/?] (NEW) m
Write support for NFTL (NFTL_RW) [N/y/?] (NEW) y
INFTL (Inverse NAND Flash Translation Layer) support (INFTL) [N/m/?] (NEW) m
Resident Flash Disk (Flash Translation Layer) support (RFD_FTL) [N/m/?] (NEW) m
*
* RAM/ROM/Flash chip drivers
*
Detect flash chips by Common Flash Interface (CFI) probe (MTD_CFI) [N/m/?] (NEW) m
Detect non-CFI AMD/JEDEC-compatible flash chips (MTD_JEDECPROBE) [N/m/?] (NEW) m
Flash chip driver advanced configuration options (MTD_CFI_ADV_OPTIONS) [N/y/?] (NEW) y
Flash cmd/query data swapping
> 1. NO (MTD_CFI_NOSWAP) (NEW)
2. BIG_ENDIAN_BYTE (MTD_CFI_BE_BYTE_SWAP) (NEW)
3. LITTLE_ENDIAN_BYTE (MTD_CFI_LE_BYTE_SWAP) (NEW)
choice[1-3]: 1
Specific CFI Flash geometry selection (MTD_CFI_GEOMETRY) [N/y/?] (NEW) y
Support 8-bit buswidth (MTD_MAP_BANK_WIDTH_1) [Y/n/?] (NEW) y
Support 16-bit buswidth (MTD_MAP_BANK_WIDTH_2) [Y/n/?] (NEW) y
Support 32-bit buswidth (MTD_MAP_BANK_WIDTH_4) [Y/n/?] (NEW) y
Support 64-bit buswidth (MTD_MAP_BANK_WIDTH_8) [N/y/?] (NEW) y
Support 128-bit buswidth (MTD_MAP_BANK_WIDTH_16) [N/y/?] (NEW) y
Support 256-bit buswidth (MTD_MAP_BANK_WIDTH_32) [N/y/?] (NEW) y
Support 1-chip flash interleave (MTD_CFI_I1) [Y/n/?] (NEW) y
Support 2-chip flash interleave (MTD_CFI_I2) [Y/n/?] (NEW) y
Support 4-chip flash interleave (MTD_CFI_I4) [N/y/?] (NEW) y
Support 8-chip flash interleave (MTD_CFI_I8) [N/y/?] (NEW) y
Protection Registers aka one-time programmable (OTP) bits (MTD_OTP) [N/y/?] (NEW) y
Support for Intel/Sharp flash chips (MTD_CFI_INTELEXT) [N/m/?] (NEW) m
Support for AMD/Fujitsu flash chips (MTD_CFI_AMDSTD) [N/m/?] (NEW) m
Support for ST (Advanced Architecture) flash chips (MTD_CFI_STAA) [N/m/?] (NEW) m
Support for RAM chips in bus mapping (MTD_RAM) [N/m/?] (NEW) m
Support for ROM chips in bus mapping (MTD_ROM) [N/m/?] (NEW) m
Support for absent chips in bus mapping (MTD_ABSENT) [N/m/?] (NEW) m
Older (theoretically obsoleted now) drivers for non-CFI chips (MTD_OBSOLETE_CHIPS) [N/y/?] (NEW) y
pre-CFI Sharp chip support (MTD_SHARP) [N/m/?] (NEW) m
*
* Mapping drivers for chip access
*
Support non-linear mappings of flash chips (MTD_COMPLEX_MAPPINGS) [N/y/?] (NEW) y
CFI Flash device in physical memory map (MTD_PHYSMAP) [N/m/?] (NEW) m
Physical start address of flash mapping (MTD_PHYSMAP_START) [0x8000000] (NEW) 0x8000000
Physical length of flash mapping (MTD_PHYSMAP_LEN) [0] (NEW) 0
Bank width in octets (MTD_PHYSMAP_BANKWIDTH) [2] (NEW) 2
CFI Flash device mapped on Photron PNC-2000 (MTD_PNC2000) [N/m/?] (NEW) m
CFI Flash device mapped on AMD SC520 CDP (MTD_SC520CDP) [N/m/?] (NEW) m
CFI Flash device mapped on AMD NetSc520 (MTD_NETSC520) [N/m/?] (NEW) m
JEDEC Flash device mapped on Technologic Systems TS-5500 (MTD_TS5500) [N/m/y/?] (NEW) m
CFI Flash device mapped on Arcom SBC-GXx boards (MTD_SBC_GXX) [N/m/?] (NEW) m
Flash device mapped with DOCCS on NatSemi SCx200 (MTD_SCx200_DOCFLASH) [N/m/?] (NEW) m
BIOS flash chip on AMD76x southbridge (MTD_AMD76XROM) [N/m/?] (NEW) m
BIOS flash chip on Intel Controller Hub 2/3/4/5 (MTD_ICHXROM) [N/m/?] (NEW) m
BIOS flash chip on Intel SCB2 boards (MTD_SCB2_FLASH) [N/m/?] (NEW) m
CFI flash device on SnapGear/SecureEdge (MTD_NETtel) [N/m/?] (NEW) m
CFI Flash device mapped on DIL/Net PC (MTD_DILNETPC) [N/m/?] (NEW) m
Size of DIL/Net PC flash boot partition (MTD_DILNETPC_BOOTSIZE) [0x80000] (NEW) 0x80000
BIOS flash chip on Intel L440GX boards (MTD_L440GX) [N/m/?] (NEW) m
PCI MTD driver (MTD_PCI) [N/m/?] (NEW) m
Map driver for platform device RAM (mtd-ram) (MTD_PLATRAM) [N/m/?] (NEW) m
*
* Self-contained MTD device drivers
*
Ramix PMC551 PCI Mezzanine RAM card support (MTD_PMC551) [N/m/?] (NEW) m
PMC551 256M DRAM Bugfix (MTD_PMC551_BUGFIX) [N/y/?] (NEW) y
PMC551 Debugging (MTD_PMC551_DEBUG) [N/y/?] (NEW) y
Uncached system RAM (MTD_SLRAM) [N/m/?] (NEW) m
Physical system RAM (MTD_PHRAM) [N/m/?] (NEW) m
Test driver using RAM (MTD_MTDRAM) [N/m/?] (NEW) m
MTDRAM device size in KiB (MTDRAM_TOTAL_SIZE) [4096] (NEW) 4096
MTDRAM erase block size in KiB (MTDRAM_ERASE_SIZE) [128] (NEW) 128
MTD using block device (MTD_BLOCK2MTD) [N/m/?] (NEW) m
*
* Disk-On-Chip Device Drivers
*
M-Systems Disk-On-Chip 2000 and Millennium (DEPRECATED) (MTD_DOC2000) [N/m/?] (NEW) m
M-Systems Disk-On-Chip Millennium-only alternative driver (DEPRECATED) (MTD_DOC2001) [N/m/?] (NEW) m
M-Systems Disk-On-Chip Millennium Plus (MTD_DOC2001PLUS) [N/m/?] (NEW) m
Advanced detection options for DiskOnChip (MTD_DOCPROBE_ADVANCED) [N/y/?] (NEW) y
Physical address of DiskOnChip (MTD_DOCPROBE_ADDRESS) [0x0000] (NEW) 0x0000
Probe high addresses (MTD_DOCPROBE_HIGH) [N/y/?] (NEW) y
Probe for 0x55 0xAA BIOS Extension Signature (MTD_DOCPROBE_55AA) [N/y/?] (NEW) y
*
* NAND Flash Device Drivers
*
NAND Device Support (MTD_NAND) [N/m/?] (NEW) m
Verify NAND page writes (MTD_NAND_VERIFY_WRITE) [N/y/?] (NEW) y
NAND ECC Smart Media byte order (MTD_NAND_ECC_SMC) [N/y/?] (NEW) y
DiskOnChip 2000, Millennium and Millennium Plus (NAND reimplementation) (EXPERIMENTAL) (MTD_NAND_DISKONCHIP) [N/m/?] (NEW) m
Advanced detection options for DiskOnChip (MTD_NAND_DISKONCHIP_PROBE_ADVANCED) [N/y/?] (NEW) y
Physical address of DiskOnChip (MTD_NAND_DISKONCHIP_PROBE_ADDRESS) [0] (NEW) 0
Probe high addresses (MTD_NAND_DISKONCHIP_PROBE_HIGH) [N/y/?] (NEW) y
Allow BBT writes on DiskOnChip Millennium and 2000TSOP (MTD_NAND_DISKONCHIP_BBTWRITE) [N/y/?] (NEW) y
NAND support for CS5535/CS5536 (AMD Geode companion chip) (MTD_NAND_CS553X) [N/m/?] (NEW) m
Support for NAND Flash Simulator (MTD_NAND_NANDSIM) [N/m/?] (NEW) m
*
* OneNAND Flash Device Drivers
*
OneNAND Device Support (MTD_ONENAND) [N/m/?] (NEW) m
Verify OneNAND page writes (MTD_ONENAND_VERIFY_WRITE) [N/y/?] (NEW) y
OneNAND OTP Support (MTD_ONENAND_OTP) [N/y/?] (NEW) y
*
* Parallel port support
*
Parallel port support (PARPORT) [N/m/y/?] (NEW) m
PC-style hardware (PARPORT_PC) [N/m/?] (NEW) m
Use FIFO/DMA if available (EXPERIMENTAL) (PARPORT_PC_FIFO) [N/y/?] (NEW) y
SuperIO chipset support (EXPERIMENTAL) (PARPORT_PC_SUPERIO) [N/y/?] (NEW) y
Support for PCMCIA management for PC-style ports (PARPORT_PC_PCMCIA) [N/m/?] (NEW) m
AX88796 Parallel Port (PARPORT_AX88796) [N/m/?] (NEW) m
IEEE 1284 transfer modes (PARPORT_1284) [N/y/?] (NEW) y
*
* Plug and Play support
*
Plug and Play support (PNP) [N/y/?] (NEW) y
PnP Debug Messages (PNP_DEBUG) [N/y/?] (NEW) y
*
* Protocols
*
ISA Plug and Play support (ISAPNP) [N/y/?] (NEW) y
Plug and Play BIOS support (EXPERIMENTAL) (PNPBIOS) [N/y/?] (NEW) y
Plug and Play BIOS /proc interface (PNPBIOS_PROC_FS) [N/y/?] (NEW) y
Plug and Play ACPI support (EXPERIMENTAL) (PNPACPI) [Y/n/?] (NEW) y
*
* Block devices
*
Normal floppy disk support (BLK_DEV_FD) [N/m/y/?] (NEW) m
XT hard disk support (BLK_DEV_XD) [N/m/y/?] (NEW) m
Parallel port IDE device support (PARIDE) [N/m/?] (NEW) m
*
* Parallel IDE high-level drivers
*
Parallel port IDE disks (PARIDE_PD) [N/m/?] (NEW) m
Parallel port ATAPI CD-ROMs (PARIDE_PCD) [N/m/?] (NEW) m
Parallel port ATAPI disks (PARIDE_PF) [N/m/?] (NEW) m
Parallel port ATAPI tapes (PARIDE_PT) [N/m/?] (NEW) m
Parallel port generic ATAPI devices (PARIDE_PG) [N/m/?] (NEW) m
*
* Parallel IDE protocol modules
*
ATEN EH-100 protocol (PARIDE_ATEN) [N/m/?] (NEW) m
MicroSolutions backpack (Series 5) protocol (PARIDE_BPCK) [N/m/?] (NEW) m
MicroSolutions backpack (Series 6) protocol (PARIDE_BPCK6) [N/m/?] (NEW) m
DataStor Commuter protocol (PARIDE_COMM) [N/m/?] (NEW) m
DataStor EP-2000 protocol (PARIDE_DSTR) [N/m/?] (NEW) m
FIT TD-2000 protocol (PARIDE_FIT2) [N/m/?] (NEW) m
FIT TD-3000 protocol (PARIDE_FIT3) [N/m/?] (NEW) m
Shuttle EPAT/EPEZ protocol (PARIDE_EPAT) [N/m/?] (NEW) m
Support c7/c8 chips (EXPERIMENTAL) (PARIDE_EPATC8) [N/y/?] (NEW) y
Shuttle EPIA protocol (PARIDE_EPIA) [N/m/?] (NEW) m
Freecom IQ ASIC-2 protocol (PARIDE_FRIQ) [N/m/?] (NEW) m
FreeCom power protocol (PARIDE_FRPW) [N/m/?] (NEW) m
KingByte KBIC-951A/971A protocols (PARIDE_KBIC) [N/m/?] (NEW) m
KT PHd protocol (PARIDE_KTTI) [N/m/?] (NEW) m
OnSpec 90c20 protocol (PARIDE_ON20) [N/m/?] (NEW) m
OnSpec 90c26 protocol (PARIDE_ON26) [N/m/?] (NEW) m
Compaq SMART2 support (BLK_CPQ_DA) [N/m/y/?] (NEW) m
Compaq Smart Array 5xxx support (BLK_CPQ_CISS_DA) [N/m/y/?] (NEW) m
Mylex DAC960/DAC1100 PCI RAID Controller support (BLK_DEV_DAC960) [N/m/y/?] (NEW) m
Micro Memory MM5415 Battery Backed RAM support (EXPERIMENTAL) (BLK_DEV_UMEM) [N/m/y/?] (NEW) m
Loopback device support (BLK_DEV_LOOP) [N/m/y/?] (NEW) m
Cryptoloop Support (BLK_DEV_CRYPTOLOOP) [N/m/?] (NEW) m
Network block device support (BLK_DEV_NBD) [N/m/y/?] (NEW) m
Promise SATA SX8 support (BLK_DEV_SX8) [N/m/y/?] (NEW) m
RAM disk support (BLK_DEV_RAM) [N/m/y/?] (NEW) m
Default number of RAM disks (BLK_DEV_RAM_COUNT) [16] (NEW) 16
Default RAM disk size (kbytes) (BLK_DEV_RAM_SIZE) [4096] (NEW) 4096
Default RAM disk block size (bytes) (BLK_DEV_RAM_BLOCKSIZE) [1024] (NEW) 1024
Initial RAM filesystem and RAM disk (initramfs/initrd) support (BLK_DEV_INITRD) [N/y/?] (NEW) y
Packet writing on CD/DVD media (CDROM_PKTCDVD) [N/m/y/?] (NEW) m
Free buffers for data gathering (CDROM_PKTCDVD_BUFFERS) [8] (NEW) 8
Enable write caching (EXPERIMENTAL) (CDROM_PKTCDVD_WCACHE) [N/y/?] (NEW) y
ATA over Ethernet support (ATA_OVER_ETH) [N/m/y/?] (NEW) m
*
* ATA/ATAPI/MFM/RLL support
*
ATA/ATAPI/MFM/RLL support (IDE) [N/m/y/?] (NEW) m
Enhanced IDE/MFM/RLL disk/cdrom/tape/floppy support (BLK_DEV_IDE) [N/m/?] (NEW) m
*
* Please see Documentation/ide.txt for help/info on IDE drives
*
Support for SATA (deprecated; conflicts with libata SATA driver) (BLK_DEV_IDE_SATA) [N/y/?] (NEW) y
Use old disk-only driver on primary interface (BLK_DEV_HD_IDE) [N/y/?] (NEW) y
Include IDE/ATA-2 DISK support (BLK_DEV_IDEDISK) [N/m/?] (NEW) m
Use multi-mode by default (IDEDISK_MULTI_MODE) [N/y/?] (NEW) y
PCMCIA IDE support (BLK_DEV_IDECS) [N/m/?] (NEW) m
Include IDE/ATAPI CDROM support (BLK_DEV_IDECD) [N/m/?] (NEW) m
Include IDE/ATAPI TAPE support (EXPERIMENTAL) (BLK_DEV_IDETAPE) [N/m/?] (NEW) m
Include IDE/ATAPI FLOPPY support (BLK_DEV_IDEFLOPPY) [N/m/?] (NEW) m
IDE Taskfile Access (IDE_TASK_IOCTL) [N/y/?] (NEW) y
*
* IDE chipset support/bugfixes
*
generic/default IDE chipset support (IDE_GENERIC) [M/n/?] (NEW) m
CMD640 chipset bugfix/support (BLK_DEV_CMD640) [N/y/?] (NEW) y
CMD640 enhanced support (BLK_DEV_CMD640_ENHANCED) [N/y/?] (NEW) y
PNP EIDE support (BLK_DEV_IDEPNP) [N/y/?] (NEW) y
PCI IDE chipset support (BLK_DEV_IDEPCI) [N/y/?] (NEW) y
Sharing PCI IDE interrupts support (IDEPCI_SHARE_IRQ) [N/y/?] (NEW) y
Boot off-board chipsets first support (BLK_DEV_OFFBOARD) [N/y/?] (NEW) y
Generic PCI IDE Chipset Support (BLK_DEV_GENERIC) [N/m] (NEW) m
OPTi 82C621 chipset enhanced support (EXPERIMENTAL) (BLK_DEV_OPTI621) [N/m/?] (NEW) m
RZ1000 chipset bugfix/support (BLK_DEV_RZ1000) [N/m/?] (NEW) m
Generic PCI bus-master DMA support (BLK_DEV_IDEDMA_PCI) [N/y/?] (NEW) y
Force enable legacy 2.0.X HOSTS to use DMA (BLK_DEV_IDEDMA_FORCED) [N/y/?] (NEW) y
Use PCI DMA by default when available (IDEDMA_PCI_AUTO) [N/y/?] (NEW) y
Enable DMA only for disks (IDEDMA_ONLYDISK) [N/y/?] (NEW) y
AEC62XX chipset support (BLK_DEV_AEC62XX) [N/m/?] (NEW) m
ALI M15x3 chipset support (BLK_DEV_ALI15X3) [N/m/?] (NEW) m
ALI M15x3 WDC support (DANGEROUS) (WDC_ALI15X3) [N/y/?] (NEW) y
AMD and nVidia IDE support (BLK_DEV_AMD74XX) [N/m/?] (NEW) m
ATI IXP chipset IDE support (BLK_DEV_ATIIXP) [N/m/?] (NEW) m
CMD64{3|6|8|9} chipset support (BLK_DEV_CMD64X) [N/m/?] (NEW) m
Compaq Triflex IDE support (BLK_DEV_TRIFLEX) [N/m/?] (NEW) m
CY82C693 chipset support (BLK_DEV_CY82C693) [N/m/?] (NEW) m
Cyrix CS5510/20 MediaGX chipset support (VERY EXPERIMENTAL) (BLK_DEV_CS5520) [N/m/?] (NEW) m
Cyrix/National Semiconductor CS5530 MediaGX chipset support (BLK_DEV_CS5530) [N/m/?] (NEW) m
AMD CS5535 chipset support (BLK_DEV_CS5535) [N/m/?] (NEW) m
HPT34X chipset support (BLK_DEV_HPT34X) [N/m/?] (NEW) m
HPT34X AUTODMA support (EXPERIMENTAL) (HPT34X_AUTODMA) [N/y/?] (NEW) y
HPT36X/37X chipset support (BLK_DEV_HPT366) [N/m/?] (NEW) m
National SCx200 chipset support (BLK_DEV_SC1200) [N/m/?] (NEW) m
Intel PIIXn chipsets support (BLK_DEV_PIIX) [N/m/?] (NEW) m
IT821X IDE support (BLK_DEV_IT821X) [N/m/?] (NEW) m
NS87415 chipset support (BLK_DEV_NS87415) [N/m/?] (NEW) m
PROMISE PDC202{46|62|65|67} support (BLK_DEV_PDC202XX_OLD) [N/m/?] (NEW) m
Special UDMA Feature (PDC202XX_BURST) [N/y/?] (NEW) y
PROMISE PDC202{68|69|70|71|75|76|77} support (BLK_DEV_PDC202XX_NEW) [N/m] (NEW) m
ServerWorks OSB4/CSB5/CSB6 chipsets support (BLK_DEV_SVWKS) [N/m/?] (NEW) m
Silicon Image chipset support (BLK_DEV_SIIMAGE) [N/m/?] (NEW) m
SiS5513 chipset support (BLK_DEV_SIS5513) [N/m/?] (NEW) m
SLC90E66 chipset support (BLK_DEV_SLC90E66) [N/m/?] (NEW) m
Tekram TRM290 chipset support (BLK_DEV_TRM290) [N/m/?] (NEW) m
VIA82CXXX chipset support (BLK_DEV_VIA82CXXX) [N/m/?] (NEW) m
Other IDE chipset support (IDE_CHIPSETS) [N/y/?] (NEW) y
*
* Note: most of these also require special kernel boot parameters
*
Generic 4 drives/port support (BLK_DEV_4DRIVES) [N/y/?] (NEW) y
ALI M14xx support (BLK_DEV_ALI14XX) [N/m/?] (NEW) m
DTC-2278 support (BLK_DEV_DTC2278) [N/m/?] (NEW) m
Holtek HT6560B support (BLK_DEV_HT6560B) [N/m/?] (NEW) m
QDI QD65xx support (BLK_DEV_QD65XX) [N/m/?] (NEW) m
UMC-8672 support (BLK_DEV_UMC8672) [N/m/?] (NEW) m
IGNORE word93 Validation BITS (IDEDMA_IVB) [N/y/?] (NEW) y
*
* SCSI device support
*
RAID Transport Class (RAID_ATTRS) [N/m/y/?] (NEW) m
SCSI device support (SCSI) [N/m/y/?] (NEW) m
legacy /proc/scsi/ support (SCSI_PROC_FS) [Y/n/?] (NEW) y
*
* SCSI support type (disk, tape, CD-ROM)
*
SCSI disk support (BLK_DEV_SD) [N/m/?] (NEW) m
SCSI tape support (CHR_DEV_ST) [N/m/?] (NEW) m
SCSI OnStream SC-x0 tape support (CHR_DEV_OSST) [N/m/?] (NEW) m