Added GNU GPL license header to ps2_dev.h.
[ZeXOS.git] / kernel / drivers / Kconfig
blobb2cceb45a723ab193b1096ede67992739e2d77ef
1 # For a description of the syntax of this configuration file,
2 # see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
4 menu "Device drivers"
6 config DRV_RS232
7         bool "RS232 driver"
8         default y
9         help
10           Enable the serial/com connector. It is usefully for communication between two computers, device or serial mouse.
12 config DRV_ATA
13         bool "ATA disk driver"
14         default y
15         help
16           Enable the ATA (IDE) bus for hard disk or optical devices like cdrom. Use LBA28 technology
18 config DRV_PCI
19         bool "PCI bus"
20         default y
21         help
22           Enable the PCI bus, what is needed for working pci cards in computer.
24 config DRV_USB
25         bool "USB bus (EXPERIMENTAL)"
26         default n
27         help
28           Enable the Universal Serial Bus, what is usefully for e.g. mass storage, mouse, keyboard.
30 config DRV_PCNET32
31         bool "PCnet 32"
32         depends on DRV_PCI
33         default y
34         help
35           Enable the ethernet card.
37 config DRV_RTL8029
38         bool "RTL 8029 (EXPERIMENTAL)"
39         depends on DRV_PCI
40         default n
41         help
42           Enable the Realtek 8029 / NE2000 ethernet card.
44 config DRV_RTL8139
45         bool "RTL 8139"
46         depends on DRV_PCI
47         default y
48         help
49           Enable the Realtek 8139/8129/8100 compatibile ethernet card.
51 config DRV_RTL8169
52         bool "RTL 8169"
53         depends on DRV_PCI
54         default y
55         help
56           Enable the Realtek 8169/8110 compatibile ethernet card.
58 config DRV_VGA
59         bool "VGA graphics driver"
60         default n
61         help
62           Enable the VGA graphics driver (max resolution is 640x480 in 16 colors)
64 config DRV_VESA
65         bool "VESA graphics driver"
66         default y
67         help
68           Enable the VESA graphics driver
70 config DRV_VGA_RES
71         string "Resolution"
72         depends on DRV_VGA
73         default "320x200"
74         help
75           Resolution in pixels on screen
77 config DRV_FAT12
78         bool "FAT12 filesystem driver"
79         default y
80         help
81           Enable the FAT12 filesystem driver for floppy disk.
83 config DRV_FAT16
84         bool "FAT16 filesystem driver (EXPERIMENTAL)"
85         default n
86         help
87           Enable the FAT16 filesystem driver for hard disk.
89 config DRV_EXT2
90         bool "EXT2 filesystem driver"
91         default y
92         help
93           Enable the EXT2 filesystem driver for hard disk.
95 config DRV_ZEXFS
96         bool "ZEXFS filesystem driver (EXPERIMENTAL)"
97         default n
98         help
99           Enable the ZEXFS filesystem driver for hard disk.
101 config DRV_ZNFS
102         bool "ZNFS filesystem driver (EXPERIMENTAL)"
103         default n
104         help
105           Enable the ZNFS filesystem driver for network.
107 config DRV_ISOFS
108         bool "ISO 9660 filesystem driver"
109         default n
110         help
111           Enable the ISO 9660 filesystem driver for hard disk and cdrom.
113 config DRV_SPEAKER
114         bool "PC-Speaker driver"
115         default y
116         help
117           Enable the PC-Speaker - beeper driver.
119 config DRV_FLOPPY
120         bool "Floppy driver"
121         default y
122         help
123           Enable the floppy disk driver.
125 config DRV_KEYBOARD
126         bool "Keyboard driver"
127         default y
128         help
129           Enable the keyboard driver.
131 endmenu