blob: a51d48ee3e8c716aa46fa2d8c9c4effd8f525e2c (
plain)
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
|
config ADK_LINUX_INITRAMFS_BUILTIN
select ADK_KERNEL_BLK_DEV_INITRD
select ADK_KERNEL_INITRAMFS_COMPRESSION_NONE
boolean
default n
config ADK_KERNEL_MISC_DEVICES
boolean
default n
config ADK_KERNEL_CS5535_MFGPT
boolean
default n
config ADK_KERNEL_CS5535_CLOCK_EVENT_SRC
boolean
default n
config ADK_KERNEL_RFKILL
boolean
default n
config ADK_KERNEL_WATCHDOG
boolean
default n
config ADK_KERNEL_I2C_CHARDEV
boolean
default n
config ADK_KERNEL_RTC_CLASS
boolean
default n
config ADK_KERNEL_RTC_HCTOSYS
boolean
default n
config ADK_KERNEL_RTC_INTF_DEV
boolean
default n
menu "Miscellaneous devices support"
config ADK_KERNEL_GEODE_WDT
prompt "geode-wdt......................... Geode Hardware Watchdog"
tristate
select ADK_KERNEL_WATCHDOG
select ADK_KERNEL_MISC_DEVICES
select ADK_KERNEL_CS5535_MFGPT
select ADK_KERNEL_CS5535_CLOCK_EVENT_SRC
default y if ADK_HARDWARE_ALIX2D2
default y if ADK_HARDWARE_ALIX2D13
default n
help
Geode watchdog.
config ADK_KERNEL_RTC_DRV_CMOS
prompt "rtc-cmos.......................... RTC support for PC CMOS"
tristate
select ADK_KERNEL_RTC_CLASS
select ADK_KERNEL_RTC_HCTOSYS
select ADK_KERNEL_RTC_INTF_DEV
default y if ADK_TARGET_WITH_RTC
default n
help
RTC support for ALIX boards.
config ADK_KPACKAGE_KMOD_I2C
prompt "kmod-i2c.......................... I2C support"
tristate
select ADK_KERNEL_I2C_CHARDEV
default n
help
I2C support
config ADK_KPACKAGE_KMOD_SCx200_ACB
prompt "kmod-i2c-geode.................... I2C driver for Geode"
tristate
depends on ADK_KPACKAGE_KMOD_I2C
depends on ADK_LINUX_X86_ALIX
default n
help
I2C driver for Geode boards.
config ADK_KPACKAGE_KMOD_SOFT_WATCHDOG
prompt "kmod-softdog...................... Software watchdog"
tristate
default n
select ADK_KERNEL_WATCHDOG
help
A software monitoring watchdog. This will fail to reboot your system
from some situations that the hardware watchdog will recover
from. Equally it's a lot cheaper to install.
config ADK_KPACKAGE_KMOD_PARPORT
prompt "kmod-parport...................... generic parallel port support"
tristate
default n
depends on ADK_TARGET_WITH_PP
help
Kernel module for generic parallel port support
config ADK_KPACKAGE_KMOD_PLIP
prompt "kmod-plip....................... PLIP (internet over parallel port)"
tristate
default n
depends on ADK_KPACKAGE_KMOD_PARPORT
help
PLIP: IPv4 over parallel port, using a Turbo Laplink
(crossed null-printer) cable. Drivers exist for DOS
(from Crynwr), Linux 2.x (protocol changed and is no
longer compatible with Linux 1.x), FreeBSD and MirBSD.
This will enlarge your kernel by about 8 KiB.
config ADK_KPACKAGE_KMOD_PRINTER
prompt "kmod-lp......................... line printer support"
tristate
default n
depends on ADK_KPACKAGE_KMOD_PARPORT
help
Kernel module for line printer support
config ADK_KPACKAGE_KMOD_PPDEV
prompt "kmod-ppdev...................... userland parallel port driver"
tristate
default n
depends on ADK_KPACKAGE_KMOD_PARPORT
help
Kernel module for userland parallel port access
config ADK_KPACKAGE_KMOD_FW_LOADER
prompt "kmod-fw-loader.................... userspace firmware loading support"
tristate
default n
depends on !ADK_LINUX_QEMU
help
This may be necessary when using drivers which require
loading of external firmware files.
config ADK_KPACKAGE_KMOD_EEPROM_93CX6
prompt "kmod-eeprom-93cx6................. 93cx6 eeprom support"
tristate
depends on ADK_KPACKAGE_KMOD_MAC80211
depends on !ADK_LINUX_CRIS_FOXBOARD && !ADK_HARDWARE_LEMOTE_YEELONG
default n
help
endmenu
|